Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 0xC0 (0.03 sec)

  1. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		v0.AddArg2(ptr, mem)
    		return true
    	}
    	// match: (MOVBQSX (ANDLconst [c] x))
    	// cond: c & 0x80 == 0
    	// result: (ANDLconst [c & 0x7f] x)
    	for {
    		if v_0.Op != OpAMD64ANDLconst {
    			break
    		}
    		c := auxIntToInt32(v_0.AuxInt)
    		x := v_0.Args[0]
    		if !(c&0x80 == 0) {
    			break
    		}
    		v.reset(OpAMD64ANDLconst)
    		v.AuxInt = int32ToAuxInt(c & 0x7f)
    		v.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top