blob: 6b1ea923b778622ea4b46ed3517d042b9343bd64 [file] [log] [blame]
Edward O'Callaghan2bf62722009-08-05 04:02:56 +00001/* ===-- lshrdi3.c - Implement __lshrdi3 -----------------------------------===
2 *
3 * The LLVM Compiler Infrastructure
4 *
Howard Hinnant9ad441f2010-11-16 22:13:33 +00005 * This file is dual licensed under the MIT and the University of Illinois Open
6 * Source Licenses. See LICENSE.TXT for details.
Edward O'Callaghan2bf62722009-08-05 04:02:56 +00007 *
8 * ===----------------------------------------------------------------------===
9 *
10 * This file implements __lshrdi3 for the compiler_rt library.
11 *
12 * ===----------------------------------------------------------------------===
13 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000014
15#include "int_lib.h"
16
Edward O'Callaghan2bf62722009-08-05 04:02:56 +000017/* Returns: logical a >> b */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000018
Edward O'Callaghan2bf62722009-08-05 04:02:56 +000019/* Precondition: 0 <= b < bits_in_dword */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000020
Chandler Carruth0193b742012-06-22 21:09:15 +000021ARM_EABI_FNALIAS(llsr, lshrdi3)
Anton Korobeynikov37b97d12011-04-19 17:51:24 +000022
Anton Korobeynikov1c5f89b2011-04-19 17:52:09 +000023COMPILER_RT_ABI di_int
Daniel Dunbarb3a69012009-06-26 16:47:03 +000024__lshrdi3(di_int a, si_int b)
25{
26 const int bits_in_word = (int)(sizeof(si_int) * CHAR_BIT);
27 udwords input;
28 udwords result;
29 input.all = a;
Edward O'Callaghan2bf62722009-08-05 04:02:56 +000030 if (b & bits_in_word) /* bits_in_word <= b < bits_in_dword */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000031 {
Edward O'Callaghan8bf1e092009-08-09 18:41:02 +000032 result.s.high = 0;
33 result.s.low = input.s.high >> (b - bits_in_word);
Daniel Dunbarb3a69012009-06-26 16:47:03 +000034 }
Edward O'Callaghan2bf62722009-08-05 04:02:56 +000035 else /* 0 <= b < bits_in_word */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000036 {
37 if (b == 0)
38 return a;
Edward O'Callaghan8bf1e092009-08-09 18:41:02 +000039 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
Daniel Dunbarb3a69012009-06-26 16:47:03 +000041 }
42 return result.all;
43}