Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ULE (0.35 sec)

  1. 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)
  2. 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)
Back to top