Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CMPLconst (0.08 sec)

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

    	b := v.Block
    	// match: (CMPL x (MOVLconst [c]))
    	// result: (CMPLconst x [c])
    	for {
    		x := v_0
    		if v_1.Op != Op386MOVLconst {
    			break
    		}
    		c := auxIntToInt32(v_1.AuxInt)
    		v.reset(Op386CMPLconst)
    		v.AuxInt = int32ToAuxInt(c)
    		v.AddArg(x)
    		return true
    	}
    	// match: (CMPL (MOVLconst [c]) x)
    	// result: (InvertFlags (CMPLconst x [c]))
    	for {
    		if v_0.Op != Op386MOVLconst {
    			break
    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