Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Neq64 (0.06 sec)

  1. test/prove.go

    			if a < 12 { // ERROR "Disproved Less64$"
    				return 1
    			}
    		}
    		if x {
    			if a <= 12 { // ERROR "Disproved Leq64$"
    				return 2
    			}
    		}
    		if x {
    			if a == 12 { // ERROR "Disproved Eq64$"
    				return 3
    			}
    		}
    		if x {
    			if a >= 12 { // ERROR "Proved Leq64$"
    				return 4
    			}
    		}
    		if x {
    			if a > 12 { // ERROR "Proved Less64$"
    				return 5
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. test/fuse.go

    }
    
    func fEqLeqU(a uint64, f float64) bool {
    	return a == 0 && f > Cf2 || a <= 0 && f < -Cf2 // ERROR "Redirect Eq64 based on Eq64$"
    }
    
    func fNeqEq(a int, f float64) bool {
    	return a != 0 && f > Cf2 || a == 0 && f < -Cf2 // ERROR "Redirect Eq64 based on Neq64$"
    }
    
    func fNeqNeq(a int32, f float64) bool {
    	return a != 0 && f > Cf2 || a != 0 && f < -Cf2 // ERROR "Redirect Neq32 based on Neq32$"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/dec64.rules

    (Const64 <t> [c]) && !t.IsSigned() =>
    	(Int64Make (Const32 <typ.UInt32> [int32(c>>32)]) (Const32 <typ.UInt32> [int32(c)]))
    
    (Eq64 x y) =>
    	(AndB
    		(Eq32 (Int64Hi x) (Int64Hi y))
    		(Eq32 (Int64Lo x) (Int64Lo y)))
    
    (Neq64 x y) =>
    	(OrB
    		(Neq32 (Int64Hi x) (Int64Hi y))
    		(Neq32 (Int64Lo x) (Int64Lo y)))
    
    (Less64U x y) =>
    	(OrB
    		(Less32U (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)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Less(64|32|16|8)U (Const(64|32|16|8) <t> [-2]) x) => (Eq(64|32|16|8) x (Const(64|32|16|8) <t> [-1]))
    (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)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (Leq(64|32)F ...) => (F(64|32)Le ...)
    
    (Eq64  ...) => (I64Eq ...)
    (Eq32  x y) => (I64Eq (ZeroExt32to64 x) (ZeroExt32to64 y))
    (Eq16  x y) => (I64Eq (ZeroExt16to64 x) (ZeroExt16to64 y))
    (Eq8   x y) => (I64Eq (ZeroExt8to64  x) (ZeroExt8to64  y))
    (EqB   ...) => (I64Eq ...)
    (EqPtr ...) => (I64Eq ...)
    (Eq(64|32)F ...) => (F(64|32)Eq ...)
    
    (Neq64  ...) => (I64Ne ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/LOONG64.rules

    (Neq16 x y) => (SGTU (XOR (ZeroExt16to32 x) (ZeroExt16to64 y)) (MOVVconst [0]))
    (Neq32 x y) => (SGTU (XOR (ZeroExt32to64 x) (ZeroExt32to64 y)) (MOVVconst [0]))
    (Neq64 x y) => (SGTU (XOR x y) (MOVVconst [0]))
    (NeqPtr x y) => (SGTU (XOR x y) (MOVVconst [0]))
    (Neq(32|64)F x y) => (FPFlagFalse (CMPEQ(F|D) x y))
    
    (Less8 x y)  => (SGT (SignExt8to64 y) (SignExt8to64 x))
    (Less16 x y) => (SGT (SignExt16to64 y) (SignExt16to64 x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (Eq8   x y) => (SEQZ (SUB <x.Type> (ZeroExt8to64  x) (ZeroExt8to64  y)))
    (Eq(64|32)F ...) => (FEQ(D|S) ...)
    
    (NeqPtr x y) => (Not (EqPtr x y))
    (Neq64  x y) => (Not (Eq64  x y))
    (Neq32  x y) => (Not (Eq32  x y))
    (Neq16  x y) => (Not (Eq16  x y))
    (Neq8   x y) => (Not (Eq8   x y))
    (Neq(64|32)F ...) => (FNE(D|S) ...)
    
    // Loads
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    (Neq16 x y) => (SGTU (XOR (ZeroExt16to32 x) (ZeroExt16to64 y)) (MOVVconst [0]))
    (Neq32 x y) => (SGTU (XOR (ZeroExt32to64 x) (ZeroExt32to64 y)) (MOVVconst [0]))
    (Neq64 x y) => (SGTU (XOR x y) (MOVVconst [0]))
    (NeqPtr x y) => (SGTU (XOR x y) (MOVVconst [0]))
    (Neq(32|64)F x y) => (FPFlagFalse (CMPEQ(F|D) x y))
    
    (Less8 x y)  => (SGT (SignExt8to64 y) (SignExt8to64 x))
    (Less16 x y) => (SGT (SignExt16to64 y) (SignExt16to64 x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Neq8", argLength: 2, commutative: true, typ: "Bool"}, // arg0 != arg1
    	{name: "Neq16", argLength: 2, commutative: true, typ: "Bool"},
    	{name: "Neq32", argLength: 2, commutative: true, typ: "Bool"},
    	{name: "Neq64", argLength: 2, commutative: true, typ: "Bool"},
    	{name: "NeqPtr", argLength: 2, commutative: true, typ: "Bool"},
    	{name: "NeqInter", argLength: 2, typ: "Bool"}, // arg0 or arg1 is nil; other cases handled by frontend
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewritegeneric.go

    		return true
    	}
    	// match: (Leq64 x c:(Const64 [math.MinInt64]))
    	// result: (Eq64 x c)
    	for {
    		x := v_0
    		c := v_1
    		if c.Op != OpConst64 || auxIntToInt64(c.AuxInt) != math.MinInt64 {
    			break
    		}
    		v.reset(OpEq64)
    		v.AddArg2(x, c)
    		return true
    	}
    	// match: (Leq64 c:(Const64 [math.MaxInt64]) x)
    	// result: (Eq64 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