1 // Copyright 2017 The Abseil Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //      https://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 //
15 // This header file defines macros for declaring attributes for functions,
16 // types, and variables.
17 //
18 // These macros are used within Abseil and allow the compiler to optimize, where
19 // applicable, certain function calls.
20 //
21 // Most macros here are exposing GCC or Clang features, and are stubbed out for
22 // other compilers.
23 //
24 // GCC attributes documentation:
25 //   https://gcc.gnu.org/onlinedocs/gcc-4.7.0/gcc/Function-Attributes.html
26 //   https://gcc.gnu.org/onlinedocs/gcc-4.7.0/gcc/Variable-Attributes.html
27 //   https://gcc.gnu.org/onlinedocs/gcc-4.7.0/gcc/Type-Attributes.html
28 //
29 // Most attributes in this file are already supported by GCC 4.7. However, some
30 // of them are not supported in older version of Clang. Thus, we check
31 // `__has_attribute()` first. If the check fails, we check if we are on GCC and
32 // assume the attribute exists on GCC (which is verified on GCC 4.7).
33 
34 #ifndef ABSL_BASE_ATTRIBUTES_H_
35 #define ABSL_BASE_ATTRIBUTES_H_
36 
37 #include "absl/base/config.h"
38 
39 // ABSL_HAVE_ATTRIBUTE
40 //
41 // A function-like feature checking macro that is a wrapper around
42 // `__has_attribute`, which is defined by GCC 5+ and Clang and evaluates to a
43 // nonzero constant integer if the attribute is supported or 0 if not.
44 //
45 // It evaluates to zero if `__has_attribute` is not defined by the compiler.
46 //
47 // GCC: https://gcc.gnu.org/gcc-5/changes.html
48 // Clang: https://clang.llvm.org/docs/LanguageExtensions.html
49 #ifdef __has_attribute
50 #define ABSL_HAVE_ATTRIBUTE(x) __has_attribute(x)
51 #else
52 #define ABSL_HAVE_ATTRIBUTE(x) 0
53 #endif
54 
55 // ABSL_HAVE_CPP_ATTRIBUTE
56 //
57 // A function-like feature checking macro that accepts C++11 style attributes.
58 // It's a wrapper around `__has_cpp_attribute`, defined by ISO C++ SD-6
59 // (https://en.cppreference.com/w/cpp/experimental/feature_test). If we don't
60 // find `__has_cpp_attribute`, will evaluate to 0.
61 #if defined(__cplusplus) && defined(__has_cpp_attribute)
62 // NOTE: requiring __cplusplus above should not be necessary, but
63 // works around https://bugs.llvm.org/show_bug.cgi?id=23435.
64 #define ABSL_HAVE_CPP_ATTRIBUTE(x) __has_cpp_attribute(x)
65 #else
66 #define ABSL_HAVE_CPP_ATTRIBUTE(x) 0
67 #endif
68 
69 // -----------------------------------------------------------------------------
70 // Function Attributes
71 // -----------------------------------------------------------------------------
72 //
73 // GCC: https://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
74 // Clang: https://clang.llvm.org/docs/AttributeReference.html
75 
76 // ABSL_PRINTF_ATTRIBUTE
77 // ABSL_SCANF_ATTRIBUTE
78 //
79 // Tells the compiler to perform `printf` format string checking if the
80 // compiler supports it; see the 'format' attribute in
81 // <https://gcc.gnu.org/onlinedocs/gcc-4.7.0/gcc/Function-Attributes.html>.
82 //
83 // Note: As the GCC manual states, "[s]ince non-static C++ methods
84 // have an implicit 'this' argument, the arguments of such methods
85 // should be counted from two, not one."
86 #if ABSL_HAVE_ATTRIBUTE(format) || (defined(__GNUC__) && !defined(__clang__))
87 #define ABSL_PRINTF_ATTRIBUTE(string_index, first_to_check) \
88   __attribute__((__format__(__printf__, string_index, first_to_check)))
89 #define ABSL_SCANF_ATTRIBUTE(string_index, first_to_check) \
90   __attribute__((__format__(__scanf__, string_index, first_to_check)))
91 #else
92 #define ABSL_PRINTF_ATTRIBUTE(string_index, first_to_check)
93 #define ABSL_SCANF_ATTRIBUTE(string_index, first_to_check)
94 #endif
95 
96 // ABSL_ATTRIBUTE_ALWAYS_INLINE
97 // ABSL_ATTRIBUTE_NOINLINE
98 //
99 // Forces functions to either inline or not inline. Introduced in gcc 3.1.
100 #if ABSL_HAVE_ATTRIBUTE(always_inline) || \
101     (defined(__GNUC__) && !defined(__clang__))
102 #define ABSL_ATTRIBUTE_ALWAYS_INLINE __attribute__((always_inline))
103 #define ABSL_HAVE_ATTRIBUTE_ALWAYS_INLINE 1
104 #else
105 #define ABSL_ATTRIBUTE_ALWAYS_INLINE
106 #endif
107 
108 #if ABSL_HAVE_ATTRIBUTE(noinline) || (defined(__GNUC__) && !defined(__clang__))
109 #define ABSL_ATTRIBUTE_NOINLINE __attribute__((noinline))
110 #define ABSL_HAVE_ATTRIBUTE_NOINLINE 1
111 #else
112 #define ABSL_ATTRIBUTE_NOINLINE
113 #endif
114 
115 // ABSL_ATTRIBUTE_NO_TAIL_CALL
116 //
117 // Prevents the compiler from optimizing away stack frames for functions which
118 // end in a call to another function.
119 #if ABSL_HAVE_ATTRIBUTE(disable_tail_calls)
120 #define ABSL_HAVE_ATTRIBUTE_NO_TAIL_CALL 1
121 #define ABSL_ATTRIBUTE_NO_TAIL_CALL __attribute__((disable_tail_calls))
122 #elif defined(__GNUC__) && !defined(__clang__) && !defined(__e2k__)
123 #define ABSL_HAVE_ATTRIBUTE_NO_TAIL_CALL 1
124 #define ABSL_ATTRIBUTE_NO_TAIL_CALL \
125   __attribute__((optimize("no-optimize-sibling-calls")))
126 #else
127 #define ABSL_ATTRIBUTE_NO_TAIL_CALL
128 #define ABSL_HAVE_ATTRIBUTE_NO_TAIL_CALL 0
129 #endif
130 
131 // ABSL_ATTRIBUTE_WEAK
132 //
133 // Tags a function as weak for the purposes of compilation and linking.
134 // Weak attributes currently do not work properly in LLVM's Windows backend,
135 // so disable them there. See https://bugs.llvm.org/show_bug.cgi?id=37598
136 // for further information.
137 // The MinGW compiler doesn't complain about the weak attribute until the link
138 // step, presumably because Windows doesn't use ELF binaries.
139 #if (ABSL_HAVE_ATTRIBUTE(weak) ||                   \
140      (defined(__GNUC__) && !defined(__clang__))) && \
141     !(defined(__llvm__) && defined(_WIN32)) && !defined(__MINGW32__)
142 #undef ABSL_ATTRIBUTE_WEAK
143 #define ABSL_ATTRIBUTE_WEAK __attribute__((weak))
144 #define ABSL_HAVE_ATTRIBUTE_WEAK 1
145 #else
146 #define ABSL_ATTRIBUTE_WEAK
147 #define ABSL_HAVE_ATTRIBUTE_WEAK 0
148 #endif
149 
150 // ABSL_ATTRIBUTE_NONNULL
151 //
152 // Tells the compiler either (a) that a particular function parameter
153 // should be a non-null pointer, or (b) that all pointer arguments should
154 // be non-null.
155 //
156 // Note: As the GCC manual states, "[s]ince non-static C++ methods
157 // have an implicit 'this' argument, the arguments of such methods
158 // should be counted from two, not one."
159 //
160 // Args are indexed starting at 1.
161 //
162 // For non-static class member functions, the implicit `this` argument
163 // is arg 1, and the first explicit argument is arg 2. For static class member
164 // functions, there is no implicit `this`, and the first explicit argument is
165 // arg 1.
166 //
167 // Example:
168 //
169 //   /* arg_a cannot be null, but arg_b can */
170 //   void Function(void* arg_a, void* arg_b) ABSL_ATTRIBUTE_NONNULL(1);
171 //
172 //   class C {
173 //     /* arg_a cannot be null, but arg_b can */
174 //     void Method(void* arg_a, void* arg_b) ABSL_ATTRIBUTE_NONNULL(2);
175 //
176 //     /* arg_a cannot be null, but arg_b can */
177 //     static void StaticMethod(void* arg_a, void* arg_b)
178 //     ABSL_ATTRIBUTE_NONNULL(1);
179 //   };
180 //
181 // If no arguments are provided, then all pointer arguments should be non-null.
182 //
183 //  /* No pointer arguments may be null. */
184 //  void Function(void* arg_a, void* arg_b, int arg_c) ABSL_ATTRIBUTE_NONNULL();
185 //
186 // NOTE: The GCC nonnull attribute actually accepts a list of arguments, but
187 // ABSL_ATTRIBUTE_NONNULL does not.
188 #if ABSL_HAVE_ATTRIBUTE(nonnull) || (defined(__GNUC__) && !defined(__clang__))
189 #define ABSL_ATTRIBUTE_NONNULL(arg_index) __attribute__((nonnull(arg_index)))
190 #else
191 #define ABSL_ATTRIBUTE_NONNULL(...)
192 #endif
193 
194 // ABSL_ATTRIBUTE_NORETURN
195 //
196 // Tells the compiler that a given function never returns.
197 #if ABSL_HAVE_ATTRIBUTE(noreturn) || (defined(__GNUC__) && !defined(__clang__))
198 #define ABSL_ATTRIBUTE_NORETURN __attribute__((noreturn))
199 #elif defined(_MSC_VER)
200 #define ABSL_ATTRIBUTE_NORETURN __declspec(noreturn)
201 #else
202 #define ABSL_ATTRIBUTE_NORETURN
203 #endif
204 
205 // ABSL_ATTRIBUTE_NO_SANITIZE_ADDRESS
206 //
207 // Tells the AddressSanitizer (or other memory testing tools) to ignore a given
208 // function. Useful for cases when a function reads random locations on stack,
209 // calls _exit from a cloned subprocess, deliberately accesses buffer
210 // out of bounds or does other scary things with memory.
211 // NOTE: GCC supports AddressSanitizer(asan) since 4.8.
212 // https://gcc.gnu.org/gcc-4.8/changes.html
213 #if ABSL_HAVE_ATTRIBUTE(no_sanitize_address)
214 #define ABSL_ATTRIBUTE_NO_SANITIZE_ADDRESS __attribute__((no_sanitize_address))
215 #else
216 #define ABSL_ATTRIBUTE_NO_SANITIZE_ADDRESS
217 #endif
218 
219 // ABSL_ATTRIBUTE_NO_SANITIZE_MEMORY
220 //
221 // Tells the MemorySanitizer to relax the handling of a given function. All "Use
222 // of uninitialized value" warnings from such functions will be suppressed, and
223 // all values loaded from memory will be considered fully initialized.  This
224 // attribute is similar to the ABSL_ATTRIBUTE_NO_SANITIZE_ADDRESS attribute
225 // above, but deals with initialized-ness rather than addressability issues.
226 // NOTE: MemorySanitizer(msan) is supported by Clang but not GCC.
227 #if ABSL_HAVE_ATTRIBUTE(no_sanitize_memory)
228 #define ABSL_ATTRIBUTE_NO_SANITIZE_MEMORY __attribute__((no_sanitize_memory))
229 #else
230 #define ABSL_ATTRIBUTE_NO_SANITIZE_MEMORY
231 #endif
232 
233 // ABSL_ATTRIBUTE_NO_SANITIZE_THREAD
234 //
235 // Tells the ThreadSanitizer to not instrument a given function.
236 // NOTE: GCC supports ThreadSanitizer(tsan) since 4.8.
237 // https://gcc.gnu.org/gcc-4.8/changes.html
238 #if ABSL_HAVE_ATTRIBUTE(no_sanitize_thread)
239 #define ABSL_ATTRIBUTE_NO_SANITIZE_THREAD __attribute__((no_sanitize_thread))
240 #else
241 #define ABSL_ATTRIBUTE_NO_SANITIZE_THREAD
242 #endif
243 
244 // ABSL_ATTRIBUTE_NO_SANITIZE_UNDEFINED
245 //
246 // Tells the UndefinedSanitizer to ignore a given function. Useful for cases
247 // where certain behavior (eg. division by zero) is being used intentionally.
248 // NOTE: GCC supports UndefinedBehaviorSanitizer(ubsan) since 4.9.
249 // https://gcc.gnu.org/gcc-4.9/changes.html
250 #if ABSL_HAVE_ATTRIBUTE(no_sanitize_undefined)
251 #define ABSL_ATTRIBUTE_NO_SANITIZE_UNDEFINED \
252   __attribute__((no_sanitize_undefined))
253 #elif ABSL_HAVE_ATTRIBUTE(no_sanitize)
254 #define ABSL_ATTRIBUTE_NO_SANITIZE_UNDEFINED \
255   __attribute__((no_sanitize("undefined")))
256 #else
257 #define ABSL_ATTRIBUTE_NO_SANITIZE_UNDEFINED
258 #endif
259 
260 // ABSL_ATTRIBUTE_NO_SANITIZE_CFI
261 //
262 // Tells the ControlFlowIntegrity sanitizer to not instrument a given function.
263 // See https://clang.llvm.org/docs/ControlFlowIntegrity.html for details.
264 #if ABSL_HAVE_ATTRIBUTE(no_sanitize)
265 #define ABSL_ATTRIBUTE_NO_SANITIZE_CFI __attribute__((no_sanitize("cfi")))
266 #else
267 #define ABSL_ATTRIBUTE_NO_SANITIZE_CFI
268 #endif
269 
270 // ABSL_ATTRIBUTE_NO_SANITIZE_SAFESTACK
271 //
272 // Tells the SafeStack to not instrument a given function.
273 // See https://clang.llvm.org/docs/SafeStack.html for details.
274 #if ABSL_HAVE_ATTRIBUTE(no_sanitize)
275 #define ABSL_ATTRIBUTE_NO_SANITIZE_SAFESTACK \
276   __attribute__((no_sanitize("safe-stack")))
277 #else
278 #define ABSL_ATTRIBUTE_NO_SANITIZE_SAFESTACK
279 #endif
280 
281 // ABSL_ATTRIBUTE_RETURNS_NONNULL
282 //
283 // Tells the compiler that a particular function never returns a null pointer.
284 #if ABSL_HAVE_ATTRIBUTE(returns_nonnull) || \
285     (defined(__GNUC__) && \
286      (__GNUC__ > 5 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 9)) && \
287      !defined(__clang__))
288 #define ABSL_ATTRIBUTE_RETURNS_NONNULL __attribute__((returns_nonnull))
289 #else
290 #define ABSL_ATTRIBUTE_RETURNS_NONNULL
291 #endif
292 
293 // ABSL_HAVE_ATTRIBUTE_SECTION
294 //
295 // Indicates whether labeled sections are supported. Weak symbol support is
296 // a prerequisite. Labeled sections are not supported on Darwin/iOS.
297 #ifdef ABSL_HAVE_ATTRIBUTE_SECTION
298 #error ABSL_HAVE_ATTRIBUTE_SECTION cannot be directly set
299 #elif (ABSL_HAVE_ATTRIBUTE(section) ||                \
300        (defined(__GNUC__) && !defined(__clang__))) && \
301     !defined(__APPLE__) && ABSL_HAVE_ATTRIBUTE_WEAK
302 #define ABSL_HAVE_ATTRIBUTE_SECTION 1
303 
304 // ABSL_ATTRIBUTE_SECTION
305 //
306 // Tells the compiler/linker to put a given function into a section and define
307 // `__start_ ## name` and `__stop_ ## name` symbols to bracket the section.
308 // This functionality is supported by GNU linker.  Any function annotated with
309 // `ABSL_ATTRIBUTE_SECTION` must not be inlined, or it will be placed into
310 // whatever section its caller is placed into.
311 //
312 #ifndef ABSL_ATTRIBUTE_SECTION
313 #define ABSL_ATTRIBUTE_SECTION(name) \
314   __attribute__((section(#name))) __attribute__((noinline))
315 #endif
316 
317 
318 // ABSL_ATTRIBUTE_SECTION_VARIABLE
319 //
320 // Tells the compiler/linker to put a given variable into a section and define
321 // `__start_ ## name` and `__stop_ ## name` symbols to bracket the section.
322 // This functionality is supported by GNU linker.
323 #ifndef ABSL_ATTRIBUTE_SECTION_VARIABLE
324 #define ABSL_ATTRIBUTE_SECTION_VARIABLE(name) __attribute__((section(#name)))
325 #endif
326 
327 // ABSL_DECLARE_ATTRIBUTE_SECTION_VARS
328 //
329 // A weak section declaration to be used as a global declaration
330 // for ABSL_ATTRIBUTE_SECTION_START|STOP(name) to compile and link
331 // even without functions with ABSL_ATTRIBUTE_SECTION(name).
332 // ABSL_DEFINE_ATTRIBUTE_SECTION should be in the exactly one file; it's
333 // a no-op on ELF but not on Mach-O.
334 //
335 #ifndef ABSL_DECLARE_ATTRIBUTE_SECTION_VARS
336 #define ABSL_DECLARE_ATTRIBUTE_SECTION_VARS(name) \
337   extern char __start_##name[] ABSL_ATTRIBUTE_WEAK;    \
338   extern char __stop_##name[] ABSL_ATTRIBUTE_WEAK
339 #endif
340 #ifndef ABSL_DEFINE_ATTRIBUTE_SECTION_VARS
341 #define ABSL_INIT_ATTRIBUTE_SECTION_VARS(name)
342 #define ABSL_DEFINE_ATTRIBUTE_SECTION_VARS(name)
343 #endif
344 
345 // ABSL_ATTRIBUTE_SECTION_START
346 //
347 // Returns `void*` pointers to start/end of a section of code with
348 // functions having ABSL_ATTRIBUTE_SECTION(name).
349 // Returns 0 if no such functions exist.
350 // One must ABSL_DECLARE_ATTRIBUTE_SECTION_VARS(name) for this to compile and
351 // link.
352 //
353 #define ABSL_ATTRIBUTE_SECTION_START(name) \
354   (reinterpret_cast<void *>(__start_##name))
355 #define ABSL_ATTRIBUTE_SECTION_STOP(name) \
356   (reinterpret_cast<void *>(__stop_##name))
357 
358 #else  // !ABSL_HAVE_ATTRIBUTE_SECTION
359 
360 #define ABSL_HAVE_ATTRIBUTE_SECTION 0
361 
362 // provide dummy definitions
363 #define ABSL_ATTRIBUTE_SECTION(name)
364 #define ABSL_ATTRIBUTE_SECTION_VARIABLE(name)
365 #define ABSL_INIT_ATTRIBUTE_SECTION_VARS(name)
366 #define ABSL_DEFINE_ATTRIBUTE_SECTION_VARS(name)
367 #define ABSL_DECLARE_ATTRIBUTE_SECTION_VARS(name)
368 #define ABSL_ATTRIBUTE_SECTION_START(name) (reinterpret_cast<void *>(0))
369 #define ABSL_ATTRIBUTE_SECTION_STOP(name) (reinterpret_cast<void *>(0))
370 
371 #endif  // ABSL_ATTRIBUTE_SECTION
372 
373 // ABSL_ATTRIBUTE_STACK_ALIGN_FOR_OLD_LIBC
374 //
375 // Support for aligning the stack on 32-bit x86.
376 #if ABSL_HAVE_ATTRIBUTE(force_align_arg_pointer) || \
377     (defined(__GNUC__) && !defined(__clang__))
378 #if defined(__i386__)
379 #define ABSL_ATTRIBUTE_STACK_ALIGN_FOR_OLD_LIBC \
380   __attribute__((force_align_arg_pointer))
381 #define ABSL_REQUIRE_STACK_ALIGN_TRAMPOLINE (0)
382 #elif defined(__x86_64__)
383 #define ABSL_REQUIRE_STACK_ALIGN_TRAMPOLINE (1)
384 #define ABSL_ATTRIBUTE_STACK_ALIGN_FOR_OLD_LIBC
385 #else  // !__i386__ && !__x86_64
386 #define ABSL_REQUIRE_STACK_ALIGN_TRAMPOLINE (0)
387 #define ABSL_ATTRIBUTE_STACK_ALIGN_FOR_OLD_LIBC
388 #endif  // __i386__
389 #else
390 #define ABSL_ATTRIBUTE_STACK_ALIGN_FOR_OLD_LIBC
391 #define ABSL_REQUIRE_STACK_ALIGN_TRAMPOLINE (0)
392 #endif
393 
394 // ABSL_MUST_USE_RESULT
395 //
396 // Tells the compiler to warn about unused results.
397 //
398 // When annotating a function, it must appear as the first part of the
399 // declaration or definition. The compiler will warn if the return value from
400 // such a function is unused:
401 //
402 //   ABSL_MUST_USE_RESULT Sprocket* AllocateSprocket();
403 //   AllocateSprocket();  // Triggers a warning.
404 //
405 // When annotating a class, it is equivalent to annotating every function which
406 // returns an instance.
407 //
408 //   class ABSL_MUST_USE_RESULT Sprocket {};
409 //   Sprocket();  // Triggers a warning.
410 //
411 //   Sprocket MakeSprocket();
412 //   MakeSprocket();  // Triggers a warning.
413 //
414 // Note that references and pointers are not instances:
415 //
416 //   Sprocket* SprocketPointer();
417 //   SprocketPointer();  // Does *not* trigger a warning.
418 //
419 // ABSL_MUST_USE_RESULT allows using cast-to-void to suppress the unused result
420 // warning. For that, warn_unused_result is used only for clang but not for gcc.
421 // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66425
422 //
423 // Note: past advice was to place the macro after the argument list.
424 #if ABSL_HAVE_ATTRIBUTE(nodiscard)
425 #define ABSL_MUST_USE_RESULT [[nodiscard]]
426 #elif defined(__clang__) && ABSL_HAVE_ATTRIBUTE(warn_unused_result)
427 #define ABSL_MUST_USE_RESULT __attribute__((warn_unused_result))
428 #else
429 #define ABSL_MUST_USE_RESULT
430 #endif
431 
432 // ABSL_ATTRIBUTE_HOT, ABSL_ATTRIBUTE_COLD
433 //
434 // Tells GCC that a function is hot or cold. GCC can use this information to
435 // improve static analysis, i.e. a conditional branch to a cold function
436 // is likely to be not-taken.
437 // This annotation is used for function declarations.
438 //
439 // Example:
440 //
441 //   int foo() ABSL_ATTRIBUTE_HOT;
442 #if ABSL_HAVE_ATTRIBUTE(hot) || (defined(__GNUC__) && !defined(__clang__))
443 #define ABSL_ATTRIBUTE_HOT __attribute__((hot))
444 #else
445 #define ABSL_ATTRIBUTE_HOT
446 #endif
447 
448 #if ABSL_HAVE_ATTRIBUTE(cold) || (defined(__GNUC__) && !defined(__clang__))
449 #define ABSL_ATTRIBUTE_COLD __attribute__((cold))
450 #else
451 #define ABSL_ATTRIBUTE_COLD
452 #endif
453 
454 // ABSL_XRAY_ALWAYS_INSTRUMENT, ABSL_XRAY_NEVER_INSTRUMENT, ABSL_XRAY_LOG_ARGS
455 //
456 // We define the ABSL_XRAY_ALWAYS_INSTRUMENT and ABSL_XRAY_NEVER_INSTRUMENT
457 // macro used as an attribute to mark functions that must always or never be
458 // instrumented by XRay. Currently, this is only supported in Clang/LLVM.
459 //
460 // For reference on the LLVM XRay instrumentation, see
461 // http://llvm.org/docs/XRay.html.
462 //
463 // A function with the XRAY_ALWAYS_INSTRUMENT macro attribute in its declaration
464 // will always get the XRay instrumentation sleds. These sleds may introduce
465 // some binary size and runtime overhead and must be used sparingly.
466 //
467 // These attributes only take effect when the following conditions are met:
468 //
469 //   * The file/target is built in at least C++11 mode, with a Clang compiler
470 //     that supports XRay attributes.
471 //   * The file/target is built with the -fxray-instrument flag set for the
472 //     Clang/LLVM compiler.
473 //   * The function is defined in the translation unit (the compiler honors the
474 //     attribute in either the definition or the declaration, and must match).
475 //
476 // There are cases when, even when building with XRay instrumentation, users
477 // might want to control specifically which functions are instrumented for a
478 // particular build using special-case lists provided to the compiler. These
479 // special case lists are provided to Clang via the
480 // -fxray-always-instrument=... and -fxray-never-instrument=... flags. The
481 // attributes in source take precedence over these special-case lists.
482 //
483 // To disable the XRay attributes at build-time, users may define
484 // ABSL_NO_XRAY_ATTRIBUTES. Do NOT define ABSL_NO_XRAY_ATTRIBUTES on specific
485 // packages/targets, as this may lead to conflicting definitions of functions at
486 // link-time.
487 //
488 // XRay isn't currently supported on Android:
489 // https://github.com/android/ndk/issues/368
490 #if ABSL_HAVE_CPP_ATTRIBUTE(clang::xray_always_instrument) && \
491     !defined(ABSL_NO_XRAY_ATTRIBUTES) && !defined(__ANDROID__)
492 #define ABSL_XRAY_ALWAYS_INSTRUMENT [[clang::xray_always_instrument]]
493 #define ABSL_XRAY_NEVER_INSTRUMENT [[clang::xray_never_instrument]]
494 #if ABSL_HAVE_CPP_ATTRIBUTE(clang::xray_log_args)
495 #define ABSL_XRAY_LOG_ARGS(N) \
496     [[clang::xray_always_instrument, clang::xray_log_args(N)]]
497 #else
498 #define ABSL_XRAY_LOG_ARGS(N) [[clang::xray_always_instrument]]
499 #endif
500 #else
501 #define ABSL_XRAY_ALWAYS_INSTRUMENT
502 #define ABSL_XRAY_NEVER_INSTRUMENT
503 #define ABSL_XRAY_LOG_ARGS(N)
504 #endif
505 
506 // ABSL_ATTRIBUTE_REINITIALIZES
507 //
508 // Indicates that a member function reinitializes the entire object to a known
509 // state, independent of the previous state of the object.
510 //
511 // The clang-tidy check bugprone-use-after-move allows member functions marked
512 // with this attribute to be called on objects that have been moved from;
513 // without the attribute, this would result in a use-after-move warning.
514 #if ABSL_HAVE_CPP_ATTRIBUTE(clang::reinitializes)
515 #define ABSL_ATTRIBUTE_REINITIALIZES [[clang::reinitializes]]
516 #else
517 #define ABSL_ATTRIBUTE_REINITIALIZES
518 #endif
519 
520 // -----------------------------------------------------------------------------
521 // Variable Attributes
522 // -----------------------------------------------------------------------------
523 
524 // ABSL_ATTRIBUTE_UNUSED
525 //
526 // Prevents the compiler from complaining about variables that appear unused.
527 #if ABSL_HAVE_ATTRIBUTE(unused) || (defined(__GNUC__) && !defined(__clang__))
528 #undef ABSL_ATTRIBUTE_UNUSED
529 #define ABSL_ATTRIBUTE_UNUSED __attribute__((__unused__))
530 #else
531 #define ABSL_ATTRIBUTE_UNUSED
532 #endif
533 
534 // ABSL_ATTRIBUTE_INITIAL_EXEC
535 //
536 // Tells the compiler to use "initial-exec" mode for a thread-local variable.
537 // See http://people.redhat.com/drepper/tls.pdf for the gory details.
538 #if ABSL_HAVE_ATTRIBUTE(tls_model) || (defined(__GNUC__) && !defined(__clang__))
539 #define ABSL_ATTRIBUTE_INITIAL_EXEC __attribute__((tls_model("initial-exec")))
540 #else
541 #define ABSL_ATTRIBUTE_INITIAL_EXEC
542 #endif
543 
544 // ABSL_ATTRIBUTE_PACKED
545 //
546 // Instructs the compiler not to use natural alignment for a tagged data
547 // structure, but instead to reduce its alignment to 1. This attribute can
548 // either be applied to members of a structure or to a structure in its
549 // entirety. Applying this attribute (judiciously) to a structure in its
550 // entirety to optimize the memory footprint of very commonly-used structs is
551 // fine. Do not apply this attribute to a structure in its entirety if the
552 // purpose is to control the offsets of the members in the structure. Instead,
553 // apply this attribute only to structure members that need it.
554 //
555 // When applying ABSL_ATTRIBUTE_PACKED only to specific structure members the
556 // natural alignment of structure members not annotated is preserved. Aligned
557 // member accesses are faster than non-aligned member accesses even if the
558 // targeted microprocessor supports non-aligned accesses.
559 #if ABSL_HAVE_ATTRIBUTE(packed) || (defined(__GNUC__) && !defined(__clang__))
560 #define ABSL_ATTRIBUTE_PACKED __attribute__((__packed__))
561 #else
562 #define ABSL_ATTRIBUTE_PACKED
563 #endif
564 
565 // ABSL_ATTRIBUTE_FUNC_ALIGN
566 //
567 // Tells the compiler to align the function start at least to certain
568 // alignment boundary
569 #if ABSL_HAVE_ATTRIBUTE(aligned) || (defined(__GNUC__) && !defined(__clang__))
570 #define ABSL_ATTRIBUTE_FUNC_ALIGN(bytes) __attribute__((aligned(bytes)))
571 #else
572 #define ABSL_ATTRIBUTE_FUNC_ALIGN(bytes)
573 #endif
574 
575 // ABSL_FALLTHROUGH_INTENDED
576 //
577 // Annotates implicit fall-through between switch labels, allowing a case to
578 // indicate intentional fallthrough and turn off warnings about any lack of a
579 // `break` statement. The ABSL_FALLTHROUGH_INTENDED macro should be followed by
580 // a semicolon and can be used in most places where `break` can, provided that
581 // no statements exist between it and the next switch label.
582 //
583 // Example:
584 //
585 //  switch (x) {
586 //    case 40:
587 //    case 41:
588 //      if (truth_is_out_there) {
589 //        ++x;
590 //        ABSL_FALLTHROUGH_INTENDED;  // Use instead of/along with annotations
591 //                                    // in comments
592 //      } else {
593 //        return x;
594 //      }
595 //    case 42:
596 //      ...
597 //
598 // Notes: when compiled with clang in C++11 mode, the ABSL_FALLTHROUGH_INTENDED
599 // macro is expanded to the [[clang::fallthrough]] attribute, which is analysed
600 // when  performing switch labels fall-through diagnostic
601 // (`-Wimplicit-fallthrough`). See clang documentation on language extensions
602 // for details:
603 // https://clang.llvm.org/docs/AttributeReference.html#fallthrough-clang-fallthrough
604 //
605 // When used with unsupported compilers, the ABSL_FALLTHROUGH_INTENDED macro
606 // has no effect on diagnostics. In any case this macro has no effect on runtime
607 // behavior and performance of code.
608 
609 #ifdef ABSL_FALLTHROUGH_INTENDED
610 #error "ABSL_FALLTHROUGH_INTENDED should not be defined."
611 #endif
612 
613 // TODO(zhangxy): Use c++17 standard [[fallthrough]] macro, when supported.
614 #if defined(__clang__) && defined(__has_warning)
615 #if __has_feature(cxx_attributes) && __has_warning("-Wimplicit-fallthrough")
616 #define ABSL_FALLTHROUGH_INTENDED [[clang::fallthrough]]
617 #endif
618 #elif defined(__GNUC__) && __GNUC__ >= 7
619 #define ABSL_FALLTHROUGH_INTENDED [[gnu::fallthrough]]
620 #endif
621 
622 #ifndef ABSL_FALLTHROUGH_INTENDED
623 #define ABSL_FALLTHROUGH_INTENDED \
624   do {                            \
625   } while (0)
626 #endif
627 
628 // ABSL_DEPRECATED()
629 //
630 // Marks a deprecated class, struct, enum, function, method and variable
631 // declarations. The macro argument is used as a custom diagnostic message (e.g.
632 // suggestion of a better alternative).
633 //
634 // Examples:
635 //
636 //   class ABSL_DEPRECATED("Use Bar instead") Foo {...};
637 //
638 //   ABSL_DEPRECATED("Use Baz() instead") void Bar() {...}
639 //
640 //   template <typename T>
641 //   ABSL_DEPRECATED("Use DoThat() instead")
642 //   void DoThis();
643 //
644 // Every usage of a deprecated entity will trigger a warning when compiled with
645 // clang's `-Wdeprecated-declarations` option. This option is turned off by
646 // default, but the warnings will be reported by clang-tidy.
647 #if defined(__clang__) && defined(__cplusplus) && __cplusplus >= 201103L
648 #define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
649 #endif
650 
651 #ifndef ABSL_DEPRECATED
652 #define ABSL_DEPRECATED(message)
653 #endif
654 
655 // ABSL_CONST_INIT
656 //
657 // A variable declaration annotated with the `ABSL_CONST_INIT` attribute will
658 // not compile (on supported platforms) unless the variable has a constant
659 // initializer. This is useful for variables with static and thread storage
660 // duration, because it guarantees that they will not suffer from the so-called
661 // "static init order fiasco".  Prefer to put this attribute on the most visible
662 // declaration of the variable, if there's more than one, because code that
663 // accesses the variable can then use the attribute for optimization.
664 //
665 // Example:
666 //
667 //   class MyClass {
668 //    public:
669 //     ABSL_CONST_INIT static MyType my_var;
670 //   };
671 //
672 //   MyType MyClass::my_var = MakeMyType(...);
673 //
674 // Note that this attribute is redundant if the variable is declared constexpr.
675 #if ABSL_HAVE_CPP_ATTRIBUTE(clang::require_constant_initialization)
676 #define ABSL_CONST_INIT [[clang::require_constant_initialization]]
677 #else
678 #define ABSL_CONST_INIT
679 #endif  // ABSL_HAVE_CPP_ATTRIBUTE(clang::require_constant_initialization)
680 
681 // ABSL_ATTRIBUTE_PURE_FUNCTION
682 //
683 // ABSL_ATTRIBUTE_PURE_FUNCTION is used to annotate declarations of "pure"
684 // functions. A function is pure if its return value is only a function of its
685 // arguments. The pure attribute prohibits a function from modifying the state
686 // of the program that is observable by means other than inspecting the
687 // function's return value. Declaring such functions with the pure attribute
688 // allows the compiler to avoid emitting some calls in repeated invocations of
689 // the function with the same argument values.
690 //
691 // Example:
692 //
693 //  ABSL_ATTRIBUTE_PURE_FUNCTION int64_t ToInt64Milliseconds(Duration d);
694 #if ABSL_HAVE_CPP_ATTRIBUTE(gnu::pure)
695 #define ABSL_ATTRIBUTE_PURE_FUNCTION [[gnu::pure]]
696 #elif ABSL_HAVE_ATTRIBUTE(pure)
697 #define ABSL_ATTRIBUTE_PURE_FUNCTION __attribute__((pure))
698 #else
699 #define ABSL_ATTRIBUTE_PURE_FUNCTION
700 #endif
701 
702 #endif  // ABSL_BASE_ATTRIBUTES_H_
703