Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for ULE (0.11 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/_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)
  3. 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)
  4. src/cmd/compile/internal/ssa/_gen/AMD64Ops.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: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  5. src/cmd/compile/internal/ssa/opGen.go

    	Block386EQ:  "EQ",
    	Block386NE:  "NE",
    	Block386LT:  "LT",
    	Block386LE:  "LE",
    	Block386GT:  "GT",
    	Block386GE:  "GE",
    	Block386OS:  "OS",
    	Block386OC:  "OC",
    	Block386ULT: "ULT",
    	Block386ULE: "ULE",
    	Block386UGT: "UGT",
    	Block386UGE: "UGE",
    	Block386EQF: "EQF",
    	Block386NEF: "NEF",
    	Block386ORD: "ORD",
    	Block386NAN: "NAN",
    
    	BlockAMD64EQ:        "EQ",
    	BlockAMD64NE:        "NE",
    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