1 1.1 joerg /* ===-- popcountti2.c - Implement __popcountti2 ----------------------------=== 2 1.1 joerg * 3 1.1 joerg * The LLVM Compiler Infrastructure 4 1.1 joerg * 5 1.1 joerg * This file is dual licensed under the MIT and the University of Illinois Open 6 1.1 joerg * Source Licenses. See LICENSE.TXT for details. 7 1.1 joerg * 8 1.1 joerg * ===----------------------------------------------------------------------=== 9 1.1 joerg * 10 1.1 joerg * This file implements __popcountti2 for the compiler_rt library. 11 1.1 joerg * 12 1.1 joerg * ===----------------------------------------------------------------------=== 13 1.1 joerg */ 14 1.1 joerg 15 1.1 joerg #include "int_lib.h" 16 1.1 joerg 17 1.1 joerg #ifdef CRT_HAS_128BIT 18 1.1 joerg 19 1.1 joerg /* Returns: count of 1 bits */ 20 1.1 joerg 21 1.1.1.2 joerg COMPILER_RT_ABI si_int 22 1.1 joerg __popcountti2(ti_int a) 23 1.1 joerg { 24 1.1 joerg tu_int x3 = (tu_int)a; 25 1.1 joerg x3 = x3 - ((x3 >> 1) & (((tu_int)0x5555555555555555uLL << 64) | 26 1.1 joerg 0x5555555555555555uLL)); 27 1.1 joerg /* Every 2 bits holds the sum of every pair of bits (64) */ 28 1.1 joerg x3 = ((x3 >> 2) & (((tu_int)0x3333333333333333uLL << 64) | 0x3333333333333333uLL)) 29 1.1 joerg + (x3 & (((tu_int)0x3333333333333333uLL << 64) | 0x3333333333333333uLL)); 30 1.1 joerg /* Every 4 bits holds the sum of every 4-set of bits (3 significant bits) (32) */ 31 1.1 joerg x3 = (x3 + (x3 >> 4)) 32 1.1 joerg & (((tu_int)0x0F0F0F0F0F0F0F0FuLL << 64) | 0x0F0F0F0F0F0F0F0FuLL); 33 1.1 joerg /* Every 8 bits holds the sum of every 8-set of bits (4 significant bits) (16) */ 34 1.1 joerg du_int x2 = (du_int)(x3 + (x3 >> 64)); 35 1.1 joerg /* Every 8 bits holds the sum of every 8-set of bits (5 significant bits) (8) */ 36 1.1 joerg su_int x = (su_int)(x2 + (x2 >> 32)); 37 1.1 joerg /* Every 8 bits holds the sum of every 8-set of bits (6 significant bits) (4) */ 38 1.1 joerg x = x + (x >> 16); 39 1.1 joerg /* Every 8 bits holds the sum of every 8-set of bits (7 significant bits) (2) */ 40 1.1 joerg /* Upper 16 bits are garbage */ 41 1.1 joerg return (x + (x >> 8)) & 0xFF; /* (8 significant bits) */ 42 1.1 joerg } 43 1.1 joerg 44 1.1 joerg #endif /* CRT_HAS_128BIT */ 45