]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/compiler-rt/lib/builtins/int_lib.h
MFV r323917: 8648 Fix range locking in ZIL commit codepath
[FreeBSD/FreeBSD.git] / contrib / compiler-rt / lib / builtins / int_lib.h
1 /* ===-- int_lib.h - configuration header for compiler-rt  -----------------===
2  *
3  *                     The LLVM Compiler Infrastructure
4  *
5  * This file is dual licensed under the MIT and the University of Illinois Open
6  * Source Licenses. See LICENSE.TXT for details.
7  *
8  * ===----------------------------------------------------------------------===
9  *
10  * This file is a configuration header for compiler-rt.
11  * This file is not part of the interface of this library.
12  *
13  * ===----------------------------------------------------------------------===
14  */
15
16 #ifndef INT_LIB_H
17 #define INT_LIB_H
18
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
23 #if defined(__ELF__)
24 #define FNALIAS(alias_name, original_name) \
25   void alias_name() __attribute__((alias(#original_name)))
26 #else
27 #define FNALIAS(alias, name) _Pragma("GCC error(\"alias unsupported on this file format\")")
28 #endif
29
30 /* ABI macro definitions */
31
32 #if __ARM_EABI__
33 # if defined(COMPILER_RT_ARMHF_TARGET) || (!defined(__clang__) && \
34      defined(__GNUC__) && (__GNUC__ < 4 || __GNUC__ == 4 && __GNUC_MINOR__ < 5))
35 /* The pcs attribute was introduced in GCC 4.5.0 */
36 #   define COMPILER_RT_ABI
37 # else
38 #   define COMPILER_RT_ABI __attribute__((__pcs__("aapcs")))
39 # endif
40 #else
41 # define COMPILER_RT_ABI
42 #endif
43
44 #define AEABI_RTABI __attribute__((__pcs__("aapcs")))
45
46 #ifdef _MSC_VER
47 #define ALWAYS_INLINE __forceinline
48 #define NOINLINE __declspec(noinline)
49 #define NORETURN __declspec(noreturn)
50 #define UNUSED
51 #else
52 #define ALWAYS_INLINE __attribute__((always_inline))
53 #define NOINLINE __attribute__((noinline))
54 #define NORETURN __attribute__((noreturn))
55 #define UNUSED __attribute__((unused))
56 #endif
57
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
67 /* Include the standard compiler builtin headers we use functionality from. */
68 #  include <limits.h>
69 #  include <stdint.h>
70 #  include <stdbool.h>
71 #  include <float.h>
72 #endif
73
74 /* Include the commonly used internal type definitions. */
75 #include "int_types.h"
76
77 /* Include internal utility function declarations. */
78 #include "int_util.h"
79
80 /*
81  * Workaround for LLVM bug 11663.  Prevent endless recursion in
82  * __c?zdi2(), where calls to __builtin_c?z() are expanded to
83  * __c?zdi2() instead of __c?zsi2().
84  *
85  * Instead of placing this workaround in c?zdi2.c, put it in this
86  * global header to prevent other C files from making the detour
87  * through __c?zdi2() as well.
88  *
89  * This problem has been observed on FreeBSD for sparc64 and
90  * mips64 with GCC 4.2.1, and for riscv with GCC 5.2.0.
91  * Presumably it's any version of GCC, and targeting an arch that
92  * does not have dedicated bit counting instructions.
93  */
94 #if defined(__FreeBSD__) && (defined(__sparc64__) || \
95     defined(__mips_n32) || defined(__mips_n64) || defined(__mips_o64) || \
96     defined(__riscv))
97 si_int __clzsi2(si_int);
98 si_int __ctzsi2(si_int);
99 #define __builtin_clz __clzsi2
100 #define __builtin_ctz __ctzsi2
101 #endif /* FreeBSD && (sparc64 || mips_n32 || mips_n64 || mips_o64 || riscv) */
102
103 COMPILER_RT_ABI si_int __paritysi2(si_int a);
104 COMPILER_RT_ABI si_int __paritydi2(di_int a);
105
106 COMPILER_RT_ABI di_int __divdi3(di_int a, di_int b);
107 COMPILER_RT_ABI si_int __divsi3(si_int a, si_int b);
108 COMPILER_RT_ABI su_int __udivsi3(su_int n, su_int d);
109
110 COMPILER_RT_ABI su_int __udivmodsi4(su_int a, su_int b, su_int* rem);
111 COMPILER_RT_ABI du_int __udivmoddi4(du_int a, du_int b, du_int* rem);
112 #ifdef CRT_HAS_128BIT
113 COMPILER_RT_ABI si_int __clzti2(ti_int a);
114 COMPILER_RT_ABI tu_int __udivmodti4(tu_int a, tu_int b, tu_int* rem);
115 #endif
116
117 /* Definitions for builtins unavailable on MSVC */
118 #if defined(_MSC_VER) && !defined(__clang__)
119 #include <intrin.h>
120
121 uint32_t __inline __builtin_ctz(uint32_t value) {
122   unsigned long trailing_zero = 0;
123   if (_BitScanForward(&trailing_zero, value))
124     return trailing_zero;
125   return 32;
126 }
127
128 uint32_t __inline __builtin_clz(uint32_t value) {
129   unsigned long leading_zero = 0;
130   if (_BitScanReverse(&leading_zero, value))
131     return 31 - leading_zero;
132   return 32;
133 }
134
135 #if defined(_M_ARM) || defined(_M_X64)
136 uint32_t __inline __builtin_clzll(uint64_t value) {
137   unsigned long leading_zero = 0;
138   if (_BitScanReverse64(&leading_zero, value))
139     return 63 - leading_zero;
140   return 64;
141 }
142 #else
143 uint32_t __inline __builtin_clzll(uint64_t value) {
144   if (value == 0)
145     return 64;
146   uint32_t msh = (uint32_t)(value >> 32);
147   uint32_t lsh = (uint32_t)(value & 0xFFFFFFFF);
148   if (msh != 0)
149     return __builtin_clz(msh);
150   return 32 + __builtin_clz(lsh);
151 }
152 #endif
153
154 #define __builtin_clzl __builtin_clzll
155 #endif /* defined(_MSC_VER) && !defined(__clang__) */
156
157 #endif /* INT_LIB_H */