|
| 1 | +//===-- int_lib.h - configuration header for compiler-rt -----------------===// |
| 2 | +// |
| 3 | +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | +// See https://llvm.org/LICENSE.txt for license information. |
| 5 | +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | +// |
| 7 | +//===----------------------------------------------------------------------===// |
| 8 | +// |
| 9 | +// This file is a configuration header for compiler-rt. |
| 10 | +// This file is not part of the interface of this library. |
| 11 | +// |
| 12 | +//===----------------------------------------------------------------------===// |
| 13 | + |
| 14 | +#ifndef INT_LIB_H |
| 15 | +#define INT_LIB_H |
| 16 | + |
| 17 | +// Assumption: Signed integral is 2's complement. |
| 18 | +// Assumption: Right shift of signed negative is arithmetic shift. |
| 19 | +// Assumption: Endianness is little or big (not mixed). |
| 20 | + |
| 21 | +// ABI macro definitions |
| 22 | + |
| 23 | +#if __ARM_EABI__ |
| 24 | +#ifdef COMPILER_RT_ARMHF_TARGET |
| 25 | +#define COMPILER_RT_ABI |
| 26 | +#else |
| 27 | +#define COMPILER_RT_ABI __attribute__((__pcs__("aapcs"))) |
| 28 | +#endif |
| 29 | +#else |
| 30 | +#define COMPILER_RT_ABI |
| 31 | +#endif |
| 32 | + |
| 33 | +#define AEABI_RTABI __attribute__((__pcs__("aapcs"))) |
| 34 | + |
| 35 | +#if defined(_MSC_VER) && !defined(__clang__) |
| 36 | +#define ALWAYS_INLINE __forceinline |
| 37 | +#define NOINLINE __declspec(noinline) |
| 38 | +#define NORETURN __declspec(noreturn) |
| 39 | +#define UNUSED |
| 40 | +#else |
| 41 | +#define ALWAYS_INLINE __attribute__((always_inline)) |
| 42 | +#define NOINLINE __attribute__((noinline)) |
| 43 | +#define NORETURN __attribute__((noreturn)) |
| 44 | +#define UNUSED __attribute__((unused)) |
| 45 | +#endif |
| 46 | + |
| 47 | +#define STR(a) #a |
| 48 | +#define XSTR(a) STR(a) |
| 49 | +#define SYMBOL_NAME(name) XSTR(__USER_LABEL_PREFIX__) #name |
| 50 | + |
| 51 | +#if defined(__ELF__) || defined(__MINGW32__) || defined(__wasm__) |
| 52 | +#define COMPILER_RT_ALIAS(name, aliasname) \ |
| 53 | + COMPILER_RT_ABI __typeof(name) aliasname __attribute__((__alias__(#name))); |
| 54 | +#elif defined(__APPLE__) |
| 55 | +#if defined(VISIBILITY_HIDDEN) |
| 56 | +#define COMPILER_RT_ALIAS_VISIBILITY(name) \ |
| 57 | + __asm__(".private_extern " SYMBOL_NAME(name)); |
| 58 | +#else |
| 59 | +#define COMPILER_RT_ALIAS_VISIBILITY(name) |
| 60 | +#endif |
| 61 | +#define COMPILER_RT_ALIAS(name, aliasname) \ |
| 62 | + __asm__(".globl " SYMBOL_NAME(aliasname)); \ |
| 63 | + COMPILER_RT_ALIAS_VISIBILITY(aliasname) \ |
| 64 | + __asm__(SYMBOL_NAME(aliasname) " = " SYMBOL_NAME(name)); \ |
| 65 | + COMPILER_RT_ABI __typeof(name) aliasname; |
| 66 | +#elif defined(_WIN32) |
| 67 | +#define COMPILER_RT_ALIAS(name, aliasname) |
| 68 | +#else |
| 69 | +#error Unsupported target |
| 70 | +#endif |
| 71 | + |
| 72 | +#if defined(__NetBSD__) && (defined(_KERNEL) || defined(_STANDALONE)) |
| 73 | +// |
| 74 | +// Kernel and boot environment can't use normal headers, |
| 75 | +// so use the equivalent system headers. |
| 76 | +// |
| 77 | +#include <machine/limits.h> |
| 78 | +#include <sys/stdint.h> |
| 79 | +#include <sys/types.h> |
| 80 | +#else |
| 81 | +// Include the standard compiler builtin headers we use functionality from. |
| 82 | +#include <float.h> |
| 83 | +#include <limits.h> |
| 84 | +#include <stdbool.h> |
| 85 | +#include <stdint.h> |
| 86 | +#endif |
| 87 | + |
| 88 | +// Include the commonly used internal type definitions. |
| 89 | +#include "int_types.h" |
| 90 | + |
| 91 | +// Include internal utility function declarations. |
| 92 | +#include "int_util.h" |
| 93 | + |
| 94 | +COMPILER_RT_ABI si_int __paritysi2(si_int a); |
| 95 | +COMPILER_RT_ABI si_int __paritydi2(di_int a); |
| 96 | + |
| 97 | +COMPILER_RT_ABI di_int __divdi3(di_int a, di_int b); |
| 98 | +COMPILER_RT_ABI si_int __divsi3(si_int a, si_int b); |
| 99 | +COMPILER_RT_ABI su_int __udivsi3(su_int n, su_int d); |
| 100 | + |
| 101 | +COMPILER_RT_ABI su_int __udivmodsi4(su_int a, su_int b, su_int *rem); |
| 102 | +COMPILER_RT_ABI du_int __udivmoddi4(du_int a, du_int b, du_int *rem); |
| 103 | +#ifdef CRT_HAS_128BIT |
| 104 | +COMPILER_RT_ABI si_int __clzti2(ti_int a); |
| 105 | +COMPILER_RT_ABI tu_int __udivmodti4(tu_int a, tu_int b, tu_int *rem); |
| 106 | +#endif |
| 107 | + |
| 108 | +// Definitions for builtins unavailable on MSVC |
| 109 | +#if defined(_MSC_VER) && !defined(__clang__) |
| 110 | +#include <intrin.h> |
| 111 | + |
| 112 | +uint32_t __inline __builtin_ctz(uint32_t value) { |
| 113 | + unsigned long trailing_zero = 0; |
| 114 | + if (_BitScanForward(&trailing_zero, value)) |
| 115 | + return trailing_zero; |
| 116 | + return 32; |
| 117 | +} |
| 118 | + |
| 119 | +uint32_t __inline __builtin_clz(uint32_t value) { |
| 120 | + unsigned long leading_zero = 0; |
| 121 | + if (_BitScanReverse(&leading_zero, value)) |
| 122 | + return 31 - leading_zero; |
| 123 | + return 32; |
| 124 | +} |
| 125 | + |
| 126 | +#if defined(_M_ARM) || defined(_M_X64) |
| 127 | +uint32_t __inline __builtin_clzll(uint64_t value) { |
| 128 | + unsigned long leading_zero = 0; |
| 129 | + if (_BitScanReverse64(&leading_zero, value)) |
| 130 | + return 63 - leading_zero; |
| 131 | + return 64; |
| 132 | +} |
| 133 | +#else |
| 134 | +uint32_t __inline __builtin_clzll(uint64_t value) { |
| 135 | + if (value == 0) |
| 136 | + return 64; |
| 137 | + uint32_t msh = (uint32_t)(value >> 32); |
| 138 | + uint32_t lsh = (uint32_t)(value & 0xFFFFFFFF); |
| 139 | + if (msh != 0) |
| 140 | + return __builtin_clz(msh); |
| 141 | + return 32 + __builtin_clz(lsh); |
| 142 | +} |
| 143 | +#endif |
| 144 | + |
| 145 | +#define __builtin_clzl __builtin_clzll |
| 146 | +#endif // defined(_MSC_VER) && !defined(__clang__) |
| 147 | + |
| 148 | +#endif // INT_LIB_H |
0 commit comments