diff options
author | Pascal Stumpf <pascal@cvs.openbsd.org> | 2016-09-05 11:36:24 +0000 |
---|---|---|
committer | Pascal Stumpf <pascal@cvs.openbsd.org> | 2016-09-05 11:36:24 +0000 |
commit | 655378bb3dd91f8a437ea1ae76418d3bc7a9ce81 (patch) | |
tree | dd8fc208f2e4ad444932d160a27907580cc022bf /lib/libcompiler_rt/divdi3.c | |
parent | afa2339506d84c1497f41a4b29b6624257b7253b (diff) |
Import libcompiler_rt 3.9.0, LLVM's replacement for libgcc.
This is the lib/builtin directory of the compiler-rt source tarball.
comments/ok patrick@, ok kettenis@
Diffstat (limited to 'lib/libcompiler_rt/divdi3.c')
-rw-r--r-- | lib/libcompiler_rt/divdi3.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/libcompiler_rt/divdi3.c b/lib/libcompiler_rt/divdi3.c new file mode 100644 index 00000000000..b8eebcb2046 --- /dev/null +++ b/lib/libcompiler_rt/divdi3.c @@ -0,0 +1,29 @@ +/* ===-- divdi3.c - Implement __divdi3 -------------------------------------=== + * + * The LLVM Compiler Infrastructure + * + * This file is dual licensed under the MIT and the University of Illinois Open + * Source Licenses. See LICENSE.TXT for details. + * + * ===----------------------------------------------------------------------=== + * + * This file implements __divdi3 for the compiler_rt library. + * + * ===----------------------------------------------------------------------=== + */ + +#include "int_lib.h" + +/* Returns: a / b */ + +COMPILER_RT_ABI di_int +__divdi3(di_int a, di_int b) +{ + const int bits_in_dword_m1 = (int)(sizeof(di_int) * CHAR_BIT) - 1; + di_int s_a = a >> bits_in_dword_m1; /* s_a = a < 0 ? -1 : 0 */ + di_int s_b = b >> bits_in_dword_m1; /* s_b = b < 0 ? -1 : 0 */ + a = (a ^ s_a) - s_a; /* negate if s_a == -1 */ + b = (b ^ s_b) - s_b; /* negate if s_b == -1 */ + s_a ^= s_b; /*sign of quotient */ + return (__udivmoddi4(a, b, (du_int*)0) ^ s_a) - s_a; /* negate if s_a == -1 */ +} |