Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ULE (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  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