tsan: fix strerror interceptor (eliminate false positives)
[blocksruntime.git] / lib / ashrdi3.c
blob14c878bb7793432da25c347f34efd2f99f4d779f
1 /*===-- ashrdi3.c - Implement __ashrdi3 -----------------------------------===
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 __ashrdi3 for the compiler_rt library.
12 * ===----------------------------------------------------------------------===
15 #include "int_lib.h"
17 /* Returns: arithmetic a >> b */
19 /* Precondition: 0 <= b < bits_in_dword */
21 ARM_EABI_FNALIAS(lasr, ashrdi3)
23 COMPILER_RT_ABI di_int
24 __ashrdi3(di_int a, si_int b)
26 const int bits_in_word = (int)(sizeof(si_int) * CHAR_BIT);
27 dwords input;
28 dwords result;
29 input.all = a;
30 if (b & bits_in_word) /* bits_in_word <= b < bits_in_dword */
32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_word - 1);
34 result.s.low = input.s.high >> (b - bits_in_word);
36 else /* 0 <= b < bits_in_word */
38 if (b == 0)
39 return a;
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
43 return result.all;