Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SHRWconst (0.09 sec)

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

    (SHLL x (MOV(Q|L)const [c])) => (SHLLconst [int8(c&31)] x)
    
    (SHRQ x (MOV(Q|L)const [c])) => (SHRQconst [int8(c&63)] x)
    (SHRL x (MOV(Q|L)const [c])) => (SHRLconst [int8(c&31)] x)
    (SHRW x (MOV(Q|L)const [c])) && c&31 < 16 => (SHRWconst [int8(c&31)] x)
    (SHRW _ (MOV(Q|L)const [c])) && c&31 >= 16 => (MOVLconst [0])
    (SHRB x (MOV(Q|L)const [c])) && c&31 < 8 => (SHRBconst [int8(c&31)] x)
    (SHRB _ (MOV(Q|L)const [c])) && c&31 >= 8 => (MOVLconst [0])
    
    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