Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FlagLT (0.06 sec)

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

    		return true
    	}
    	return false
    }
    func rewriteValuePPC64_OpPPC64CMPUconst(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (CMPUconst [d] (ANDconst z [c]))
    	// cond: uint64(d) > uint64(c)
    	// result: (FlagLT)
    	for {
    		d := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpPPC64ANDconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    		if !(uint64(d) > uint64(c)) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteS390X.go

    	}
    	// match: (CMPWUconst (MOVBZreg _) [c])
    	// cond: 0xff < c
    	// result: (FlagLT)
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpS390XMOVBZreg || !(0xff < c) {
    			break
    		}
    		v.reset(OpS390XFlagLT)
    		return true
    	}
    	// match: (CMPWUconst (MOVHZreg _) [c])
    	// cond: 0xffff < c
    	// result: (FlagLT)
    	for {
    		c := auxIntToInt32(v.AuxInt)
    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