Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ALD (0.01 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)
  3. src/cmd/internal/obj/riscv/obj.go

    		return REG_SP
    	}
    	return a.Reg
    }
    
    // movToLoad converts a MOV mnemonic into the corresponding load instruction.
    func movToLoad(mnemonic obj.As) obj.As {
    	switch mnemonic {
    	case AMOV:
    		return ALD
    	case AMOVB:
    		return ALB
    	case AMOVH:
    		return ALH
    	case AMOVW:
    		return ALW
    	case AMOVBU:
    		return ALBU
    	case AMOVHU:
    		return ALHU
    	case AMOVWU:
    		return ALWU
    	case AMOVF:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top