Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Leq8$ (0.08 sec)

  1. test/fuse.go

    }
    
    func fLeqLess(a float32, f float64) bool {
    	return a <= 0 && f > Cf2 || a < 0 && f < -Cf2
    }
    
    func fLeqLeq(a int8, f float64) bool {
    	return a <= 0 && f > Cf2 || a <= 0 && f < -Cf2 // ERROR "Redirect Leq8 based on Leq8$"
    }
    
    func fLessUEq(a uint8, f float64) bool {
    	return a < 0 && f > Cf2 || a == 0 && f < -Cf2
    }
    
    func fLessUNeq(a uint16, f float64) bool {
    	return a < 0 && f > Cf2 || a != 0 && f < -Cf2
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Leq8  (Const8  [0]) (And8  _ (Const8  [c]))) && c >= 0 => (ConstBool [true])
    (Leq16 (Const16 [0]) (And16 _ (Const16 [c]))) && c >= 0 => (ConstBool [true])
    (Leq32 (Const32 [0]) (And32 _ (Const32 [c]))) && c >= 0 => (ConstBool [true])
    (Leq64 (Const64 [0]) (And64 _ (Const64 [c]))) && c >= 0 => (ConstBool [true])
    
    (Leq8  (Const8  [0]) (Rsh8Ux64  _ (Const64 [c]))) && c > 0 => (ConstBool [true])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (Less(64|32)F ...) => (F(64|32)Lt ...)
    
    (Leq64  ...) => (I64LeS ...)
    (Leq32  x y) => (I64LeS (SignExt32to64 x) (SignExt32to64 y))
    (Leq16  x y) => (I64LeS (SignExt16to64 x) (SignExt16to64 y))
    (Leq8   x y) => (I64LeS (SignExt8to64  x) (SignExt8to64  y))
    (Leq64U ...) => (I64LeU ...)
    (Leq32U x y) => (I64LeU (ZeroExt32to64 x) (ZeroExt32to64 y))
    (Leq16U x y) => (I64LeU (ZeroExt16to64 x) (ZeroExt16to64 y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/LOONG64.rules

    (Less8U x y)  => (SGTU (ZeroExt8to64 y) (ZeroExt8to64 x))
    (Less16U x y) => (SGTU (ZeroExt16to64 y) (ZeroExt16to64 x))
    (Less32U x y) => (SGTU (ZeroExt32to64 y) (ZeroExt32to64 x))
    (Less64U x y) => (SGTU y x)
    
    (Leq8 x y)  => (XOR (MOVVconst [1]) (SGT (SignExt8to64 x) (SignExt8to64 y)))
    (Leq16 x y) => (XOR (MOVVconst [1]) (SGT (SignExt16to64 x) (SignExt16to64 y)))
    (Leq32 x y) => (XOR (MOVVconst [1]) (SGT (SignExt32to64 x) (SignExt32to64 y)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    (Less8U x y)  => (SGTU (ZeroExt8to32 y) (ZeroExt8to32 x))
    (Less16U x y) => (SGTU (ZeroExt16to32 y) (ZeroExt16to32 x))
    (Less32U x y) => (SGTU y x)
    
    (Leq8 x y)  => (XORconst [1] (SGT (SignExt8to32 x) (SignExt8to32 y)))
    (Leq16 x y) => (XORconst [1] (SGT (SignExt16to32 x) (SignExt16to32 y)))
    (Leq32 x y) => (XORconst [1] (SGT x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritegeneric.go

    			v0.AddArg2(x, v1)
    			v2 := b.NewValue0(v.Pos, OpConst8, x.Type)
    			v2.AuxInt = int8ToAuxInt(d - c)
    			v.AddArg2(v0, v2)
    			return true
    		}
    		break
    	}
    	// match: (AndB (Leq8 (Const8 [c]) x) (Leq8 x (Const8 [d])))
    	// cond: d >= c
    	// result: (Leq8U (Sub8 <x.Type> x (Const8 <x.Type> [c])) (Const8 <x.Type> [d-c]))
    	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)
  7. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    (Less8U x y)  => (SGTU (ZeroExt8to64 y) (ZeroExt8to64 x))
    (Less16U x y) => (SGTU (ZeroExt16to64 y) (ZeroExt16to64 x))
    (Less32U x y) => (SGTU (ZeroExt32to64 y) (ZeroExt32to64 x))
    (Less64U x y) => (SGTU y x)
    
    (Leq8 x y)  => (XOR (MOVVconst [1]) (SGT (SignExt8to64 x) (SignExt8to64 y)))
    (Leq16 x y) => (XOR (MOVVconst [1]) (SGT (SignExt16to64 x) (SignExt16to64 y)))
    (Leq32 x y) => (XOR (MOVVconst [1]) (SGT (SignExt32to64 x) (SignExt32to64 y)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Less64", argLength: 2, typ: "Bool"},
    	{name: "Less64U", argLength: 2, typ: "Bool"},
    	{name: "Less32F", argLength: 2, typ: "Bool"},
    	{name: "Less64F", argLength: 2, typ: "Bool"},
    
    	{name: "Leq8", argLength: 2, typ: "Bool"},  // arg0 <= arg1, signed
    	{name: "Leq8U", argLength: 2, typ: "Bool"}, // arg0 <= arg1, unsigned
    	{name: "Leq16", argLength: 2, typ: "Bool"},
    	{name: "Leq16U", argLength: 2, typ: "Bool"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Less8U  x y) => (LessThanU (CMPW (ZeroExt8to32  x) (ZeroExt8to32  y)))
    (Less16U x y) => (LessThanU (CMPW (ZeroExt16to32 x) (ZeroExt16to32 y)))
    (Less32U x y) => (LessThanU (CMPW x y))
    (Less64U x y) => (LessThanU (CMP x y))
    
    (Leq8  x y) => (LessEqual (CMPW (SignExt8to32  x) (SignExt8to32  y)))
    (Leq16 x y) => (LessEqual (CMPW (SignExt16to32 x) (SignExt16to32 y)))
    (Leq32 x y) => (LessEqual (CMPW x y))
    (Leq64 x y) => (LessEqual (CMP x y))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteWasm.go

    		v.AddArg2(v0, v1)
    		return true
    	}
    }
    func rewriteValueWasm_OpLeq8(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Leq8 x y)
    	// result: (I64LeS (SignExt8to64 x) (SignExt8to64 y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpWasmI64LeS)
    		v0 := b.NewValue0(v.Pos, OpSignExt8to64, typ.Int64)
    		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