blob: 914b971aca3b44368cddbd21ab42095ddb697f08 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Paul Gortmaker527581b2016-08-21 15:58:15 -04002#include <linux/export.h>
Ralf Baechle72fbfb262006-06-07 13:25:37 +01003
4#include "libgcc.h"
5
Harvey Huntaedcfbe2016-05-25 11:06:35 +01006long long notrace __lshrdi3(long long u, word_type b)
Ralf Baechle72fbfb262006-06-07 13:25:37 +01007{
8 DWunion uu, w;
9 word_type bm;
10
11 if (b == 0)
12 return u;
13
14 uu.ll = u;
15 bm = 32 - b;
16
17 if (bm <= 0) {
18 w.s.high = 0;
19 w.s.low = (unsigned int) uu.s.high >> -bm;
20 } else {
21 const unsigned int carries = (unsigned int) uu.s.high << bm;
22
23 w.s.high = (unsigned int) uu.s.high >> b;
24 w.s.low = ((unsigned int) uu.s.low >> b) | carries;
25 }
26
27 return w.ll;
28}
29
30EXPORT_SYMBOL(__lshrdi3);