2019-04-29 06:47:49 +08:00
|
|
|
//===-- divsi3.c - Implement __divsi3 -------------------------------------===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements __divsi3 for the compiler_rt library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-06-27 00:47:03 +08:00
|
|
|
|
|
|
|
#include "int_lib.h"
|
|
|
|
|
2019-04-29 06:47:49 +08:00
|
|
|
// Returns: a / b
|
2009-06-27 00:47:03 +08:00
|
|
|
|
2020-08-30 21:12:44 +08:00
|
|
|
#define fixint_t si_int
|
|
|
|
#define fixuint_t su_int
|
|
|
|
// On CPUs without unsigned hardware division support,
|
|
|
|
// this calls __udivsi3 (notice the cast to su_int).
|
|
|
|
// On CPUs with unsigned hardware division support,
|
|
|
|
// this uses the unsigned division instruction.
|
|
|
|
#define COMPUTE_UDIV(a, b) ((su_int)(a) / (su_int)(b))
|
|
|
|
#include "int_div_impl.inc"
|
|
|
|
|
|
|
|
COMPILER_RT_ABI si_int __divsi3(si_int a, si_int b) { return __divXi3(a, b); }
|
2017-05-17 00:41:37 +08:00
|
|
|
|
|
|
|
#if defined(__ARM_EABI__)
|
2019-04-29 08:46:23 +08:00
|
|
|
COMPILER_RT_ALIAS(__divsi3, __aeabi_idiv)
|
2017-05-17 00:41:37 +08:00
|
|
|
#endif
|