]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - contrib/compiler-rt/lib/ashldi3.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 / ashldi3.c
1 /* ====-- ashldi3.c - Implement __ashldi3 -----------------------------------===
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 __ashldi3 for the compiler_rt library.
11  *
12  * ===----------------------------------------------------------------------===
13  */
14 #include "abi.h"
15
16 #include "int_lib.h"
17
18 /* Returns: a << b */
19
20 /* Precondition:  0 <= b < bits_in_dword */
21
22 ARM_EABI_FNALIAS(llsl, ashldi3);
23
24 COMPILER_RT_ABI di_int
25 __ashldi3(di_int a, si_int b)
26 {
27     const int bits_in_word = (int)(sizeof(si_int) * CHAR_BIT);
28     dwords input;
29     dwords result;
30     input.all = a;
31     if (b & bits_in_word)  /* bits_in_word <= b < bits_in_dword */
32     {
33         result.s.low = 0;
34         result.s.high = input.s.low << (b - bits_in_word);
35     }
36     else  /* 0 <= b < bits_in_word */
37     {
38         if (b == 0)
39             return a;
40         result.s.low  = input.s.low << b;
41         result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
42     }
43     return result.all;
44 }