[ASan] Rename a atomic_compare_exchange_strong parameter to avoid a compiler warning
[blocksruntime.git] / lib / lshrti3.c
blobbe768143b581e92c4e743a838b0b7106deeef18d
1 /* ===-- lshrti3.c - Implement __lshrti3 -----------------------------------===
3 * The LLVM Compiler Infrastructure
5 * This file is dual licensed under the MIT and the University of Illinois Open
6 * Source Licenses. See LICENSE.TXT for details.
8 * ===----------------------------------------------------------------------===
10 * This file implements __lshrti3 for the compiler_rt library.
12 * ===----------------------------------------------------------------------===
15 #include "int_lib.h"
17 #if __x86_64
19 /* Returns: logical a >> b */
21 /* Precondition: 0 <= b < bits_in_tword */
23 ti_int
24 __lshrti3(ti_int a, si_int b)
26 const int bits_in_dword = (int)(sizeof(di_int) * CHAR_BIT);
27 utwords input;
28 utwords result;
29 input.all = a;
30 if (b & bits_in_dword) /* bits_in_dword <= b < bits_in_tword */
32 result.s.high = 0;
33 result.s.low = input.s.high >> (b - bits_in_dword);
35 else /* 0 <= b < bits_in_dword */
37 if (b == 0)
38 return a;
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
42 return result.all;
45 #endif /* __x86_64 */