~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/x86/lib/hweight.S

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #include <linux/export.h>
  3 #include <linux/linkage.h>
  4 
  5 #include <asm/asm.h>
  6 
  7 /*
  8  * unsigned int __sw_hweight32(unsigned int w)
  9  * %rdi: w
 10  */
 11 SYM_FUNC_START(__sw_hweight32)
 12 
 13 #ifdef CONFIG_X86_64
 14         movl %edi, %eax                         # w
 15 #endif
 16         __ASM_SIZE(push,) %__ASM_REG(dx)
 17         movl %eax, %edx                         # w -> t
 18         shrl %edx                               # t >>= 1
 19         andl $0x55555555, %edx                  # t &= 0x55555555
 20         subl %edx, %eax                         # w -= t
 21 
 22         movl %eax, %edx                         # w -> t
 23         shrl $2, %eax                           # w_tmp >>= 2
 24         andl $0x33333333, %edx                  # t     &= 0x33333333
 25         andl $0x33333333, %eax                  # w_tmp &= 0x33333333
 26         addl %edx, %eax                         # w = w_tmp + t
 27 
 28         movl %eax, %edx                         # w -> t
 29         shrl $4, %edx                           # t >>= 4
 30         addl %edx, %eax                         # w_tmp += t
 31         andl  $0x0f0f0f0f, %eax                 # w_tmp &= 0x0f0f0f0f
 32         imull $0x01010101, %eax, %eax           # w_tmp *= 0x01010101
 33         shrl $24, %eax                          # w = w_tmp >> 24
 34         __ASM_SIZE(pop,) %__ASM_REG(dx)
 35         RET
 36 SYM_FUNC_END(__sw_hweight32)
 37 EXPORT_SYMBOL(__sw_hweight32)
 38 
 39 /*
 40  * No 32-bit variant, because it's implemented as an inline wrapper
 41  * on top of __arch_hweight32():
 42  */
 43 #ifdef CONFIG_X86_64
 44 SYM_FUNC_START(__sw_hweight64)
 45         pushq   %rdi
 46         pushq   %rdx
 47 
 48         movq    %rdi, %rdx                      # w -> t
 49         movabsq $0x5555555555555555, %rax
 50         shrq    %rdx                            # t >>= 1
 51         andq    %rdx, %rax                      # t &= 0x5555555555555555
 52         movabsq $0x3333333333333333, %rdx
 53         subq    %rax, %rdi                      # w -= t
 54 
 55         movq    %rdi, %rax                      # w -> t
 56         shrq    $2, %rdi                        # w_tmp >>= 2
 57         andq    %rdx, %rax                      # t     &= 0x3333333333333333
 58         andq    %rdi, %rdx                      # w_tmp &= 0x3333333333333333
 59         addq    %rdx, %rax                      # w = w_tmp + t
 60 
 61         movq    %rax, %rdx                      # w -> t
 62         shrq    $4, %rdx                        # t >>= 4
 63         addq    %rdx, %rax                      # w_tmp += t
 64         movabsq $0x0f0f0f0f0f0f0f0f, %rdx
 65         andq    %rdx, %rax                      # w_tmp &= 0x0f0f0f0f0f0f0f0f
 66         movabsq $0x0101010101010101, %rdx
 67         imulq   %rdx, %rax                      # w_tmp *= 0x0101010101010101
 68         shrq    $56, %rax                       # w = w_tmp >> 56
 69 
 70         popq    %rdx
 71         popq    %rdi
 72         RET
 73 SYM_FUNC_END(__sw_hweight64)
 74 EXPORT_SYMBOL(__sw_hweight64)
 75 #endif

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php