- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for IsARM64STLXR (0.04 sec)
-
src/cmd/asm/internal/arch/arm64.go
arm64.AFCMPS, arm64.AFCMPD, arm64.AFCMPES, arm64.AFCMPED: return true } return false } // IsARM64STLXR reports whether the op (as defined by an arm64.A* // constant) is one of the STLXR-like instructions that require special // handling. func IsARM64STLXR(op obj.As) bool { switch op { case arm64.ASTLXRB, arm64.ASTLXRH, arm64.ASTLXRW, arm64.ASTLXR,
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 14 15:13:11 UTC 2025 - 10.3K bytes - Viewed (0) -
src/cmd/asm/internal/asm/asm.go
prog.Reg = p.getRegister(prog, op, &a[1]) prog.To = a[2] case sys.AMD64: prog.From = a[0] prog.AddRestSource(a[1]) prog.To = a[2] case sys.ARM64: switch { case arch.IsARM64STLXR(op): // ARM64 instructions with one input and two outputs. prog.From = a[0] prog.To = a[1] if a[2].Type != obj.TYPE_REG {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 05 17:31:25 UTC 2025 - 26.2K bytes - Viewed (0)