Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for RORWconst (0.07 sec)

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

    (CMPW x (MOVDconst [c])) => (CMPWconst [int32(c)] x)
    (CMPW (MOVDconst [c]) x) => (InvertFlags (CMPWconst [int32(c)] x))
    
    (ROR  x (MOVDconst [c])) => (RORconst x [c&63])
    (RORW x (MOVDconst [c])) => (RORWconst x [c&31])
    
    (ADDSflags x (MOVDconst [c]))  => (ADDSconstflags [c] x)
    
    (ADDconst [c] y) && c < 0 => (SUBconst [-c] y)
    
    // Canonicalize the order of arguments to comparisons - helps with CSE.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
Back to top