Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for LessEqualU (0.28 sec)

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

    // Boolean-generating instructions (NOTE: NOT all boolean Values) always
    // zero upper bit of the register; no need to zero-extend
    (MOVBUreg x:((Equal|NotEqual|LessThan|LessThanU|LessThanF|LessEqual|LessEqualU|LessEqualF|GreaterThan|GreaterThanU|GreaterThanF|GreaterEqual|GreaterEqualU|GreaterEqualF) _)) => x
    
    // omit unsigned extension
    (MOVWUreg x) && zeroUpper32Bits(x, 3) => x
    
    // don't extend after proper load
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Leq32F x y) => (LessEqualF (FCMPS x y))
    (Leq64F x y) => (LessEqualF (FCMPD x y))
    
    (Leq8U  x y) => (LessEqualU (CMPW (ZeroExt8to32  x) (ZeroExt8to32  y)))
    (Leq16U x y) => (LessEqualU (CMPW (ZeroExt16to32 x) (ZeroExt16to32 y)))
    (Leq32U x y) => (LessEqualU (CMPW x y))
    (Leq64U x y) => (LessEqualU (CMP x y))
    
    // Optimize comparison between a floating-point value and 0.0 with "FCMP $(0.0), Fn"
    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/_gen/ARM.rules

    (Leq32 x y) => (LessEqual (CMP x y))
    (Leq(32|64)F x y) => (GreaterEqual (CMP(F|D) y x)) // reverse operands to work around NaN
    
    (Leq8U x y)  => (LessEqualU (CMP (ZeroExt8to32 x) (ZeroExt8to32 y)))
    (Leq16U x y) => (LessEqualU (CMP (ZeroExt16to32 x) (ZeroExt16to32 y)))
    (Leq32U x y) => (LessEqualU (CMP x y))
    
    (OffPtr [off] ptr:(SP)) => (MOVWaddr [int32(off)] ptr)
    (OffPtr [off] ptr) => (ADDconst [int32(off)] ptr)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteARM64latelower.go

    	}
    	// match: (MOVBUreg x:(LessEqual _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpARM64LessEqual {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(LessEqualU _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpARM64LessEqualU {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(LessEqualF _))
    	// result: x
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "LessThanU", argLength: 1, reg: readflags},     // bool, true flags encode unsigned x<y false otherwise.
    		{name: "LessEqualU", argLength: 1, reg: readflags},    // bool, true flags encode unsigned x<=y false otherwise.
    		{name: "GreaterThanU", argLength: 1, reg: readflags},  // bool, true flags encode unsigned x>y false otherwise.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteARM64.go

    	v_0 := v.Args[0]
    	// match: (LessEqualU (FlagConstant [fc]))
    	// result: (MOVDconst [b2i(fc.ule())])
    	for {
    		if v_0.Op != OpARM64FlagConstant {
    			break
    		}
    		fc := auxIntToFlagConstant(v_0.AuxInt)
    		v.reset(OpARM64MOVDconst)
    		v.AuxInt = int64ToAuxInt(b2i(fc.ule()))
    		return true
    	}
    	// match: (LessEqualU (InvertFlags x))
    	// result: (GreaterEqualU x)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteARM.go

    	v_0 := v.Args[0]
    	// match: (LessEqualU (FlagConstant [fc]))
    	// result: (MOVWconst [b2i32(fc.ule())])
    	for {
    		if v_0.Op != OpARMFlagConstant {
    			break
    		}
    		fc := auxIntToFlagConstant(v_0.AuxInt)
    		v.reset(OpARMMOVWconst)
    		v.AuxInt = int32ToAuxInt(b2i32(fc.ule()))
    		return true
    	}
    	// match: (LessEqualU (InvertFlags x))
    	// result: (GreaterEqualU x)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "LessThanU", argLength: 1, reg: readflags},        // bool, true flags encode unsigned x<y false otherwise.
    		{name: "LessEqualU", argLength: 1, reg: readflags},       // bool, true flags encode unsigned x<=y false otherwise.
    		{name: "GreaterThanU", argLength: 1, reg: readflags},     // bool, true flags encode unsigned x>y false otherwise.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/opGen.go

    	{
    		name:   "LessThanU",
    		argLen: 1,
    		reg: regInfo{
    			outputs: []outputInfo{
    				{0, 21503}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R12 R14
    			},
    		},
    	},
    	{
    		name:   "LessEqualU",
    		argLen: 1,
    		reg: regInfo{
    			outputs: []outputInfo{
    				{0, 21503}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R12 R14
    			},
    		},
    	},
    	{
    		name:   "GreaterThanU",
    		argLen: 1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top