- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for jumpArm64 (0.48 sec)
-
src/cmd/asm/internal/arch/arm64.go
"JMP": true, "TBNZ": true, "TBZ": true, // ADR isn't really a jump, but it takes a PC or label reference, // which needs to patched like a jump. "ADR": true, "ADRP": true, } func jumpArm64(word string) bool { return arm64Jump[word] } var arm64SpecialOperand map[string]arm64.SpecialOperand // ARM64SpecialOperand returns the internal representation of a special operand.
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Oct 16 00:35:29 UTC 2025 - 6.3K bytes - Viewed (0) -
src/cmd/asm/internal/arch/arch.go
return &Arch{ LinkArch: &arm64.Linkarm64, Instructions: instructions, Register: register, RegisterPrefix: registerPrefix, RegisterNumber: arm64RegisterNumber, IsJump: jumpArm64, } } func archPPC64(linkArch *obj.LinkArch) *Arch { register := make(map[string]int16) // Create maps for easy lookup of instruction names etc.
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Nov 13 12:17:37 UTC 2025 - 21.7K bytes - Viewed (0)