Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Leq32F (0.21 sec)

  1. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Leq16", argLength: 2, typ: "Bool"},
    	{name: "Leq16U", argLength: 2, typ: "Bool"},
    	{name: "Leq32", argLength: 2, typ: "Bool"},
    	{name: "Leq32U", argLength: 2, typ: "Bool"},
    	{name: "Leq64", argLength: 2, typ: "Bool"},
    	{name: "Leq64U", argLength: 2, typ: "Bool"},
    	{name: "Leq32F", argLength: 2, typ: "Bool"},
    	{name: "Leq64F", 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)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Leq64 x c:(Const64 [math.MinInt64])) => (Eq64 x c)
    (Leq32 x c:(Const32 [math.MinInt32])) => (Eq32 x c)
    (Leq16 x c:(Const16 [math.MinInt16])) => (Eq16 x c)
    (Leq8  x c:(Const8  [math.MinInt8 ])) => (Eq8  x c)
    (Leq64 c:(Const64 [math.MaxInt64]) x) => (Eq64 x c)
    (Leq32 c:(Const32 [math.MaxInt32]) x) => (Eq32 x c)
    (Leq16 c:(Const16 [math.MaxInt16]) x) => (Eq16 x c)
    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/S390X.rules

    (Leq32      x y) => (LOCGR {s390x.LessOrEqual} (MOVDconst [0]) (MOVDconst [1]) (CMPW x y))
    (Leq(16|8)  x y) => (LOCGR {s390x.LessOrEqual} (MOVDconst [0]) (MOVDconst [1]) (CMPW (MOV(H|B)reg x) (MOV(H|B)reg y)))
    (Leq64U     x y) => (LOCGR {s390x.LessOrEqual} (MOVDconst [0]) (MOVDconst [1]) (CMPU x y))
    (Leq32U     x y) => (LOCGR {s390x.LessOrEqual} (MOVDconst [0]) (MOVDconst [1]) (CMPWU x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/dec64.rules

    		(AndB
    			(Eq32 (Int64Hi x) (Int64Hi y))
    			(Leq32U (Int64Lo x) (Int64Lo y))))
    
    (Less64 x y) =>
    	(OrB
    		(Less32 (Int64Hi x) (Int64Hi y))
    		(AndB
    			(Eq32 (Int64Hi x) (Int64Hi y))
    			(Less32U (Int64Lo x) (Int64Lo y))))
    
    (Leq64 x y) =>
    	(OrB
    		(Less32 (Int64Hi x) (Int64Hi y))
    		(AndB
    			(Eq32 (Int64Hi x) (Int64Hi y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  5. test/fuse.go

    }
    
    func fNeqLessU(a uint, f float64) bool {
    	return a != 0 && f > Cf2 || a < 0 && f < -Cf2
    }
    
    func fNeqLeqU(a uint32, f float64) bool {
    	return a != 2 && f > Cf2 || a <= 2 && f < -Cf2 // ERROR "Redirect Leq32U based on Neq32$"
    }
    
    func fLessEq(a int, f float64) bool {
    	return a < 0 && f > Cf2 || a == 0 && f < -Cf2
    }
    
    func fLessNeq(a int32, 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)
  6. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Eq16  x y) => (Equal (CMPW (ZeroExt16to32 x) (ZeroExt16to32 y)))
    (Eq32  x y) => (Equal (CMPW  x y))
    (Eq64  x y) => (Equal (CMP   x y))
    (EqPtr x y) => (Equal (CMP   x y))
    (Eq32F x y) => (Equal (FCMPS x y))
    (Eq64F x y) => (Equal (FCMPD x y))
    
    (Neq8   x y) => (NotEqual (CMPW (ZeroExt8to32  x) (ZeroExt8to32  y)))
    (Neq16  x y) => (NotEqual (CMPW (ZeroExt16to32 x) (ZeroExt16to32 y)))
    (Neq32  x y) => (NotEqual (CMPW  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)
  7. 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)
  8. src/cmd/compile/internal/ssa/rewriteMIPS.go

    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValueMIPS_OpLeq32F(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Leq32F x y)
    	// result: (FPFlagTrue (CMPGEF y x))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpMIPSFPFlagTrue)
    		v0 := b.NewValue0(v.Pos, OpMIPSCMPGEF, types.TypeFlags)
    		v0.AddArg2(y, x)
    		v.AddArg(v0)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    		v1.AddArg2(v2, v3)
    		v.AddArg2(v0, v1)
    		return true
    	}
    }
    func rewriteValueLOONG64_OpLeq32F(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Leq32F x y)
    	// result: (FPFlagTrue (CMPGEF y x))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpLOONG64FPFlagTrue)
    		v0 := b.NewValue0(v.Pos, OpLOONG64CMPGEF, 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)
  10. src/cmd/compile/internal/ssa/rewritegeneric.go

    		return true
    	}
    	// match: (Leq32U x c:(Const32 [0]))
    	// result: (Eq32 x c)
    	for {
    		x := v_0
    		c := v_1
    		if c.Op != OpConst32 || auxIntToInt32(c.AuxInt) != 0 {
    			break
    		}
    		v.reset(OpEq32)
    		v.AddArg2(x, c)
    		return true
    	}
    	// match: (Leq32U c:(Const32 [-1]) x)
    	// result: (Eq32 x c)
    	for {
    		c := 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)
Back to top