Go to the documentation of this file.
41 #ifndef __BASE_COMPILER_HH__
42 #define __BASE_COMPILER_HH__
46 #include "config/have_deprecated_namespace.hh"
57 #if __has_cpp_attribute(fallthrough) // Standard in c++17.
58 # define GEM5_FALLTHROUGH [[fallthrough]]
61 # define GEM5_FALLTHROUGH
66 #if __has_cpp_attribute(nodiscard) // Standard in c++17, with message in c++20.
67 # define GEM5_NO_DISCARD [[nodiscard]]
70 # define GEM5_NO_DISCARD
75 #if __has_cpp_attribute(maybe_unused) // Standard in c++17.
76 # define GEM5_VAR_USED [[maybe_unused]]
77 #elif defined(__GNUC__)
80 # define GEM5_VAR_USED [[gnu::unused]]
82 # error "Don't know what to do for your compiler."
90 #if defined(__GNUC__) // clang or gcc.
94 # define GEM5_PACKED [[gnu::packed]]
97 # define GEM5_NO_INLINE [[gnu::noinline]]
100 # define GEM5_PUBLIC [[gnu:visibility("default")]]
101 # define GEM5_LOCAL [[gnu::visibility("hidden")]]
102 # define GEM5_WEAK [[gnu::weak]]
105 # define GEM5_ALIGNED(alignment) [[gnu::aligned(alignment)]]
108 # define GEM5_UNREACHABLE __builtin_unreachable()
115 # define GEM5_LIKELY(cond) __builtin_expect(!!(cond), 1)
116 # define GEM5_UNLIKELY(cond) __builtin_expect(!!(cond), 0)
120 # define GEM5_DEPRECATED(message) [[gnu::deprecated(message)]]
126 # if defined(__clang__) || __GNUC__ >= 6
127 # define GEM5_DEPRECATED_ENUM_VAL(message) GEM5_DEPRECATED(message)
129 # define GEM5_DEPRECATED_ENUM_VAL(message)
136 # define GEM5_DEPRECATED_MACRO(name, definition, message) \
137 ([](){GEM5_DEPRECATED(message) int name{}; return name;}(), (definition))
140 # define GEM5_DEPRECATED_MACRO_STMT(name, definition, message) \
141 do {{definition;} GEM5_DEPRECATED_MACRO(name, {}, message);} while (0)
146 # define GEM5_DEPRECATED_CLASS(old_class, new_class) \
148 GEM5_DEPRECATED("Please use the new class name: '" #new_class "'") = \
156 # if HAVE_DEPRECATED_NAMESPACE
157 # define GEM5_DEPRECATED_NAMESPACE(old_namespace, new_namespace) \
158 namespace new_namespace {} \
159 namespace GEM5_DEPRECATED("Please use the new namespace: '" \
160 #new_namespace "'") old_namespace { \
161 using namespace new_namespace; \
164 # define GEM5_DEPRECATED_NAMESPACE(old_namespace, new_namespace) \
165 namespace new_namespace {} \
166 namespace old_namespace = new_namespace
175 #define GEM5_FOR_EACH_IN_PACK(...) \
176 do { GEM5_VAR_USED int i[] = { 0, ((void)(__VA_ARGS__), 0)... }; } while (0)
179 # error "Don't know what to do for your compiler."
186 #if defined(__clang__) // clang only.
187 # define GEM5_CLASS_VAR_USED GEM5_VAR_USED
189 # define GEM5_CLASS_VAR_USED
193 #define M5_VAR_USED GEM5_VAR_USED
194 #define M5_NODISCARD GEM5_NO_DISCARD
195 #define M5_FALLTHROUGH GEM5_FALLTHROUGH
196 #define M5_ATTR_PACKED GEM5_PACKED
197 #define M5_NO_INLINE GEM5_NO_INLINE
198 #define M5_PUBLIC GEM5_PUBLIC
199 #define M5_LOCAL GEM5_LOCAL
200 #define M5_WEAK GEM5_WEAK
201 #define M5_ALIGNED(x) GEM5_ALIGNED(x)
202 #define M5_UNREACHABLE GEM5_UNREACHABLE
203 #define M5_LIKELY(x) GEM5_LIKELY(x)
204 #define M5_UNLIKELY(x) GEM5_UNLIKELY(x)
205 #define M5_FOR_EACH_IN_PACK(...) GEM5_FOR_EACH_IN_PACK(__VA_ARGS__)
206 #define M5_CLASS_VAR_USED GEM5_CLASS_VAR_USED
208 #endif // __BASE_COMPILER_HH__
Generated on Wed Jul 28 2021 12:10:22 for gem5 by doxygen 1.8.17