Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsRISCV64CSRO (0.04 sec)

  1. src/cmd/asm/internal/arch/riscv64.go

    // requires special handling.
    func IsRISCV64VTypeI(op obj.As) bool {
    	return op == riscv.AVSETVLI || op == riscv.AVSETIVLI
    }
    
    // IsRISCV64CSRO reports whether the op is an instruction that uses
    // CSR symbolic names and whether that instruction expects a register
    // or an immediate source operand.
    func IsRISCV64CSRO(op obj.As) (imm bool, ok bool) {
    	switch op {
    	case riscv.ACSRRCI, riscv.ACSRRSI, riscv.ACSRRWI:
    		imm = true
    		fallthrough
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Fri Sep 12 08:12:45 UTC 2025
    - 2.8K bytes
    - Viewed (0)
Back to top