Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for InvertFlags (0.18 sec)

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

    			break
    		}
    		c := auxIntToInt32(v_1.AuxInt)
    		v.reset(Op386CMPBconst)
    		v.AuxInt = int8ToAuxInt(int8(c))
    		v.AddArg(x)
    		return true
    	}
    	// match: (CMPB (MOVLconst [c]) x)
    	// result: (InvertFlags (CMPBconst x [int8(c)]))
    	for {
    		if v_0.Op != Op386MOVLconst {
    			break
    		}
    		c := auxIntToInt32(v_0.AuxInt)
    		x := v_1
    		v.reset(Op386InvertFlags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM.go

    		if v_1.Op != OpARMFlagConstant {
    			break
    		}
    		fc := auxIntToFlagConstant(v_1.AuxInt)
    		if !(fc.ult()) {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (CMOVWHSconst x (InvertFlags flags) [c])
    	// result: (CMOVWLSconst x flags [c])
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		x := v_0
    		if v_1.Op != OpARMInvertFlags {
    			break
    		}
    		flags := v_1.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    		return true
    	}
    	// match: (SETBC [0] (InvertFlags bool))
    	// result: (SETBC [1] bool)
    	for {
    		if auxIntToInt32(v.AuxInt) != 0 || v_0.Op != OpPPC64InvertFlags {
    			break
    		}
    		bool := v_0.Args[0]
    		v.reset(OpPPC64SETBC)
    		v.AuxInt = int32ToAuxInt(1)
    		v.AddArg(bool)
    		return true
    	}
    	// match: (SETBC [1] (InvertFlags bool))
    	// result: (SETBC [0] bool)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteS390X.go

    			break
    		}
    		v.reset(OpS390XCMPconst)
    		v.AuxInt = int32ToAuxInt(int32(c))
    		v.AddArg(x)
    		return true
    	}
    	// match: (CMP (MOVDconst [c]) x)
    	// cond: is32Bit(c)
    	// result: (InvertFlags (CMPconst x [int32(c)]))
    	for {
    		if v_0.Op != OpS390XMOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    		x := v_1
    		if !(is32Bit(c)) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
Back to top