blob: bf0c59535101f8275b92827a8efc74d9a3bda65f [file] [log] [blame]
Saleem Abdulrasool675df582015-04-24 19:39:17 +00001//===----------------------------- config.h -------------------------------===//
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// Defines macros used within libuwind project.
10//
11//===----------------------------------------------------------------------===//
12
13
14#ifndef LIBUNWIND_CONFIG_H
15#define LIBUNWIND_CONFIG_H
16
17#include <assert.h>
18#include <stdio.h>
19
20// Define static_assert() unless already defined by compiler.
21#ifndef __has_feature
22 #define __has_feature(__x) 0
23#endif
24#if !(__has_feature(cxx_static_assert)) && !defined(static_assert)
25 #define static_assert(__b, __m) \
26 extern int compile_time_assert_failed[ ( __b ) ? 1 : -1 ] \
27 __attribute__( ( unused ) );
28#endif
29
30// Platform specific configuration defines.
31#ifdef __APPLE__
32 #include <Availability.h>
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36 void __assert_rtn(const char *, const char *, int, const char *)
37 __attribute__((noreturn));
38 #ifdef __cplusplus
39 }
40 #endif
41
Saleem Abdulrasool675df582015-04-24 19:39:17 +000042 #define _LIBUNWIND_BUILD_SJLJ_APIS defined(__arm__)
Saleem Abdulrasool675df582015-04-24 19:39:17 +000043 #define _LIBUNWIND_EXPORT __attribute__((visibility("default")))
44 #define _LIBUNWIND_HIDDEN __attribute__((visibility("hidden")))
45 #define _LIBUNWIND_LOG(msg, ...) fprintf(stderr, "libuwind: " msg, __VA_ARGS__)
46 #define _LIBUNWIND_ABORT(msg) __assert_rtn(__func__, __FILE__, __LINE__, msg)
47
48 #if defined(FOR_DYLD)
49 #define _LIBUNWIND_SUPPORT_COMPACT_UNWIND 1
50 #define _LIBUNWIND_SUPPORT_DWARF_UNWIND 0
51 #define _LIBUNWIND_SUPPORT_DWARF_INDEX 0
52 #else
53 #define _LIBUNWIND_SUPPORT_COMPACT_UNWIND 1
54 #define _LIBUNWIND_SUPPORT_DWARF_UNWIND 1
55 #define _LIBUNWIND_SUPPORT_DWARF_INDEX 0
56 #endif
57
58#else
59 #include <stdlib.h>
60
61 static inline void assert_rtn(const char* func, const char* file, int line, const char* msg) __attribute__ ((noreturn));
62 static inline void assert_rtn(const char* func, const char* file, int line, const char* msg) {
63 fprintf(stderr, "libunwind: %s %s:%d - %s\n", func, file, line, msg);
64 assert(false);
65 abort();
66 }
67
Saleem Abdulrasool675df582015-04-24 19:39:17 +000068 #define _LIBUNWIND_BUILD_SJLJ_APIS 0
Saleem Abdulrasool675df582015-04-24 19:39:17 +000069 #define _LIBUNWIND_EXPORT __attribute__((visibility("default")))
70 #define _LIBUNWIND_HIDDEN __attribute__((visibility("hidden")))
71 #define _LIBUNWIND_LOG(msg, ...) fprintf(stderr, "libuwind: " msg, __VA_ARGS__)
72 #define _LIBUNWIND_ABORT(msg) assert_rtn(__func__, __FILE__, __LINE__, msg)
73
Saleem Abdulrasool3a3a5ea2016-04-20 20:54:51 +000074 #if defined(__ARM_DWARF_EH__) || !defined(__arm__)
75 #define _LIBUNWIND_SUPPORT_COMPACT_UNWIND 0
76 #define _LIBUNWIND_SUPPORT_DWARF_UNWIND 1
77 #define _LIBUNWIND_SUPPORT_DWARF_INDEX 1
78 #else
79 #define _LIBUNWIND_SUPPORT_COMPACT_UNWIND 0
80 #define _LIBUNWIND_SUPPORT_DWARF_UNWIND 0
81 #define _LIBUNWIND_SUPPORT_DWARF_INDEX 0
82 #endif
Saleem Abdulrasool675df582015-04-24 19:39:17 +000083#endif
84
Saleem Abdulrasool237becc2016-04-20 22:18:47 +000085#define _LIBUNWIND_SUPPORT_FRAME_APIS (defined(__i386__) || defined(__x86_64__))
86
Saleem Abdulrasool20c1a032016-04-20 20:54:55 +000087#if defined(__i386__) || defined(__x86_64__) || \
88 (!defined(__APPLE__) && defined(__arm__)) || \
89 (defined(__arm64__) || defined(__aarch64__)) || \
90 (defined(__APPLE__) && defined(__mips__))
91#define _LIBUNWIND_BUILD_ZERO_COST_APIS 1
92#else
93#define _LIBUNWIND_BUILD_ZERO_COST_APIS 0
94#endif
Saleem Abdulrasool675df582015-04-24 19:39:17 +000095
96// Macros that define away in non-Debug builds
97#ifdef NDEBUG
98 #define _LIBUNWIND_DEBUG_LOG(msg, ...)
99 #define _LIBUNWIND_TRACE_API(msg, ...)
100 #define _LIBUNWIND_TRACING_UNWINDING 0
101 #define _LIBUNWIND_TRACE_UNWINDING(msg, ...)
102 #define _LIBUNWIND_LOG_NON_ZERO(x) x
103#else
104 #ifdef __cplusplus
105 extern "C" {
106 #endif
107 extern bool logAPIs();
108 extern bool logUnwinding();
109 #ifdef __cplusplus
110 }
111 #endif
112 #define _LIBUNWIND_DEBUG_LOG(msg, ...) _LIBUNWIND_LOG(msg, __VA_ARGS__)
113 #define _LIBUNWIND_LOG_NON_ZERO(x) \
114 do { \
115 int _err = x; \
116 if ( _err != 0 ) \
117 _LIBUNWIND_LOG("" #x "=%d in %s", _err, __FUNCTION__); \
118 } while (0)
119 #define _LIBUNWIND_TRACE_API(msg, ...) \
120 do { \
121 if ( logAPIs() ) _LIBUNWIND_LOG(msg, __VA_ARGS__); \
122 } while(0)
123 #define _LIBUNWIND_TRACE_UNWINDING(msg, ...) \
124 do { \
125 if ( logUnwinding() ) _LIBUNWIND_LOG(msg, __VA_ARGS__); \
126 } while(0)
127 #define _LIBUNWIND_TRACING_UNWINDING logUnwinding()
128#endif
129
130
131#endif // LIBUNWIND_CONFIG_H