Edward O'Callaghan | 5583632 | 2009-08-07 20:30:09 +0000 | [diff] [blame] | 1 | /* ====-- ashldi3.c - Implement __ashldi3 -----------------------------------=== |
| 2 | * |
| 3 | * The LLVM Compiler Infrastructure |
| 4 | * |
Howard Hinnant | 5b791f6 | 2010-11-16 22:13:33 +0000 | [diff] [blame] | 5 | * This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | * Source Licenses. See LICENSE.TXT for details. |
Edward O'Callaghan | 5583632 | 2009-08-07 20:30:09 +0000 | [diff] [blame] | 7 | * |
| 8 | * ===----------------------------------------------------------------------=== |
| 9 | * |
| 10 | * This file implements __ashldi3 for the compiler_rt library. |
| 11 | * |
| 12 | * ===----------------------------------------------------------------------=== |
| 13 | */ |
Anton Korobeynikov | e63da93 | 2011-04-19 17:52:09 +0000 | [diff] [blame^] | 14 | #include "abi.h" |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 15 | |
| 16 | #include "int_lib.h" |
| 17 | |
Edward O'Callaghan | 5583632 | 2009-08-07 20:30:09 +0000 | [diff] [blame] | 18 | /* Returns: a << b */ |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 19 | |
Edward O'Callaghan | 5583632 | 2009-08-07 20:30:09 +0000 | [diff] [blame] | 20 | /* Precondition: 0 <= b < bits_in_dword */ |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 21 | |
Anton Korobeynikov | 75e3c19 | 2011-04-19 17:51:24 +0000 | [diff] [blame] | 22 | ARM_EABI_FNALIAS(llsl, ashldi3); |
| 23 | |
Anton Korobeynikov | e63da93 | 2011-04-19 17:52:09 +0000 | [diff] [blame^] | 24 | COMPILER_RT_ABI di_int |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 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; |
Edward O'Callaghan | 5583632 | 2009-08-07 20:30:09 +0000 | [diff] [blame] | 31 | if (b & bits_in_word) /* bits_in_word <= b < bits_in_dword */ |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 32 | { |
Edward O'Callaghan | ccf4813 | 2009-08-09 18:41:02 +0000 | [diff] [blame] | 33 | result.s.low = 0; |
| 34 | result.s.high = input.s.low << (b - bits_in_word); |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 35 | } |
Edward O'Callaghan | 5583632 | 2009-08-07 20:30:09 +0000 | [diff] [blame] | 36 | else /* 0 <= b < bits_in_word */ |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 37 | { |
| 38 | if (b == 0) |
| 39 | return a; |
Edward O'Callaghan | ccf4813 | 2009-08-09 18:41:02 +0000 | [diff] [blame] | 40 | result.s.low = input.s.low << b; |
| 41 | result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b)); |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 42 | } |
| 43 | return result.all; |
| 44 | } |