Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LessEqualU (0.13 sec)

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

    (Leq32 x y) => (LessEqual (CMP x y))
    (Leq(32|64)F x y) => (GreaterEqual (CMP(F|D) y x)) // reverse operands to work around NaN
    
    (Leq8U x y)  => (LessEqualU (CMP (ZeroExt8to32 x) (ZeroExt8to32 y)))
    (Leq16U x y) => (LessEqualU (CMP (ZeroExt16to32 x) (ZeroExt16to32 y)))
    (Leq32U x y) => (LessEqualU (CMP x y))
    
    (OffPtr [off] ptr:(SP)) => (MOVWaddr [int32(off)] ptr)
    (OffPtr [off] ptr) => (ADDconst [int32(off)] ptr)
    
    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/ARM64Ops.go

    		{name: "LessThanU", argLength: 1, reg: readflags},        // bool, true flags encode unsigned x<y false otherwise.
    		{name: "LessEqualU", argLength: 1, reg: readflags},       // bool, true flags encode unsigned x<=y false otherwise.
    		{name: "GreaterThanU", argLength: 1, reg: readflags},     // bool, true flags encode unsigned x>y false otherwise.
    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