Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CMPUconst (0.11 sec)

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

    	v_0 := v.Args[0]
    	// match: (CMPUconst (MOVDconst [x]) [y])
    	// cond: uint64(x)==uint64(y)
    	// result: (FlagEQ)
    	for {
    		y := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpS390XMOVDconst {
    			break
    		}
    		x := auxIntToInt64(v_0.AuxInt)
    		if !(uint64(x) == uint64(y)) {
    			break
    		}
    		v.reset(OpS390XFlagEQ)
    		return true
    	}
    	// match: (CMPUconst (MOVDconst [x]) [y])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritePPC64.go

    	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
    		}
    		v.reset(OpPPC64FlagLT)
    		return true
    	}
    	// match: (CMPUconst (MOVDconst [x]) [y])
    	// cond: x==y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top