]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - contrib/compiler-rt/lib/lshrdi3.c
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.git] / contrib / compiler-rt / lib / lshrdi3.c
1 /* ===-- lshrdi3.c - Implement __lshrdi3 -----------------------------------===
2  *
3  *                     The LLVM Compiler Infrastructure
4  *
5  * This file is dual licensed under the MIT and the University of Illinois Open
6  * Source Licenses. See LICENSE.TXT for details.
7  *
8  * ===----------------------------------------------------------------------===
9  *
10  * This file implements __lshrdi3 for the compiler_rt library.
11  *
12  * ===----------------------------------------------------------------------===
13  */
14 #include "abi.h"
15
16 #include "int_lib.h"
17
18 /* Returns: logical a >> b */
19
20 /* Precondition:  0 <= b < bits_in_dword */
21
22 ARM_EABI_FNALIAS(llsr, lshrdi3);
23
24 COMPILER_RT_ABI di_int
25 __lshrdi3(di_int a, si_int b)
26 {
27     const int bits_in_word = (int)(sizeof(si_int) * CHAR_BIT);
28     udwords input;
29     udwords result;
30     input.all = a;
31     if (b & bits_in_word)  /* bits_in_word <= b < bits_in_dword */
32     {
33         result.s.high = 0;
34         result.s.low = input.s.high >> (b - bits_in_word);
35     }
36     else  /* 0 <= b < bits_in_word */
37     {
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);
42     }
43     return result.all;
44 }