1 1.1 joerg /* ===-- paritysi2.c - Implement __paritysi2 -------------------------------=== 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 __paritysi2 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 /* Returns: 1 if number of bits is odd else returns 0 */ 18 1.1 joerg 19 1.1 joerg COMPILER_RT_ABI si_int 20 1.1 joerg __paritysi2(si_int a) 21 1.1 joerg { 22 1.1 joerg su_int x = (su_int)a; 23 1.1 joerg x ^= x >> 16; 24 1.1 joerg x ^= x >> 8; 25 1.1 joerg x ^= x >> 4; 26 1.1 joerg return (0x6996 >> (x & 0xF)) & 1; 27 1.1 joerg } 28