1 1.1 joerg /* ===-- divdi3.c - Implement __divdi3 -------------------------------------=== 2 1.1 joerg * 3 1.1 joerg * The LLVM Compiler Infrastructure 4 1.1 joerg * 5 1.1 joerg * This file is dual licensed under the MIT and the University of Illinois Open 6 1.1 joerg * Source Licenses. See LICENSE.TXT for details. 7 1.1 joerg * 8 1.1 joerg * ===----------------------------------------------------------------------=== 9 1.1 joerg * 10 1.1 joerg * This file implements __divdi3 for the compiler_rt library. 11 1.1 joerg * 12 1.1 joerg * ===----------------------------------------------------------------------=== 13 1.1 joerg */ 14 1.1 joerg 15 1.1 joerg #include "int_lib.h" 16 1.1 joerg 17 1.1 joerg /* Returns: a / b */ 18 1.1 joerg 19 1.1 joerg COMPILER_RT_ABI di_int 20 1.1 joerg __divdi3(di_int a, di_int b) 21 1.1 joerg { 22 1.1 joerg const int bits_in_dword_m1 = (int)(sizeof(di_int) * CHAR_BIT) - 1; 23 1.1 joerg di_int s_a = a >> bits_in_dword_m1; /* s_a = a < 0 ? -1 : 0 */ 24 1.1 joerg di_int s_b = b >> bits_in_dword_m1; /* s_b = b < 0 ? -1 : 0 */ 25 1.1 joerg a = (a ^ s_a) - s_a; /* negate if s_a == -1 */ 26 1.1 joerg b = (b ^ s_b) - s_b; /* negate if s_b == -1 */ 27 1.1 joerg s_a ^= s_b; /*sign of quotient */ 28 1.1 joerg return (__udivmoddi4(a, b, (du_int*)0) ^ s_a) - s_a; /* negate if s_a == -1 */ 29 1.1 joerg } 30