Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Less64U$ (0.16 sec)

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

    			v2.AuxInt = int8ToAuxInt(d - c)
    			v.AddArg2(v0, v2)
    			return true
    		}
    		break
    	}
    	// match: (AndB (Less64U (Const64 [c]) x) (Less64U x (Const64 [d])))
    	// cond: uint64(d) >= uint64(c+1) && uint64(c+1) > uint64(c)
    	// result: (Less64U (Sub64 <x.Type> x (Const64 <x.Type> [c+1])) (Const64 <x.Type> [d-c-1]))
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM64.go

    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Less64U zero:(MOVDconst [0]) x)
    	// result: (Neq64 zero x)
    	for {
    		zero := v_0
    		if zero.Op != OpARM64MOVDconst || auxIntToInt64(zero.AuxInt) != 0 {
    			break
    		}
    		x := v_1
    		v.reset(OpNeq64)
    		v.AddArg2(zero, x)
    		return true
    	}
    	// match: (Less64U x (MOVDconst [1]))
    	// result: (Eq64 x (MOVDconst [0]))
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		v0.AddArg2(y, x)
    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValueAMD64_OpLess64U(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Less64U x y)
    	// result: (SETB (CMPQ x y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpAMD64SETB)
    		v0 := b.NewValue0(v.Pos, OpAMD64CMPQ, types.TypeFlags)
    		v0.AddArg2(x, y)
    		v.AddArg(v0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top