blob: 94d46f1b46226ed035b6ff5ea2ce3f5c1216b2c0 [file] [log] [blame]
Edward O'Callaghan37a6a452009-08-07 20:30:09 +00001/*===-- ashrdi3.c - Implement __ashrdi3 -----------------------------------===
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'Callaghan37a6a452009-08-07 20:30:09 +00007 *
8 * ===----------------------------------------------------------------------===
9 *
10 * This file implements __ashrdi3 for the compiler_rt library.
11 *
12 * ===----------------------------------------------------------------------===
13 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000014
15#include "int_lib.h"
16
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000017/* Returns: arithmetic a >> b */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000018
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000019/* Precondition: 0 <= b < bits_in_dword */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000020
21di_int
22__ashrdi3(di_int a, si_int b)
23{
24 const int bits_in_word = (int)(sizeof(si_int) * CHAR_BIT);
25 dwords input;
26 dwords result;
27 input.all = a;
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000028 if (b & bits_in_word) /* bits_in_word <= b < bits_in_dword */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000029 {
Edward O'Callaghan8bf1e092009-08-09 18:41:02 +000030 /* result.s.high = input.s.high < 0 ? -1 : 0 */
31 result.s.high = input.s.high >> (bits_in_word - 1);
32 result.s.low = input.s.high >> (b - bits_in_word);
Daniel Dunbarb3a69012009-06-26 16:47:03 +000033 }
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000034 else /* 0 <= b < bits_in_word */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000035 {
36 if (b == 0)
37 return a;
Edward O'Callaghan8bf1e092009-08-09 18:41:02 +000038 result.s.high = input.s.high >> b;
39 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
Daniel Dunbarb3a69012009-06-26 16:47:03 +000040 }
41 return result.all;
42}