Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    (CMP (MOVWconst [c]) x) => (InvertFlags (CMPconst [c] x))
    (CMN x (MOVWconst [c])) => (CMNconst [c] x)
    (TST x (MOVWconst [c])) => (TSTconst [c] x)
    (TEQ x (MOVWconst [c])) => (TEQconst [c] x)
    
    (SRR x (MOVWconst [c])) => (SRRconst x [c&31])
    
    // Canonicalize the order of arguments to comparisons - helps with CSE.
    (CMP x y) && canonLessThan(x,y) => (InvertFlags (CMP y x))
    
    // don't extend after proper load
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
Back to top