Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Less32F (0.43 sec)

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

    			v2.AuxInt = int64ToAuxInt(d - c - 1)
    			v.AddArg2(v0, v2)
    			return true
    		}
    		break
    	}
    	// match: (AndB (Less32U (Const32 [c]) x) (Less32U x (Const32 [d])))
    	// cond: uint32(d) >= uint32(c+1) && uint32(c+1) > uint32(c)
    	// result: (Less32U (Sub32 <x.Type> x (Const32 <x.Type> [c+1])) (Const32 <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: (Less32U zero:(MOVDconst [0]) x)
    	// result: (Neq32 zero x)
    	for {
    		zero := v_0
    		if zero.Op != OpARM64MOVDconst || auxIntToInt64(zero.AuxInt) != 0 {
    			break
    		}
    		x := v_1
    		v.reset(OpNeq32)
    		v.AddArg2(zero, x)
    		return true
    	}
    	// match: (Less32U x (MOVDconst [1]))
    	// result: (Eq32 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

    	}
    }
    func rewriteValueAMD64_OpLess32F(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Less32F x y)
    	// result: (SETGF (UCOMISS y x))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpAMD64SETGF)
    		v0 := b.NewValue0(v.Pos, OpAMD64UCOMISS, types.TypeFlags)
    		v0.AddArg2(y, x)
    		v.AddArg(v0)
    		return true
    	}
    }
    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