Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BitRev32 (0.11 sec)

  1. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Bswap64", argLength: 1}, // Swap bytes
    
    	{name: "BitRev8", argLength: 1},  // Reverse the bits in arg[0]
    	{name: "BitRev16", argLength: 1}, // Reverse the bits in arg[0]
    	{name: "BitRev32", argLength: 1}, // Reverse the bits in arg[0]
    	{name: "BitRev64", argLength: 1}, // Reverse the bits in arg[0]
    
    	{name: "PopCount8", argLength: 1},  // Count bits in arg[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (BitLen32 x) => (SUB (MOVDconst [32]) (CLZW <typ.Int> x))
    
    (Bswap64 ...) => (REV ...)
    (Bswap32 ...) => (REVW ...)
    (Bswap16 ...) => (REV16W ...)
    
    (BitRev64 ...) => (RBIT ...)
    (BitRev32 ...) => (RBITW ...)
    (BitRev16   x) => (SRLconst [48] (RBIT <typ.UInt64> x))
    (BitRev8    x) => (SRLconst [56] (RBIT <typ.UInt64> x))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/opGen.go

    	},
    	{
    		name:    "BitRev8",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "BitRev16",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "BitRev32",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "BitRev64",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "PopCount8",
    		argLen:  1,
    		generic: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top