Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ALD (0.02 sec)

  1. src/cmd/internal/obj/riscv/cpu.go

    	APAUSE
    
    	// 5.2: Integer Computational Instructions (RV64I)
    	AADDIW
    	ASLLIW
    	ASRLIW
    	ASRAIW
    	AADDW
    	ASLLW
    	ASRLW
    	ASUBW
    	ASRAW
    
    	// 5.3: Load and Store Instructions (RV64I)
    	ALD
    	ASD
    
    	// 7.1: Multiplication Operations
    	AMUL
    	AMULH
    	AMULHU
    	AMULHSU
    	AMULW
    	ADIV
    	ADIVU
    	AREM
    	AREMU
    	ADIVW
    	ADIVUW
    	AREMW
    	AREMUW
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/inst.go

    	case AJAL:
    		return &inst{0x6f, 0x0, 0x0, 0, 0x0}
    	case AJALR:
    		return &inst{0x67, 0x0, 0x0, 0, 0x0}
    	case ALB:
    		return &inst{0x3, 0x0, 0x0, 0, 0x0}
    	case ALBU:
    		return &inst{0x3, 0x4, 0x0, 0, 0x0}
    	case ALD:
    		return &inst{0x3, 0x3, 0x0, 0, 0x0}
    	case ALH:
    		return &inst{0x3, 0x1, 0x0, 0, 0x0}
    	case ALHU:
    		return &inst{0x3, 0x5, 0x0, 0, 0x0}
    	case ALRD:
    		return &inst{0x2f, 0x3, 0x0, 256, 0x8}
    	case ALRW:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top