- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for IsPPC64CMP (0.04 sec)
-
src/cmd/asm/internal/arch/ppc64.go
return true } return false } // IsPPC64CMP reports whether the op (as defined by an ppc64.A* constant) is // one of the CMP instructions that require special handling. func IsPPC64CMP(op obj.As) bool { switch op {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Nov 21 18:27:17 UTC 2024 - 2.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.I386: prog.From = a[0] prog.AddRestSource(a[1]) prog.To = a[2] case sys.PPC64: if arch.IsPPC64CMP(op) { // CMPW etc.; third argument is a CR register that goes into prog.Reg. prog.From = a[0] prog.Reg = p.getRegister(prog, op, &a[2]) prog.To = a[1] break } prog.From = a[0]
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 05 17:31:25 UTC 2025 - 26.2K bytes - Viewed (0)