gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
compiler.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012,2017-2018 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2006 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #ifndef __BASE_COMPILER_HH__
42 #define __BASE_COMPILER_HH__
43 
44 #include <memory>
45 
46 // http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
47 
48 
49 /*
50  * Attributes that become standard in later versions of c++.
51  */
52 
53 // Use M5_FALLTHROUGH to mark when you're intentionally falling through from
54 // one case to another in a switch statement.
55 #if __has_cpp_attribute(fallthrough) // Standard in c++17.
56 # define M5_FALLTHROUGH [[fallthrough]]
57 #else
58 // Not supported, so it's not necessary to avoid warnings.
59 # define M5_FALLTHROUGH
60 #endif
61 
62 // When the return value of a function should not be discarded, mark it with
63 // M5_NODISCARD.
64 #if __has_cpp_attribute(nodiscard) // Standard in c++17, with message in c++20.
65 # define M5_NODISCARD [[nodiscard]]
66 #else
67 // Not supported, but it's optional so we can just omit it.
68 # define M5_NODISCARD
69 #endif
70 
71 // When a variable may purposefully not be used, for instance if it's only used
72 // in debug statements which might be disabled, mark it with M5_VAR_USED.
73 #if __has_cpp_attribute(maybe_unused) // Standard in c++17.
74 # define M5_VAR_USED [[maybe_unused]]
75 #elif defined(__GNUC__)
76 // gcc and clang support a custom attribute which is essentially the same
77 // thing.
78 # define M5_VAR_USED [[gnu::unused]]
79 #else
80 # error "Don't know what to do for your compiler."
81 #endif
82 
83 
84 /*
85  * Compiler specific features.
86  */
87 
88 #if defined(__GNUC__) // clang or gcc.
89 // Mark a structure as packed, so that no padding is added to its layout. This
90 // padding might be added to, for instance, ensure certain fields have certain
91 // alignment.
92 # define M5_ATTR_PACKED [[gnu::packed]]
93 
94 // Prevent a function from being inlined.
95 # define M5_NO_INLINE [[gnu::noinline]]
96 
97 // Set the visibility of a symbol.
98 # define M5_PUBLIC [[gnu:visibility("default")]]
99 # define M5_LOCAL [[gnu::visibility("hidden")]]
100 # define M5_WEAK [[gnu::weak]]
101 
102 // Force an alignment for a variable.
103 # define M5_ALIGNED(alignment) [[gnu::aligned(alignment)]]
104 
105 // Marker for what should be an unreachable point in the code.
106 # define M5_UNREACHABLE __builtin_unreachable()
107 
108 // To mark a branch condition as likely taken, wrap it's condition with
109 // M5_LIKELY. To mark it as likely not taken, wrap it's condition with
110 // M5_UNLIKELY. These can be replaced with the standard attributes [[likely]]
111 // and [[unlikely]] in c++20, although the syntax is different enough that
112 // we can't do that with direct substitution.
113 # define M5_LIKELY(cond) __builtin_expect(!!(cond), 1)
114 # define M5_UNLIKELY(cond) __builtin_expect(!!(cond), 0)
115 #else
116 # error "Don't know what to do for your compiler."
117 #endif
118 
119 // When a member variable may be unused, mark it with M5_CLASS_VAR_USED. This
120 // needs to be limitted to clang only since clang warns on these unused
121 // variables, and g++ will actually warn if you use this attribute since it
122 // won't do anything there.
123 #if defined(__clang__) // clang only.
124 # define M5_CLASS_VAR_USED M5_VAR_USED
125 #else
126 # define M5_CLASS_VAR_USED
127 #endif
128 
129 #endif // __BASE_COMPILER_HH__

Generated on Tue Jun 22 2021 15:28:25 for gem5 by doxygen 1.8.17