1 // Copyright 2015, ARM Limited
2 // All rights reserved.
3 //
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are met:
6 //
7 //   * Redistributions of source code must retain the above copyright notice,
8 //     this list of conditions and the following disclaimer.
9 //   * Redistributions in binary form must reproduce the above copyright notice,
10 //     this list of conditions and the following disclaimer in the documentation
11 //     and/or other materials provided with the distribution.
12 //   * Neither the name of ARM Limited nor the names of its contributors may be
13 //     used to endorse or promote products derived from this software without
14 //     specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS CONTRIBUTORS "AS IS" AND
17 // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
20 // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22 // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23 // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 
27 #ifndef VIXL_GLOBALS_H
28 #define VIXL_GLOBALS_H
29 
30 // Get standard C99 macros for integer types.
31 #ifndef __STDC_CONSTANT_MACROS
32 #define __STDC_CONSTANT_MACROS
33 #endif
34 
35 #ifndef __STDC_LIMIT_MACROS
36 #define __STDC_LIMIT_MACROS
37 #endif
38 
39 #ifndef __STDC_FORMAT_MACROS
40 #define __STDC_FORMAT_MACROS
41 #endif
42 
43 extern "C" {
44 #include <inttypes.h>
45 #include <stdint.h>
46 }
47 
48 #include <cassert>
49 #include <cstdarg>
50 #include <cstddef>
51 #include <cstdio>
52 #include <cstdlib>
53 
54 #include "vixl/platform.h"
55 
56 
57 typedef uint8_t byte;
58 
59 // Type for half-precision (16 bit) floating point numbers.
60 typedef uint16_t float16;
61 
62 const int KBytes = 1024;
63 const int MBytes = 1024 * KBytes;
64 
65 #define VIXL_ABORT() \
66     do { printf("in %s, line %i", __FILE__, __LINE__); abort(); } while (false)
67 #ifdef VIXL_DEBUG
68   #define VIXL_ASSERT(condition) assert(condition)
69   #define VIXL_CHECK(condition) VIXL_ASSERT(condition)
70   #define VIXL_UNIMPLEMENTED() \
71     do { fprintf(stderr, "UNIMPLEMENTED\t"); VIXL_ABORT(); } while (false)
72   #define VIXL_UNREACHABLE() \
73     do { fprintf(stderr, "UNREACHABLE\t"); VIXL_ABORT(); } while (false)
74 #else
75   #define VIXL_ASSERT(condition) ((void) 0)
76   #define VIXL_CHECK(condition) assert(condition)
77   #define VIXL_UNIMPLEMENTED() ((void) 0)
78   #define VIXL_UNREACHABLE() ((void) 0)
79 #endif
80 // This is not as powerful as template based assertions, but it is simple.
81 // It assumes that the descriptions are unique. If this starts being a problem,
82 // we can switch to a different implemention.
83 #define VIXL_CONCAT(a, b) a##b
84 #define VIXL_STATIC_ASSERT_LINE(line, condition) \
85   typedef char VIXL_CONCAT(STATIC_ASSERT_LINE_, line)[(condition) ? 1 : -1] \
86   __attribute__((unused))
87 #define VIXL_STATIC_ASSERT(condition) \
88     VIXL_STATIC_ASSERT_LINE(__LINE__, condition)
89 
90 template <typename T1>
USE(T1)91 inline void USE(T1) {}
92 
93 template <typename T1, typename T2>
USE(T1,T2)94 inline void USE(T1, T2) {}
95 
96 template <typename T1, typename T2, typename T3>
USE(T1,T2,T3)97 inline void USE(T1, T2, T3) {}
98 
99 template <typename T1, typename T2, typename T3, typename T4>
USE(T1,T2,T3,T4)100 inline void USE(T1, T2, T3, T4) {}
101 
102 #define VIXL_ALIGNMENT_EXCEPTION() \
103     do { fprintf(stderr, "ALIGNMENT EXCEPTION\t"); VIXL_ABORT(); } while (0)
104 
105 // The clang::fallthrough attribute is used along with the Wimplicit-fallthrough
106 // argument to annotate intentional fall-through between switch labels.
107 // For more information please refer to:
108 // http://clang.llvm.org/docs/AttributeReference.html#fallthrough-clang-fallthrough
109 #ifndef __has_warning
110   #define __has_warning(x)  0
111 #endif
112 
113 // Fallthrough annotation for Clang and C++11(201103L).
114 #if __has_warning("-Wimplicit-fallthrough") && __cplusplus >= 201103L
115   #define VIXL_FALLTHROUGH() [[clang::fallthrough]] //NOLINT
116 // Fallthrough annotation for GCC >= 7.
117 #elif __GNUC__ >= 7
118   #define VIXL_FALLTHROUGH() __attribute__((fallthrough))
119 #else
120   #define VIXL_FALLTHROUGH() do {} while (0)
121 #endif
122 
123 #if __cplusplus >= 201103L
124   #define VIXL_NO_RETURN  [[noreturn]] //NOLINT
125 #else
126   #define VIXL_NO_RETURN  __attribute__((noreturn))
127 #endif
128 
129 // Some functions might only be marked as "noreturn" for the DEBUG build. This
130 // macro should be used for such cases (for more details see what
131 // VIXL_UNREACHABLE expands to).
132 #ifdef VIXL_DEBUG
133   #define VIXL_DEBUG_NO_RETURN  VIXL_NO_RETURN
134 #else
135   #define VIXL_DEBUG_NO_RETURN
136 #endif
137 
138 #ifdef VIXL_INCLUDE_SIMULATOR
139 #ifndef VIXL_GENERATE_SIMULATOR_INSTRUCTIONS_VALUE
140   #define VIXL_GENERATE_SIMULATOR_INSTRUCTIONS_VALUE  1
141 #endif
142 #else
143 #ifndef VIXL_GENERATE_SIMULATOR_INSTRUCTIONS_VALUE
144   #define VIXL_GENERATE_SIMULATOR_INSTRUCTIONS_VALUE  0
145 #endif
146 #if VIXL_GENERATE_SIMULATOR_INSTRUCTIONS_VALUE
147   #warning "Generating Simulator instructions without Simulator support."
148 #endif
149 #endif
150 
151 #ifdef USE_SIMULATOR
152   #error "Please see the release notes for USE_SIMULATOR."
153 #endif
154 
155 #endif  // VIXL_GLOBALS_H
156