Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BTQ (0.02 sec)

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

    // mutandis, for UGE and SETAE, and CC and SETCC.
    ((NE|EQ) (TESTL (SHLL (MOVLconst [1]) x) y)) => ((ULT|UGE) (BTL x y))
    ((NE|EQ) (TESTQ (SHLQ (MOVQconst [1]) x) y)) => ((ULT|UGE) (BTQ x y))
    ((NE|EQ) (TESTLconst [c] x)) && isUint32PowerOfTwo(int64(c))
        => ((ULT|UGE) (BTLconst [int8(log32(c))] x))
    ((NE|EQ) (TESTQconst [c] x)) && isUint64PowerOfTwo(int64(c))
        => ((ULT|UGE) (BTQconst [int8(log32(c))] x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top