Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AANDI (0.06 sec)

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

    const (
    	// Unprivileged ISA (Document Version 20190608-Base-Ratified)
    
    	// 2.4: Integer Computational Instructions
    	AADDI = obj.ABaseRISCV + obj.A_ARCHSPECIFIC + iota
    	ASLTI
    	ASLTIU
    	AANDI
    	AORI
    	AXORI
    	ASLLI
    	ASRLI
    	ASRAI
    	ALUI
    	AAUIPC
    	AADD
    	ASLT
    	ASLTU
    	AAND
    	AOR
    	AXOR
    	ASLL
    	ASRL
    	ASUB
    	ASRA
    
    	// 2.5: Control Transfer Instructions
    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

    		return &inst{0x2f, 0x2, 0x0, 128, 0x4}
    	case AAMOXORD:
    		return &inst{0x2f, 0x3, 0x0, 512, 0x10}
    	case AAMOXORW:
    		return &inst{0x2f, 0x2, 0x0, 512, 0x10}
    	case AAND:
    		return &inst{0x33, 0x7, 0x0, 0, 0x0}
    	case AANDI:
    		return &inst{0x13, 0x7, 0x0, 0, 0x0}
    	case AANDN:
    		return &inst{0x33, 0x7, 0x0, 1024, 0x20}
    	case AAUIPC:
    		return &inst{0x17, 0x0, 0x0, 0, 0x0}
    	case ABCLR:
    		return &inst{0x33, 0x1, 0x0, 1152, 0x24}
    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