Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    	&& (uint64(c1) == 0xff00ff00ff00ff00 && uint64(c2) == 0x00ff00ff00ff00ff)
    	=> (REV16 x)
    
    // ((x & 0xff00ff00)>>8) | ((x & 0x00ff00ff)<<8), "|" can also be "^" or "+".
    ((ADDshiftLL|ORshiftLL|XORshiftLL) [8] (SRLconst [8] (ANDconst [c1] x)) (ANDconst [c2] x))
    	&& (uint64(c1) == 0xff00ff00 && uint64(c2) == 0x00ff00ff)
    	=> (REV16 (ANDconst <x.Type> [0xffffffff] x))
    
    // Extract from reg pair
    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