2009-08-05 12:02:56 +08:00
|
|
|
/* ===-- subvdi3.c - Implement __subvdi3 -----------------------------------===
|
|
|
|
*
|
2011-04-20 01:52:09 +08:00
|
|
|
* The LLVM Compiler Infrastructure
|
2009-08-05 12:02:56 +08:00
|
|
|
*
|
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-05 12:02:56 +08:00
|
|
|
*
|
|
|
|
* ===----------------------------------------------------------------------===
|
|
|
|
*
|
|
|
|
* This file implements __subvdi3 for the compiler_rt library.
|
|
|
|
*
|
|
|
|
* ===----------------------------------------------------------------------===
|
|
|
|
*/
|
2009-06-27 00:47:03 +08:00
|
|
|
|
|
|
|
#include "int_lib.h"
|
|
|
|
|
2009-08-05 12:02:56 +08:00
|
|
|
/* Returns: a - b */
|
2009-06-27 00:47:03 +08:00
|
|
|
|
2009-08-05 12:02:56 +08:00
|
|
|
/* Effects: aborts if a - b overflows */
|
2009-06-27 00:47:03 +08:00
|
|
|
|
2011-04-20 01:52:09 +08:00
|
|
|
COMPILER_RT_ABI di_int
|
2009-06-27 00:47:03 +08:00
|
|
|
__subvdi3(di_int a, di_int b)
|
|
|
|
{
|
2014-11-13 07:01:24 +08:00
|
|
|
di_int s = (du_int) a - (du_int) b;
|
2009-06-27 00:47:03 +08:00
|
|
|
if (b >= 0)
|
|
|
|
{
|
|
|
|
if (s > a)
|
2010-04-01 01:00:45 +08:00
|
|
|
compilerrt_abort();
|
2009-06-27 00:47:03 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (s <= a)
|
2010-04-01 01:00:45 +08:00
|
|
|
compilerrt_abort();
|
2009-06-27 00:47:03 +08:00
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|