Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ANDLconst (0.15 sec)

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

    	v_0 := v.Args[0]
    	// match: (ANDLconst [c] (ANDLconst [d] x))
    	// result: (ANDLconst [c & d] x)
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if v_0.Op != Op386ANDLconst {
    			break
    		}
    		d := auxIntToInt32(v_0.AuxInt)
    		x := v_0.Args[0]
    		v.reset(Op386ANDLconst)
    		v.AuxInt = int32ToAuxInt(c & d)
    		v.AddArg(x)
    		return true
    	}
    	// match: (ANDLconst [c] _)
    	// cond: c==0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
Back to top