Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for GreaterEqualU (0.26 sec)

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

    // 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
    (MOVBreg  x:(MOVBload  _ _)) => (MOVDreg x)
    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

    (GreaterThanU     (InvertFlags x)) => (LessThanU x)
    (LessEqual        (InvertFlags x)) => (GreaterEqual x)
    (LessEqualU       (InvertFlags x)) => (GreaterEqualU x)
    (GreaterEqual     (InvertFlags x)) => (LessEqual x)
    (GreaterEqualU    (InvertFlags x)) => (LessEqualU x)
    (LessThanF        (InvertFlags x)) => (GreaterThanF x)
    (LessEqualF       (InvertFlags x)) => (GreaterEqualF x)
    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/rewriteARM64latelower.go

    	}
    	// match: (MOVBUreg x:(GreaterEqual _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpARM64GreaterEqual {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(GreaterEqualU _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpARM64GreaterEqualU {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(GreaterEqualF _))
    	// 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)
  4. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (GreaterThan (InvertFlags x)) => (LessThan x)
    (GreaterThanU (InvertFlags x)) => (LessThanU x)
    (LessEqual (InvertFlags x)) => (GreaterEqual x)
    (LessEqualU (InvertFlags x)) => (GreaterEqualU x)
    (GreaterEqual (InvertFlags x)) => (LessEqual x)
    (GreaterEqualU (InvertFlags x)) => (LessEqualU x)
    
    // absorb flag constants into conditional instructions
    (CMOVWLSconst _ (FlagConstant [fc]) [c]) && fc.ule() => (MOVWconst [c])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "GreaterThanU", argLength: 1, reg: readflags},  // bool, true flags encode unsigned x>y false otherwise.
    		{name: "GreaterEqualU", argLength: 1, reg: readflags}, // bool, true flags encode unsigned x>=y false otherwise.
    
    		// duffzero (must be 4-byte aligned)
    		// arg0 = address of memory to zero (in R1, changed as side effect)
    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/_gen/ARM64Ops.go

    		{name: "GreaterThanU", argLength: 1, reg: readflags},     // bool, true flags encode unsigned x>y false otherwise.
    		{name: "GreaterEqualU", argLength: 1, reg: readflags},    // bool, true flags encode unsigned x>=y false otherwise.
    		{name: "LessThanF", argLength: 1, reg: readflags},        // bool, true flags encode floating-point 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)
  7. src/cmd/compile/internal/ssa/rewriteARM64.go

    	v_0 := v.Args[0]
    	// match: (GreaterEqualU (FlagConstant [fc]))
    	// result: (MOVDconst [b2i(fc.uge())])
    	for {
    		if v_0.Op != OpARM64FlagConstant {
    			break
    		}
    		fc := auxIntToFlagConstant(v_0.AuxInt)
    		v.reset(OpARM64MOVDconst)
    		v.AuxInt = int64ToAuxInt(b2i(fc.uge()))
    		return true
    	}
    	// match: (GreaterEqualU (InvertFlags x))
    	// result: (LessEqualU 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)
  8. src/cmd/compile/internal/ssa/rewriteARM.go

    	v_0 := v.Args[0]
    	// match: (GreaterEqualU (FlagConstant [fc]))
    	// result: (MOVWconst [b2i32(fc.uge())])
    	for {
    		if v_0.Op != OpARMFlagConstant {
    			break
    		}
    		fc := auxIntToFlagConstant(v_0.AuxInt)
    		v.reset(OpARMMOVWconst)
    		v.AuxInt = int32ToAuxInt(b2i32(fc.uge()))
    		return true
    	}
    	// match: (GreaterEqualU (InvertFlags x))
    	// result: (LessEqualU 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)
  9. src/cmd/compile/internal/ssa/opGen.go

    	{
    		name:   "GreaterThanU",
    		argLen: 1,
    		reg: regInfo{
    			outputs: []outputInfo{
    				{0, 21503}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R12 R14
    			},
    		},
    	},
    	{
    		name:   "GreaterEqualU",
    		argLen: 1,
    		reg: regInfo{
    			outputs: []outputInfo{
    				{0, 21503}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R12 R14
    			},
    		},
    	},
    	{
    		name:           "DUFFZERO",
    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