- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for CJALR (0.03 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) -
src/cmd/asm/internal/asm/testdata/riscv64.s
CSW X11, 20(X10) // 4cc9 CSD X11, 24(X10) // 0ced CFSD F11, 32(X10) // 0cb1 // 26.4: Compressed Control Transfer Instructions CJ 1(PC) // 09a0 CJR X5 // 8282 CJALR X5 // 8292 CBEQZ X10, 1(PC) // 09c1 CBNEZ X10, 1(PC) // 09e1 // 26.5.1: Compressed Integer Constant-Generation Instructions CLI $-32, X5 // 8152 CLI $31, X5 // fd42
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Nov 13 12:17:37 UTC 2025 - 73.7K bytes - Viewed (0)