Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for ULE (1.13 sec)

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

    (ULT (FlagConstant [fc]) yes no) &&  fc.ult() => (First yes no)
    (ULT (FlagConstant [fc]) yes no) && !fc.ult() => (First no yes)
    
    (ULE (FlagConstant [fc]) yes no) &&  fc.ule() => (First yes no)
    (ULE (FlagConstant [fc]) yes no) && !fc.ule() => (First no yes)
    
    (UGT (FlagConstant [fc]) yes no) &&  fc.ugt() => (First yes no)
    (UGT (FlagConstant [fc]) yes no) && !fc.ugt() => (First no yes)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    ((EQ|LE|GE|ULE|UGE) (FlagEQ) yes no)     => (First yes no)
    ((NE|LT|GT|ULT|UGT) (FlagEQ) yes no)     => (First no yes)
    ((NE|LT|LE|ULT|ULE) (FlagLT_ULT) yes no) => (First yes no)
    ((EQ|GT|GE|UGT|UGE) (FlagLT_ULT) yes no) => (First no yes)
    ((NE|LT|LE|UGT|UGE) (FlagLT_UGT) yes no) => (First yes no)
    ((EQ|GT|GE|ULT|ULE) (FlagLT_UGT) yes no) => (First no yes)
    ((NE|GT|GE|ULT|ULE) (FlagGT_ULT) yes no) => (First yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (ULT (FlagConstant [fc]) yes no) &&  fc.ult() => (First yes no)
    (ULT (FlagConstant [fc]) yes no) && !fc.ult() => (First no yes)
    
    (ULE (FlagConstant [fc]) yes no) &&  fc.ule() => (First yes no)
    (ULE (FlagConstant [fc]) yes no) && !fc.ule() => (First no yes)
    
    (UGT (FlagConstant [fc]) yes no) &&  fc.ugt() => (First yes no)
    (UGT (FlagConstant [fc]) yes no) && !fc.ugt() => (First no yes)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite386.go

    		}
    		// match: (ULE (FlagLT_ULT) yes no)
    		// result: (First yes no)
    		for b.Controls[0].Op == Op386FlagLT_ULT {
    			b.Reset(BlockFirst)
    			return true
    		}
    		// match: (ULE (FlagLT_UGT) yes no)
    		// result: (First no yes)
    		for b.Controls[0].Op == Op386FlagLT_UGT {
    			b.Reset(BlockFirst)
    			b.swapSuccessors()
    			return true
    		}
    		// match: (ULE (FlagGT_ULT) yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteARM.go

    		}
    	case BlockARMULE:
    		// match: (ULE (FlagConstant [fc]) yes no)
    		// cond: fc.ule()
    		// result: (First yes no)
    		for b.Controls[0].Op == OpARMFlagConstant {
    			v_0 := b.Controls[0]
    			fc := auxIntToFlagConstant(v_0.AuxInt)
    			if !(fc.ule()) {
    				break
    			}
    			b.Reset(BlockFirst)
    			return true
    		}
    		// match: (ULE (FlagConstant [fc]) yes no)
    		// cond: !fc.ule()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    	case OpARM64GreaterThan:
    		return b2i(fc.gt())
    	case OpARM64GreaterThanU:
    		return b2i(fc.ugt())
    	case OpARM64LessEqual:
    		return b2i(fc.le())
    	case OpARM64LessEqualU:
    		return b2i(fc.ule())
    	case OpARM64GreaterEqual:
    		return b2i(fc.ge())
    	case OpARM64GreaterEqualU:
    		return b2i(fc.uge())
    	}
    	return 0
    }
    
    // logRule logs the use of the rule s. This will only be enabled if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "NE", controls: 1},
    		{name: "LT", controls: 1},
    		{name: "LE", controls: 1},
    		{name: "GT", controls: 1},
    		{name: "GE", controls: 1},
    		{name: "ULT", controls: 1},
    		{name: "ULE", controls: 1},
    		{name: "UGT", controls: 1},
    		{name: "UGE", controls: 1},
    		{name: "LTnoov", controls: 1}, // 'LT' but without honoring overflow
    		{name: "LEnoov", controls: 1}, // 'LE' but without honoring overflow
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "LE", controls: 1},
    		{name: "GT", controls: 1},
    		{name: "GE", controls: 1},
    		{name: "OS", controls: 1},
    		{name: "OC", controls: 1},
    		{name: "ULT", controls: 1},
    		{name: "ULE", controls: 1},
    		{name: "UGT", controls: 1},
    		{name: "UGE", controls: 1},
    		{name: "EQF", controls: 1},
    		{name: "NEF", controls: 1},
    		{name: "ORD", controls: 1}, // FP, ordered comparison (parity zero)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteARM64.go

    		}
    	case BlockARM64ULE:
    		// match: (ULE (FlagConstant [fc]) yes no)
    		// cond: fc.ule()
    		// result: (First yes no)
    		for b.Controls[0].Op == OpARM64FlagConstant {
    			v_0 := b.Controls[0]
    			fc := auxIntToFlagConstant(v_0.AuxInt)
    			if !(fc.ule()) {
    				break
    			}
    			b.Reset(BlockFirst)
    			return true
    		}
    		// match: (ULE (FlagConstant [fc]) yes no)
    		// cond: !fc.ule()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "NE", controls: 1},
    		{name: "LT", controls: 1},
    		{name: "LE", controls: 1},
    		{name: "GT", controls: 1},
    		{name: "GE", controls: 1},
    		{name: "ULT", controls: 1},
    		{name: "ULE", controls: 1},
    		{name: "UGT", controls: 1},
    		{name: "UGE", controls: 1},
    		{name: "Z", controls: 1},                  // Control == 0 (take a register instead of flags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
Back to top