Go to the documentation of this file.
41 #ifndef __BASE_COMPILER_HH__
42 #define __BASE_COMPILER_HH__
55 #if __has_cpp_attribute(fallthrough) // Standard in c++17.
56 # define M5_FALLTHROUGH [[fallthrough]]
59 # define M5_FALLTHROUGH
64 #if __has_cpp_attribute(nodiscard) // Standard in c++17, with message in c++20.
65 # define M5_NODISCARD [[nodiscard]]
73 #if __has_cpp_attribute(maybe_unused) // Standard in c++17.
74 # define M5_VAR_USED [[maybe_unused]]
75 #elif defined(__GNUC__)
78 # define M5_VAR_USED [[gnu::unused]]
80 # error "Don't know what to do for your compiler."
88 #if defined(__GNUC__) // clang or gcc.
92 # define M5_ATTR_PACKED [[gnu::packed]]
95 # define M5_NO_INLINE [[gnu::noinline]]
98 # define M5_PUBLIC [[gnu:visibility("default")]]
99 # define M5_LOCAL [[gnu::visibility("hidden")]]
100 # define M5_WEAK [[gnu::weak]]
103 # define M5_ALIGNED(alignment) [[gnu::aligned(alignment)]]
106 # define M5_UNREACHABLE __builtin_unreachable()
113 # define M5_LIKELY(cond) __builtin_expect(!!(cond), 1)
114 # define M5_UNLIKELY(cond) __builtin_expect(!!(cond), 0)
116 # error "Don't know what to do for your compiler."
123 #if defined(__clang__) // clang only.
124 # define M5_CLASS_VAR_USED M5_VAR_USED
126 # define M5_CLASS_VAR_USED
129 #endif // __BASE_COMPILER_HH__
Generated on Tue Jun 22 2021 15:28:25 for gem5 by doxygen 1.8.17