Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    (NE (TESTB (SETA  cmp) (SETA  cmp)) yes no) => (UGT cmp yes no)
    (NE (TESTB (SETAE cmp) (SETAE cmp)) yes no) => (UGE cmp yes no)
    (NE (TESTB (SETO cmp) (SETO cmp)) yes no) => (OS cmp yes no)
    
    // Unsigned comparisons to 0/1
    (ULT (TEST(Q|L|W|B) x x) yes no) => (First no yes)
    (UGE (TEST(Q|L|W|B) x x) yes no) => (First yes no)
    (SETB (TEST(Q|L|W|B) x x)) => (ConstBool [false])
    (SETAE (TEST(Q|L|W|B) x x)) => (ConstBool [true])
    
    // x & 1 != 0 -> x & 1
    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