2009-08-08 04:30:09 +08:00
|
|
|
/* ===-- divsi3.c - Implement __divsi3 -------------------------------------===
|
|
|
|
*
|
|
|
|
* The LLVM Compiler Infrastructure
|
|
|
|
*
|
2010-11-17 06:13:33 +08:00
|
|
|
* This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
* Source Licenses. See LICENSE.TXT for details.
|
2009-08-08 04:30:09 +08:00
|
|
|
*
|
|
|
|
* ===----------------------------------------------------------------------===
|
|
|
|
*
|
|
|
|
* This file implements __divsi3 for the compiler_rt library.
|
|
|
|
*
|
|
|
|
* ===----------------------------------------------------------------------===
|
|
|
|
*/
|
2011-04-20 01:52:09 +08:00
|
|
|
#include "abi.h"
|
2009-06-27 00:47:03 +08:00
|
|
|
|
|
|
|
#include "int_lib.h"
|
|
|
|
|
2011-04-20 01:52:09 +08:00
|
|
|
su_int COMPILER_RT_ABI __udivsi3(su_int n, su_int d);
|
2009-06-27 00:47:03 +08:00
|
|
|
|
2009-08-08 04:30:09 +08:00
|
|
|
/* Returns: a / b */
|
2009-06-27 00:47:03 +08:00
|
|
|
|
2011-04-20 01:51:24 +08:00
|
|
|
ARM_EABI_FNALIAS(idiv, divsi3);
|
|
|
|
|
2011-04-20 01:52:09 +08:00
|
|
|
COMPILER_RT_ABI si_int
|
2009-06-27 00:47:03 +08:00
|
|
|
__divsi3(si_int a, si_int b)
|
|
|
|
{
|
|
|
|
const int bits_in_word_m1 = (int)(sizeof(si_int) * CHAR_BIT) - 1;
|
2009-08-08 04:30:09 +08:00
|
|
|
si_int s_a = a >> bits_in_word_m1; /* s_a = a < 0 ? -1 : 0 */
|
|
|
|
si_int s_b = b >> bits_in_word_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 (__udivsi3(a, b) ^ s_a) - s_a; /* negate if s_a == -1 */
|
2009-06-27 00:47:03 +08:00
|
|
|
}
|