blob: b3b31bf005e1ad713cd1e606a93eb1b03fa66338 [file] [log] [blame]
Edward O'Callaghan4856eef2009-08-05 04:02:56 +00001/* ===-- lshrdi3.c - Implement __lshrdi3 -----------------------------------===
2 *
3 * The LLVM Compiler Infrastructure
4 *
5 * This file is distributed under the University of Illinois Open Source
6 * License. See LICENSE.TXT for details.
7 *
8 * ===----------------------------------------------------------------------===
9 *
10 * This file implements __lshrdi3 for the compiler_rt library.
11 *
12 * ===----------------------------------------------------------------------===
13 */
Daniel Dunbarfd089992009-06-26 16:47:03 +000014
15#include "int_lib.h"
16
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000017/* Returns: logical a >> b */
Daniel Dunbarfd089992009-06-26 16:47:03 +000018
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000019/* Precondition: 0 <= b < bits_in_dword */
Daniel Dunbarfd089992009-06-26 16:47:03 +000020
21di_int
22__lshrdi3(di_int a, si_int b)
23{
24 const int bits_in_word = (int)(sizeof(si_int) * CHAR_BIT);
25 udwords input;
26 udwords result;
27 input.all = a;
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000028 if (b & bits_in_word) /* bits_in_word <= b < bits_in_dword */
Daniel Dunbarfd089992009-06-26 16:47:03 +000029 {
30 result.high = 0;
31 result.low = input.high >> (b - bits_in_word);
32 }
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000033 else /* 0 <= b < bits_in_word */
Daniel Dunbarfd089992009-06-26 16:47:03 +000034 {
35 if (b == 0)
36 return a;
37 result.high = input.high >> b;
38 result.low = (input.high << (bits_in_word - b)) | (input.low >> b);
39 }
40 return result.all;
41}