Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. src/cmd/compile/internal/ssa/rewriteAMD64.go

    			b.Reset(BlockFirst)
    			return true
    		}
    	case BlockAMD64ULE:
    		// match: (ULE (InvertFlags cmp) yes no)
    		// result: (UGE cmp yes no)
    		for b.Controls[0].Op == OpAMD64InvertFlags {
    			v_0 := b.Controls[0]
    			cmp := v_0.Args[0]
    			b.resetWithControl(BlockAMD64UGE, cmp)
    			return true
    		}
    		// match: (ULE (FlagEQ) yes no)
    		// result: (First yes no)
    		for b.Controls[0].Op == OpAMD64FlagEQ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top