blob: 724d5a4fe0b510021be4d18d34c4e770ec47fba3 [file] [log] [blame]
Sandrine Bailleux3cd87d72018-10-09 11:12:55 +02001/* ===-- 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/*
17 * Portions copyright (c) 2018, ARM Limited and Contributors.
18 * All rights reserved.
19 */
20
21#ifndef INT_LIB_H
22#define INT_LIB_H
23
24/* Assumption: Signed integral is 2's complement. */
25/* Assumption: Right shift of signed negative is arithmetic shift. */
26/* Assumption: Endianness is little or big (not mixed). */
27
28#if defined(__ELF__)
29#define FNALIAS(alias_name, original_name) \
30 void alias_name() __attribute__((__alias__(#original_name)))
31#define COMPILER_RT_ALIAS(aliasee) __attribute__((__alias__(#aliasee)))
32#else
33#define FNALIAS(alias, name) _Pragma("GCC error(\"alias unsupported on this file format\")")
34#define COMPILER_RT_ALIAS(aliasee) _Pragma("GCC error(\"alias unsupported on this file format\")")
35#endif
36
37/* ABI macro definitions */
38
39#if __ARM_EABI__
40# ifdef COMPILER_RT_ARMHF_TARGET
41# define COMPILER_RT_ABI
42# else
43# define COMPILER_RT_ABI __attribute__((__pcs__("aapcs")))
44# endif
45#else
46# define COMPILER_RT_ABI
47#endif
48
49#define AEABI_RTABI __attribute__((__pcs__("aapcs")))
50
51#ifdef _MSC_VER
52#define ALWAYS_INLINE __forceinline
53#define NOINLINE __declspec(noinline)
54#define NORETURN __declspec(noreturn)
55#define UNUSED
56#else
57#define ALWAYS_INLINE __attribute__((always_inline))
58#define NOINLINE __attribute__((noinline))
59#define NORETURN __attribute__((noreturn))
60#define UNUSED __attribute__((unused))
61#endif
62
63#include <sys/limits.h>
64#include <sys/stdint.h>
65#include <sys/types.h>
66
67/* Include the commonly used internal type definitions. */
68#include "int_types.h"
69
70COMPILER_RT_ABI si_int __paritysi2(si_int a);
71COMPILER_RT_ABI si_int __paritydi2(di_int a);
72
73COMPILER_RT_ABI di_int __divdi3(di_int a, di_int b);
74COMPILER_RT_ABI si_int __divsi3(si_int a, si_int b);
75COMPILER_RT_ABI su_int __udivsi3(su_int n, su_int d);
76
77COMPILER_RT_ABI su_int __udivmodsi4(su_int a, su_int b, su_int* rem);
78COMPILER_RT_ABI du_int __udivmoddi4(du_int a, du_int b, du_int* rem);
79#ifdef CRT_HAS_128BIT
80COMPILER_RT_ABI si_int __clzti2(ti_int a);
81COMPILER_RT_ABI tu_int __udivmodti4(tu_int a, tu_int b, tu_int* rem);
82#endif
83
84/* Definitions for builtins unavailable on MSVC */
85#if defined(_MSC_VER) && !defined(__clang__)
86#include <intrin.h>
87
88uint32_t __inline __builtin_ctz(uint32_t value) {
89 unsigned long trailing_zero = 0;
90 if (_BitScanForward(&trailing_zero, value))
91 return trailing_zero;
92 return 32;
93}
94
95uint32_t __inline __builtin_clz(uint32_t value) {
96 unsigned long leading_zero = 0;
97 if (_BitScanReverse(&leading_zero, value))
98 return 31 - leading_zero;
99 return 32;
100}
101
102#if defined(_M_ARM) || defined(_M_X64)
103uint32_t __inline __builtin_clzll(uint64_t value) {
104 unsigned long leading_zero = 0;
105 if (_BitScanReverse64(&leading_zero, value))
106 return 63 - leading_zero;
107 return 64;
108}
109#else
110uint32_t __inline __builtin_clzll(uint64_t value) {
111 if (value == 0)
112 return 64;
113 uint32_t msh = (uint32_t)(value >> 32);
114 uint32_t lsh = (uint32_t)(value & 0xFFFFFFFF);
115 if (msh != 0)
116 return __builtin_clz(msh);
117 return 32 + __builtin_clz(lsh);
118}
119#endif
120
121#define __builtin_clzl __builtin_clzll
122#endif /* defined(_MSC_VER) && !defined(__clang__) */
123
124#endif /* INT_LIB_H */