2009-08-08 04:30:09 +08:00
|
|
|
/* ===-- absvsi2.c - Implement __absvsi2 -----------------------------------===
|
|
|
|
*
|
|
|
|
* 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 __absvsi2 for the compiler_rt library.
|
|
|
|
*
|
|
|
|
* ===----------------------------------------------------------------------===
|
2011-04-20 01:52:09 +08:00
|
|
|
*/
|
2009-06-27 00:47:03 +08:00
|
|
|
|
|
|
|
#include "int_lib.h"
|
|
|
|
|
2009-08-08 04:30:09 +08:00
|
|
|
/* Returns: absolute value */
|
2009-06-27 00:47:03 +08:00
|
|
|
|
2009-08-08 04:30:09 +08:00
|
|
|
/* Effects: aborts if abs(x) < 0 */
|
2009-06-27 00:47:03 +08:00
|
|
|
|
2011-04-20 01:52:09 +08:00
|
|
|
COMPILER_RT_ABI si_int
|
2009-06-27 00:47:03 +08:00
|
|
|
__absvsi2(si_int a)
|
|
|
|
{
|
|
|
|
const int N = (int)(sizeof(si_int) * CHAR_BIT);
|
|
|
|
if (a == (1 << (N-1)))
|
2010-04-01 01:00:45 +08:00
|
|
|
compilerrt_abort();
|
2009-06-27 00:47:03 +08:00
|
|
|
const si_int t = a >> (N - 1);
|
|
|
|
return (a ^ t) - t;
|
|
|
|
}
|