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) \ |
Eli Friedman | 0d586d0 | 2017-10-03 21:25:07 +0000 | [diff] [blame] | 25 | void alias_name() __attribute__((__alias__(#original_name))) |
| 26 | #define COMPILER_RT_ALIAS(aliasee) __attribute__((__alias__(#aliasee))) |
Saleem Abdulrasool | 0d6094b | 2015-08-21 04:39:52 +0000 | [diff] [blame] | 27 | #else |
| 28 | #define FNALIAS(alias, name) _Pragma("GCC error(\"alias unsupported on this file format\")") |
Eli Friedman | 0d586d0 | 2017-10-03 21:25:07 +0000 | [diff] [blame] | 29 | #define COMPILER_RT_ALIAS(aliasee) _Pragma("GCC error(\"alias unsupported on this file format\")") |
Saleem Abdulrasool | 0d6094b | 2015-08-21 04:39:52 +0000 | [diff] [blame] | 30 | #endif |
Josh Gao | 772527c | 2015-08-21 02:51:17 +0000 | [diff] [blame] | 31 | |
Daniel Dunbar | b6f75f7 | 2011-11-15 18:34:44 +0000 | [diff] [blame] | 32 | /* ABI macro definitions */ |
| 33 | |
| 34 | #if __ARM_EABI__ |
Weiming Zhao | d8ca741 | 2017-03-29 03:36:46 +0000 | [diff] [blame] | 35 | # ifdef COMPILER_RT_ARMHF_TARGET |
| 36 | # define COMPILER_RT_ABI |
| 37 | # else |
Saleem Abdulrasool | 44c4571 | 2017-05-16 04:17:12 +0000 | [diff] [blame] | 38 | # define COMPILER_RT_ABI __attribute__((__pcs__("aapcs"))) |
Weiming Zhao | d8ca741 | 2017-03-29 03:36:46 +0000 | [diff] [blame] | 39 | # endif |
Daniel Dunbar | b6f75f7 | 2011-11-15 18:34:44 +0000 | [diff] [blame] | 40 | #else |
Saleem Abdulrasool | 28e1b97 | 2016-04-20 17:43:40 +0000 | [diff] [blame] | 41 | # define COMPILER_RT_ABI |
Daniel Dunbar | b6f75f7 | 2011-11-15 18:34:44 +0000 | [diff] [blame] | 42 | #endif |
| 43 | |
Saleem Abdulrasool | 36ac5dd | 2017-05-16 16:41:37 +0000 | [diff] [blame] | 44 | #define AEABI_RTABI __attribute__((__pcs__("aapcs"))) |
| 45 | |
Saleem Abdulrasool | e6f9652 | 2015-10-06 04:33:05 +0000 | [diff] [blame] | 46 | #ifdef _MSC_VER |
Saleem Abdulrasool | e499715 | 2015-10-11 17:35:42 +0000 | [diff] [blame] | 47 | #define ALWAYS_INLINE __forceinline |
Saleem Abdulrasool | e6f9652 | 2015-10-06 04:33:05 +0000 | [diff] [blame] | 48 | #define NOINLINE __declspec(noinline) |
| 49 | #define NORETURN __declspec(noreturn) |
| 50 | #define UNUSED |
| 51 | #else |
Saleem Abdulrasool | e499715 | 2015-10-11 17:35:42 +0000 | [diff] [blame] | 52 | #define ALWAYS_INLINE __attribute__((always_inline)) |
Saleem Abdulrasool | e6f9652 | 2015-10-06 04:33:05 +0000 | [diff] [blame] | 53 | #define NOINLINE __attribute__((noinline)) |
| 54 | #define NORETURN __attribute__((noreturn)) |
| 55 | #define UNUSED __attribute__((unused)) |
| 56 | #endif |
| 57 | |
Joerg Sonnenberger | 24f4a7d | 2013-12-03 16:19:14 +0000 | [diff] [blame] | 58 | #if defined(__NetBSD__) && (defined(_KERNEL) || defined(_STANDALONE)) |
| 59 | /* |
| 60 | * Kernel and boot environment can't use normal headers, |
| 61 | * so use the equivalent system headers. |
| 62 | */ |
| 63 | # include <machine/limits.h> |
| 64 | # include <sys/stdint.h> |
| 65 | # include <sys/types.h> |
| 66 | #else |
Daniel Dunbar | 7205b23 | 2011-11-16 00:20:36 +0000 | [diff] [blame] | 67 | /* Include the standard compiler builtin headers we use functionality from. */ |
Joerg Sonnenberger | 24f4a7d | 2013-12-03 16:19:14 +0000 | [diff] [blame] | 68 | # include <limits.h> |
| 69 | # include <stdint.h> |
| 70 | # include <stdbool.h> |
| 71 | # include <float.h> |
| 72 | #endif |
Daniel Dunbar | 7205b23 | 2011-11-16 00:20:36 +0000 | [diff] [blame] | 73 | |
Daniel Dunbar | ad4f982 | 2011-11-15 18:56:13 +0000 | [diff] [blame] | 74 | /* Include the commonly used internal type definitions. */ |
| 75 | #include "int_types.h" |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 76 | |
Daniel Dunbar | 2b88e03 | 2011-11-16 01:19:19 +0000 | [diff] [blame] | 77 | /* Include internal utility function declarations. */ |
| 78 | #include "int_util.h" |
| 79 | |
Joerg Sonnenberger | 6e99daa | 2014-03-01 15:30:50 +0000 | [diff] [blame] | 80 | COMPILER_RT_ABI si_int __paritysi2(si_int a); |
| 81 | COMPILER_RT_ABI si_int __paritydi2(di_int a); |
| 82 | |
| 83 | COMPILER_RT_ABI di_int __divdi3(di_int a, di_int b); |
| 84 | COMPILER_RT_ABI si_int __divsi3(si_int a, si_int b); |
| 85 | COMPILER_RT_ABI su_int __udivsi3(su_int n, su_int d); |
| 86 | |
| 87 | COMPILER_RT_ABI su_int __udivmodsi4(su_int a, su_int b, su_int* rem); |
| 88 | COMPILER_RT_ABI du_int __udivmoddi4(du_int a, du_int b, du_int* rem); |
| 89 | #ifdef CRT_HAS_128BIT |
Joerg Sonnenberger | 7e6a314 | 2014-03-01 15:57:30 +0000 | [diff] [blame] | 90 | COMPILER_RT_ABI si_int __clzti2(ti_int a); |
Joerg Sonnenberger | 6e99daa | 2014-03-01 15:30:50 +0000 | [diff] [blame] | 91 | COMPILER_RT_ABI tu_int __udivmodti4(tu_int a, tu_int b, tu_int* rem); |
| 92 | #endif |
| 93 | |
Saleem Abdulrasool | 396e794 | 2015-10-07 02:58:11 +0000 | [diff] [blame] | 94 | /* Definitions for builtins unavailable on MSVC */ |
| 95 | #if defined(_MSC_VER) && !defined(__clang__) |
| 96 | #include <intrin.h> |
| 97 | |
| 98 | uint32_t __inline __builtin_ctz(uint32_t value) { |
Reid Kleckner | 1bd5e3e | 2016-08-01 18:39:27 +0000 | [diff] [blame] | 99 | unsigned long trailing_zero = 0; |
Saleem Abdulrasool | 396e794 | 2015-10-07 02:58:11 +0000 | [diff] [blame] | 100 | if (_BitScanForward(&trailing_zero, value)) |
| 101 | return trailing_zero; |
| 102 | return 32; |
| 103 | } |
| 104 | |
| 105 | uint32_t __inline __builtin_clz(uint32_t value) { |
Reid Kleckner | 1bd5e3e | 2016-08-01 18:39:27 +0000 | [diff] [blame] | 106 | unsigned long leading_zero = 0; |
Saleem Abdulrasool | 396e794 | 2015-10-07 02:58:11 +0000 | [diff] [blame] | 107 | if (_BitScanReverse(&leading_zero, value)) |
| 108 | return 31 - leading_zero; |
| 109 | return 32; |
| 110 | } |
| 111 | |
Saleem Abdulrasool | 9650c4a | 2015-10-10 17:57:37 +0000 | [diff] [blame] | 112 | #if defined(_M_ARM) || defined(_M_X64) |
Saleem Abdulrasool | 396e794 | 2015-10-07 02:58:11 +0000 | [diff] [blame] | 113 | uint32_t __inline __builtin_clzll(uint64_t value) { |
Reid Kleckner | 1bd5e3e | 2016-08-01 18:39:27 +0000 | [diff] [blame] | 114 | unsigned long leading_zero = 0; |
Saleem Abdulrasool | 396e794 | 2015-10-07 02:58:11 +0000 | [diff] [blame] | 115 | if (_BitScanReverse64(&leading_zero, value)) |
| 116 | return 63 - leading_zero; |
| 117 | return 64; |
| 118 | } |
Saleem Abdulrasool | 956365e | 2015-10-15 02:46:37 +0000 | [diff] [blame] | 119 | #else |
| 120 | uint32_t __inline __builtin_clzll(uint64_t value) { |
| 121 | if (value == 0) |
| 122 | return 64; |
| 123 | uint32_t msh = (uint32_t)(value >> 32); |
| 124 | uint32_t lsh = (uint32_t)(value & 0xFFFFFFFF); |
| 125 | if (msh != 0) |
| 126 | return __builtin_clz(msh); |
| 127 | return 32 + __builtin_clz(lsh); |
| 128 | } |
| 129 | #endif |
Saleem Abdulrasool | 396e794 | 2015-10-07 02:58:11 +0000 | [diff] [blame] | 130 | |
| 131 | #define __builtin_clzl __builtin_clzll |
Nico Weber | 6341a79 | 2015-12-22 17:22:25 +0000 | [diff] [blame] | 132 | #endif /* defined(_MSC_VER) && !defined(__clang__) */ |
Saleem Abdulrasool | 396e794 | 2015-10-07 02:58:11 +0000 | [diff] [blame] | 133 | |
Edward O'Callaghan | 7a6cb5f | 2009-08-05 19:57:20 +0000 | [diff] [blame] | 134 | #endif /* INT_LIB_H */ |