1156cd587Sjoerg /* ===-- popcountti2.c - Implement __popcountti2 ----------------------------=== 2156cd587Sjoerg * 3156cd587Sjoerg * The LLVM Compiler Infrastructure 4156cd587Sjoerg * 5156cd587Sjoerg * This file is dual licensed under the MIT and the University of Illinois Open 6156cd587Sjoerg * Source Licenses. See LICENSE.TXT for details. 7156cd587Sjoerg * 8156cd587Sjoerg * ===----------------------------------------------------------------------=== 9156cd587Sjoerg * 10156cd587Sjoerg * This file implements __popcountti2 for the compiler_rt library. 11156cd587Sjoerg * 12156cd587Sjoerg * ===----------------------------------------------------------------------=== 13156cd587Sjoerg */ 14156cd587Sjoerg 15156cd587Sjoerg #include "int_lib.h" 16156cd587Sjoerg 17156cd587Sjoerg #ifdef CRT_HAS_128BIT 18156cd587Sjoerg 19156cd587Sjoerg /* Returns: count of 1 bits */ 20156cd587Sjoerg 21*f7f78b33Sjoerg COMPILER_RT_ABI si_int __popcountti2(ti_int a)22156cd587Sjoerg__popcountti2(ti_int a) 23156cd587Sjoerg { 24156cd587Sjoerg tu_int x3 = (tu_int)a; 25156cd587Sjoerg x3 = x3 - ((x3 >> 1) & (((tu_int)0x5555555555555555uLL << 64) | 26156cd587Sjoerg 0x5555555555555555uLL)); 27156cd587Sjoerg /* Every 2 bits holds the sum of every pair of bits (64) */ 28156cd587Sjoerg x3 = ((x3 >> 2) & (((tu_int)0x3333333333333333uLL << 64) | 0x3333333333333333uLL)) 29156cd587Sjoerg + (x3 & (((tu_int)0x3333333333333333uLL << 64) | 0x3333333333333333uLL)); 30156cd587Sjoerg /* Every 4 bits holds the sum of every 4-set of bits (3 significant bits) (32) */ 31156cd587Sjoerg x3 = (x3 + (x3 >> 4)) 32156cd587Sjoerg & (((tu_int)0x0F0F0F0F0F0F0F0FuLL << 64) | 0x0F0F0F0F0F0F0F0FuLL); 33156cd587Sjoerg /* Every 8 bits holds the sum of every 8-set of bits (4 significant bits) (16) */ 34156cd587Sjoerg du_int x2 = (du_int)(x3 + (x3 >> 64)); 35156cd587Sjoerg /* Every 8 bits holds the sum of every 8-set of bits (5 significant bits) (8) */ 36156cd587Sjoerg su_int x = (su_int)(x2 + (x2 >> 32)); 37156cd587Sjoerg /* Every 8 bits holds the sum of every 8-set of bits (6 significant bits) (4) */ 38156cd587Sjoerg x = x + (x >> 16); 39156cd587Sjoerg /* Every 8 bits holds the sum of every 8-set of bits (7 significant bits) (2) */ 40156cd587Sjoerg /* Upper 16 bits are garbage */ 41156cd587Sjoerg return (x + (x >> 8)) & 0xFF; /* (8 significant bits) */ 42156cd587Sjoerg } 43156cd587Sjoerg 44156cd587Sjoerg #endif /* CRT_HAS_128BIT */ 45