Daniel Dunbar | 2476873 | 2009-10-27 17:48:46 +0000 | [diff] [blame] | 1 | /* ===-- int_lib.h - configuration header for compiler-rt -----------------=== |
Edward O'Callaghan | df72046 | 2009-08-05 01:47:29 +0000 | [diff] [blame] | 2 | * |
| 3 | * The LLVM Compiler Infrastructure |
| 4 | * |
Howard Hinnant | 5b791f6 | 2010-11-16 22:13:33 +0000 | [diff] [blame] | 5 | * This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | * Source Licenses. See LICENSE.TXT for details. |
Edward O'Callaghan | df72046 | 2009-08-05 01:47:29 +0000 | [diff] [blame] | 7 | * |
| 8 | * ===----------------------------------------------------------------------=== |
| 9 | * |
Daniel Dunbar | 2476873 | 2009-10-27 17:48:46 +0000 | [diff] [blame] | 10 | * This file is a configuration header for compiler-rt. |
Edward O'Callaghan | df72046 | 2009-08-05 01:47:29 +0000 | [diff] [blame] | 11 | * This file is not part of the interface of this library. |
| 12 | * |
| 13 | * ===----------------------------------------------------------------------=== |
| 14 | */ |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 15 | |
| 16 | #ifndef INT_LIB_H |
| 17 | #define INT_LIB_H |
| 18 | |
Daniel Dunbar | cc675f4 | 2011-11-15 18:56:21 +0000 | [diff] [blame] | 19 | /* Assumption: Signed integral is 2's complement. */ |
| 20 | /* Assumption: Right shift of signed negative is arithmetic shift. */ |
| 21 | /* Assumption: Endianness is little or big (not mixed). */ |
| 22 | |
Saleem Abdulrasool | 0d6094b | 2015-08-21 04:39:52 +0000 | [diff] [blame] | 23 | #if defined(__ELF__) |
Josh Gao | 772527c | 2015-08-21 02:51:17 +0000 | [diff] [blame] | 24 | #define FNALIAS(alias_name, original_name) \ |
| 25 | void alias_name() __attribute__((alias(#original_name))) |
Saleem Abdulrasool | 0d6094b | 2015-08-21 04:39:52 +0000 | [diff] [blame] | 26 | #else |
| 27 | #define FNALIAS(alias, name) _Pragma("GCC error(\"alias unsupported on this file format\")") |
| 28 | #endif |
Josh Gao | 772527c | 2015-08-21 02:51:17 +0000 | [diff] [blame] | 29 | |
Daniel Dunbar | b6f75f7 | 2011-11-15 18:34:44 +0000 | [diff] [blame] | 30 | /* ABI macro definitions */ |
| 31 | |
| 32 | #if __ARM_EABI__ |
| 33 | # define ARM_EABI_FNALIAS(aeabi_name, name) \ |
| 34 | void __aeabi_##aeabi_name() __attribute__((alias("__" #name))); |
Saleem Abdulrasool | b6a85b4 | 2014-09-06 21:33:55 +0000 | [diff] [blame] | 35 | # define COMPILER_RT_ABI __attribute__((pcs("aapcs"))) |
Daniel Dunbar | b6f75f7 | 2011-11-15 18:34:44 +0000 | [diff] [blame] | 36 | #else |
| 37 | # define ARM_EABI_FNALIAS(aeabi_name, name) |
Saleem Abdulrasool | e6f9652 | 2015-10-06 04:33:05 +0000 | [diff] [blame^] | 38 | # if defined(__arm__) && defined(_WIN32) && (!defined(_MSC_VER) || defined(__clang__)) |
Saleem Abdulrasool | a3b3952 | 2015-05-22 21:47:24 +0000 | [diff] [blame] | 39 | # define COMPILER_RT_ABI __attribute__((pcs("aapcs"))) |
| 40 | # else |
| 41 | # define COMPILER_RT_ABI |
| 42 | # endif |
Daniel Dunbar | b6f75f7 | 2011-11-15 18:34:44 +0000 | [diff] [blame] | 43 | #endif |
| 44 | |
Saleem Abdulrasool | e6f9652 | 2015-10-06 04:33:05 +0000 | [diff] [blame^] | 45 | #ifdef _MSC_VER |
| 46 | #define NOINLINE __declspec(noinline) |
| 47 | #define NORETURN __declspec(noreturn) |
| 48 | #define UNUSED |
| 49 | #else |
| 50 | #define NOINLINE __attribute__((noinline)) |
| 51 | #define NORETURN __attribute__((noreturn)) |
| 52 | #define UNUSED __attribute__((unused)) |
| 53 | #endif |
| 54 | |
Joerg Sonnenberger | 24f4a7d | 2013-12-03 16:19:14 +0000 | [diff] [blame] | 55 | #if defined(__NetBSD__) && (defined(_KERNEL) || defined(_STANDALONE)) |
| 56 | /* |
| 57 | * Kernel and boot environment can't use normal headers, |
| 58 | * so use the equivalent system headers. |
| 59 | */ |
| 60 | # include <machine/limits.h> |
| 61 | # include <sys/stdint.h> |
| 62 | # include <sys/types.h> |
| 63 | #else |
Daniel Dunbar | 7205b23 | 2011-11-16 00:20:36 +0000 | [diff] [blame] | 64 | /* Include the standard compiler builtin headers we use functionality from. */ |
Joerg Sonnenberger | 24f4a7d | 2013-12-03 16:19:14 +0000 | [diff] [blame] | 65 | # include <limits.h> |
| 66 | # include <stdint.h> |
| 67 | # include <stdbool.h> |
| 68 | # include <float.h> |
| 69 | #endif |
Daniel Dunbar | 7205b23 | 2011-11-16 00:20:36 +0000 | [diff] [blame] | 70 | |
Daniel Dunbar | ad4f982 | 2011-11-15 18:56:13 +0000 | [diff] [blame] | 71 | /* Include the commonly used internal type definitions. */ |
| 72 | #include "int_types.h" |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 73 | |
Daniel Dunbar | 2b88e03 | 2011-11-16 01:19:19 +0000 | [diff] [blame] | 74 | /* Include internal utility function declarations. */ |
| 75 | #include "int_util.h" |
| 76 | |
Joerg Sonnenberger | 6e99daa | 2014-03-01 15:30:50 +0000 | [diff] [blame] | 77 | COMPILER_RT_ABI si_int __paritysi2(si_int a); |
| 78 | COMPILER_RT_ABI si_int __paritydi2(di_int a); |
| 79 | |
| 80 | COMPILER_RT_ABI di_int __divdi3(di_int a, di_int b); |
| 81 | COMPILER_RT_ABI si_int __divsi3(si_int a, si_int b); |
| 82 | COMPILER_RT_ABI su_int __udivsi3(su_int n, su_int d); |
| 83 | |
| 84 | COMPILER_RT_ABI su_int __udivmodsi4(su_int a, su_int b, su_int* rem); |
| 85 | COMPILER_RT_ABI du_int __udivmoddi4(du_int a, du_int b, du_int* rem); |
| 86 | #ifdef CRT_HAS_128BIT |
Joerg Sonnenberger | 7e6a314 | 2014-03-01 15:57:30 +0000 | [diff] [blame] | 87 | COMPILER_RT_ABI si_int __clzti2(ti_int a); |
Joerg Sonnenberger | 6e99daa | 2014-03-01 15:30:50 +0000 | [diff] [blame] | 88 | COMPILER_RT_ABI tu_int __udivmodti4(tu_int a, tu_int b, tu_int* rem); |
| 89 | #endif |
| 90 | |
Edward O'Callaghan | 7a6cb5f | 2009-08-05 19:57:20 +0000 | [diff] [blame] | 91 | #endif /* INT_LIB_H */ |