- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for CJALR (0.01 sec)
-
src/cmd/asm/internal/asm/testdata/riscv64validation.s
CFSD F11, 256(X10) // ERROR "must be in range [0, 255]" CJR X0 // ERROR "cannot use register X0 in rs1" CJR X10, X11 // ERROR "expected no register in rs2" CJALR X0 // ERROR "cannot use register X0 in rs1" CJALR X10, X11 // ERROR "expected no register in rd" CBEQZ X5, 1(PC) // ERROR "expected integer prime register in rs1" CBNEZ X5, 1(PC) // ERROR "expected integer prime register in rs1"
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Nov 13 12:17:37 UTC 2025 - 42.1K bytes - Viewed (0) -
src/cmd/asm/internal/arch/arch.go
} func jumpRISCV(word string) bool { switch word { case "BEQ", "BEQZ", "BGE", "BGEU", "BGEZ", "BGT", "BGTU", "BGTZ", "BLE", "BLEU", "BLEZ", "BLT", "BLTU", "BLTZ", "BNE", "BNEZ", "CALL", "CBEQZ", "CBNEZ", "CJ", "CJALR", "CJR", "JAL", "JALR", "JMP": return true } return false } func jumpWasm(word string) bool { return word == "JMP" || word == "CALL" || word == "Call" || word == "Br" || word == "BrIf" }
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Nov 13 12:17:37 UTC 2025 - 21.7K bytes - Viewed (0)