Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Less64F (0.13 sec)

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

    	{name: "Less16U", argLength: 2, typ: "Bool"},
    	{name: "Less32", argLength: 2, typ: "Bool"},
    	{name: "Less32U", argLength: 2, typ: "Bool"},
    	{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
    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/ARM64.rules

    (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))
    
    // Refer to the comments for op Less64F above.
    (Leq32F x y) => (LessEqualF (FCMPS 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)
  3. test/prove.go

    func lim1(x, y, z int) {
    	// Test relations between signed and unsigned limits.
    	if x > 5 {
    		if uint(x) > 5 { // ERROR "Proved Less64U$"
    			return
    		}
    	}
    	if y >= 0 && y < 4 {
    		if uint(y) > 4 { // ERROR "Disproved Less64U$"
    			return
    		}
    		if uint(y) < 5 { // ERROR "Proved Less64U$"
    			return
    		}
    	}
    	if z < 4 {
    		if uint(z) > 4 { // Not provable without disjunctions.
    			return
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (RotateLeft64 ...) => (RLLG ...)
    
    // Lowering comparisons
    (Less64      x y) => (LOCGR {s390x.Less} (MOVDconst [0]) (MOVDconst [1]) (CMP x y))
    (Less32      x y) => (LOCGR {s390x.Less} (MOVDconst [0]) (MOVDconst [1]) (CMPW x y))
    (Less(16|8)  x y) => (LOCGR {s390x.Less} (MOVDconst [0]) (MOVDconst [1]) (CMPW (MOV(H|B)reg x) (MOV(H|B)reg y)))
    (Less64U     x y) => (LOCGR {s390x.Less} (MOVDconst [0]) (MOVDconst [1]) (CMPU 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)
  5. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Leq8  c:(Const8  [math.MaxInt8 ]) x) => (Eq8  x c)
    (Less64 x (Const64 <t> [math.MinInt64+1])) => (Eq64 x (Const64 <t> [math.MinInt64]))
    (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 ]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/fuse_branchredirect.go

    // of an If block can be derived from its predecessor If block, in
    // some such cases, we can redirect the predecessor If block to the
    // corresponding successor block directly. For example:
    //
    //	p:
    //	  v11 = Less64 <bool> v10 v8
    //	  If v11 goto b else u
    //	b: <- p ...
    //	  v17 = Leq64 <bool> v10 v8
    //	  If v17 goto s else o
    //
    // We can redirect p to s directly.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (Less64 x y)
    	// result: (SGT y x)
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpLOONG64SGT)
    		v.AddArg2(y, x)
    		return true
    	}
    }
    func rewriteValueLOONG64_OpLess64F(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Less64F x y)
    	// result: (FPFlagTrue (CMPGTD y x))
    	for {
    		x := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/dec64.rules

    		(Neq32 (Int64Lo x) (Int64Lo y)))
    
    (Less64U x y) =>
    	(OrB
    		(Less32U (Int64Hi x) (Int64Hi y))
    		(AndB
    			(Eq32 (Int64Hi x) (Int64Hi y))
    			(Less32U (Int64Lo x) (Int64Lo y))))
    
    (Leq64U x y) =>
    	(OrB
    		(Less32U (Int64Hi x) (Int64Hi y))
    		(AndB
    			(Eq32 (Int64Hi x) (Int64Hi y))
    			(Leq32U (Int64Lo x) (Int64Lo y))))
    
    (Less64 x y) =>
    	(OrB
    		(Less32 (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)
  9. src/cmd/compile/internal/ssa/rewriteMIPS.go

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

    (RotateLeft32 ...) => (I32Rotl ...)
    (RotateLeft64 ...) => (I64Rotl ...)
    
    // Lowering comparisons
    (Less64  ...) => (I64LtS ...)
    (Less32  x y) => (I64LtS (SignExt32to64 x) (SignExt32to64 y))
    (Less16  x y) => (I64LtS (SignExt16to64 x) (SignExt16to64 y))
    (Less8   x y) => (I64LtS (SignExt8to64  x) (SignExt8to64  y))
    (Less64U ...) => (I64LtU ...)
    (Less32U x y) => (I64LtU (ZeroExt32to64 x) (ZeroExt32to64 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)
Back to top