Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 21 of 21 for canonicalized (0.18 sec)

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

    (CMPW (MOVLconst [c]) x) => (InvertFlags (CMPWconst x [int16(c)]))
    (CMPB x (MOVLconst [c])) => (CMPBconst x [int8(c)])
    (CMPB (MOVLconst [c]) x) => (InvertFlags (CMPBconst x [int8(c)]))
    
    // Canonicalize the order of arguments to comparisons - helps with CSE.
    (CMP(Q|L|W|B) x y) && canonLessThan(x,y) => (InvertFlags (CMP(Q|L|W|B) y x))
    
    // Using MOVZX instead of AND is cheaper.
    (AND(Q|L)const [  0xFF] x) => (MOVBQZX 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