2009-08-06 03:06:50 +08:00
|
|
|
/* ===-- addvti3.c - Implement __addvti3 -----------------------------------===
|
|
|
|
*
|
2019-01-19 18:56:40 +08:00
|
|
|
* 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
|
2009-08-06 03:06:50 +08:00
|
|
|
*
|
|
|
|
* ===----------------------------------------------------------------------===
|
|
|
|
*
|
|
|
|
* This file implements __addvti3 for the compiler_rt library.
|
|
|
|
*
|
|
|
|
* ===----------------------------------------------------------------------===
|
|
|
|
*/
|
2009-06-27 00:47:03 +08:00
|
|
|
|
|
|
|
#include "int_lib.h"
|
|
|
|
|
2014-02-22 07:53:03 +08:00
|
|
|
#ifdef CRT_HAS_128BIT
|
2012-06-23 05:09:22 +08:00
|
|
|
|
2009-08-06 03:06:50 +08:00
|
|
|
/* Returns: a + b */
|
2009-06-27 00:47:03 +08:00
|
|
|
|
2009-08-06 03:06:50 +08:00
|
|
|
/* Effects: aborts if a + b overflows */
|
2009-06-27 00:47:03 +08:00
|
|
|
|
2014-03-01 23:30:50 +08:00
|
|
|
COMPILER_RT_ABI ti_int
|
2009-06-27 00:47:03 +08:00
|
|
|
__addvti3(ti_int a, ti_int b)
|
|
|
|
{
|
2014-11-13 07:01:24 +08:00
|
|
|
ti_int s = (tu_int) a + (tu_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;
|
|
|
|
}
|
|
|
|
|
2014-02-22 07:53:03 +08:00
|
|
|
#endif /* CRT_HAS_128BIT */
|