Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Less32F (0.2 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Less32 x (Const32 <t> [math.MinInt32+1])) => (Eq32 x (Const32 <t> [math.MinInt32]))
    (Less16 x (Const16 <t> [math.MinInt16+1])) => (Eq16 x (Const16 <t> [math.MinInt16]))
    (Less8  x (Const8  <t> [math.MinInt8 +1])) => (Eq8  x (Const8  <t> [math.MinInt8 ]))
    (Less64 (Const64 <t> [math.MaxInt64-1]) x) => (Eq64 x (Const64 <t> [math.MaxInt64]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // and ARM Manual says FCMP instruction sets PSTATE.<N,Z,C,V>
    // of this case to (0, 0, 1, 1).
    (Less32F x y) => (LessThanF (FCMPS x y))
    (Less64F x y) => (LessThanF (FCMPD x y))
    
    // For an unsigned integer x, the following rules are useful when combining branch
    // 0 <  x  =>  x != 0
    // x <= 0  =>  x == 0
    // x <  1  =>  x == 0
    // 1 <= x  =>  x != 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (Less32 x y)
    	// result: (SGT y x)
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpMIPSSGT)
    		v.AddArg2(y, x)
    		return true
    	}
    }
    func rewriteValueMIPS_OpLess32F(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Less32F x y)
    	// result: (FPFlagTrue (CMPGTF y x))
    	for {
    		x := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    		v1.AddArg(x)
    		v.AddArg2(v0, v1)
    		return true
    	}
    }
    func rewriteValueLOONG64_OpLess32F(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Less32F x y)
    	// result: (FPFlagTrue (CMPGTF y x))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpLOONG64FPFlagTrue)
    		v0 := b.NewValue0(v.Pos, OpLOONG64CMPGTF, types.TypeFlags)
    		v0.AddArg2(y, x)
    		v.AddArg(v0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		v1.AddArg(x)
    		v.AddArg2(v0, v1)
    		return true
    	}
    }
    func rewriteValueMIPS64_OpLess32F(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Less32F x y)
    	// result: (FPFlagTrue (CMPGTF y x))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpMIPS64FPFlagTrue)
    		v0 := b.NewValue0(v.Pos, OpMIPS64CMPGTF, types.TypeFlags)
    		v0.AddArg2(y, x)
    		v.AddArg(v0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Leq32U x y)
    	// result: (Not (Less32U y x))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpNot)
    		v0 := b.NewValue0(v.Pos, OpLess32U, typ.Bool)
    		v0.AddArg2(y, x)
    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValueRISCV64_OpLeq64(v *Value) bool {
    	v_1 := v.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteWasm.go

    		v.AddArg2(v0, v1)
    		return true
    	}
    }
    func rewriteValueWasm_OpLess32U(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Less32U x y)
    	// result: (I64LtU (ZeroExt32to64 x) (ZeroExt32to64 y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpWasmI64LtU)
    		v0 := b.NewValue0(v.Pos, OpZeroExt32to64, typ.UInt64)
    		v0.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
Back to top