blob: 4cf524ccab43020d7adb70b3e523a2268d153953 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __LINUX_COMPILER_TYPES_H
3#error "Please don't include <linux/compiler-gcc.h> directly, include <linux/compiler.h> instead."
4#endif
5
6/*
7 * Common definitions for all gcc versions go here.
8 */
9#define GCC_VERSION (__GNUC__ * 10000 \
10 + __GNUC_MINOR__ * 100 \
11 + __GNUC_PATCHLEVEL__)
12
Olivier Deprez157378f2022-04-04 15:47:50 +020013/* https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58145 */
14#if GCC_VERSION < 40900
15# error Sorry, your version of GCC is too old - please use 4.9 or newer.
Olivier Deprez0e641232021-09-23 10:07:05 +020016#elif defined(CONFIG_ARM64) && GCC_VERSION < 50100
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000017/*
Olivier Deprez0e641232021-09-23 10:07:05 +020018 * https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63293
19 * https://lore.kernel.org/r/20210107111841.GN1551@shell.armlinux.org.uk
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000020 */
Olivier Deprez0e641232021-09-23 10:07:05 +020021# error Sorry, your version of GCC is too old - please use 5.1 or newer.
22#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000023
24/*
25 * This macro obfuscates arithmetic on a variable address so that gcc
26 * shouldn't recognize the original var, and make assumptions about it.
27 *
28 * This is needed because the C standard makes it undefined to do
29 * pointer arithmetic on "objects" outside their boundaries and the
30 * gcc optimizers assume this is the case. In particular they
31 * assume such arithmetic does not wrap.
32 *
33 * A miscompilation has been observed because of this on PPC.
34 * To work around it we hide the relationship of the pointer and the object
35 * using this macro.
36 *
37 * Versions of the ppc64 compiler before 4.1 had a bug where use of
38 * RELOC_HIDE could trash r30. The bug can be worked around by changing
39 * the inline assembly constraint from =g to =r, in this particular
40 * case either is valid.
41 */
42#define RELOC_HIDE(ptr, off) \
43({ \
44 unsigned long __ptr; \
45 __asm__ ("" : "=r"(__ptr) : "0"(ptr)); \
46 (typeof(ptr)) (__ptr + (off)); \
47})
48
David Brazdil0f672f62019-12-10 10:32:29 +000049#ifdef CONFIG_RETPOLINE
50#define __noretpoline __attribute__((__indirect_branch__("keep")))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000051#endif
52
53#define __UNIQUE_ID(prefix) __PASTE(__PASTE(__UNIQUE_ID_, prefix), __COUNTER__)
54
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000055#define __compiletime_object_size(obj) __builtin_object_size(obj, 0)
56
David Brazdil0f672f62019-12-10 10:32:29 +000057#define __compiletime_warning(message) __attribute__((__warning__(message)))
58#define __compiletime_error(message) __attribute__((__error__(message)))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000059
David Brazdil0f672f62019-12-10 10:32:29 +000060#if defined(LATENT_ENTROPY_PLUGIN) && !defined(__CHECKER__)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000061#define __latent_entropy __attribute__((latent_entropy))
62#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000063
64/*
65 * calling noreturn functions, __builtin_unreachable() and __builtin_trap()
66 * confuse the stack allocation in gcc, leading to overly large stack
67 * frames, see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82365
68 *
69 * Adding an empty inline assembly before it works around the problem
70 */
71#define barrier_before_unreachable() asm volatile("")
72
73/*
74 * Mark a position in code as unreachable. This can be used to
75 * suppress control flow warnings after asm blocks that transfer
76 * control elsewhere.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000077 */
78#define unreachable() \
79 do { \
80 annotate_unreachable(); \
81 barrier_before_unreachable(); \
82 __builtin_unreachable(); \
83 } while (0)
84
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000085#if defined(RANDSTRUCT_PLUGIN) && !defined(__CHECKER__)
86#define __randomize_layout __attribute__((randomize_layout))
87#define __no_randomize_layout __attribute__((no_randomize_layout))
88/* This anon struct can add padding, so only enable it under randstruct. */
89#define randomized_struct_fields_start struct {
90#define randomized_struct_fields_end } __randomize_layout;
91#endif
92
93/*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000094 * GCC 'asm goto' miscompiles certain code sequences:
95 *
96 * http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58670
97 *
98 * Work it around via a compiler barrier quirk suggested by Jakub Jelinek.
99 *
100 * (asm goto is automatically volatile - the naming reflects this.)
101 */
102#define asm_volatile_goto(x...) do { asm goto(x); asm (""); } while (0)
103
104/*
105 * sparse (__CHECKER__) pretends to be gcc, but can't do constant
106 * folding in __builtin_bswap*() (yet), so don't set these for it.
107 */
108#if defined(CONFIG_ARCH_USE_BUILTIN_BSWAP) && !defined(__CHECKER__)
109#define __HAVE_BUILTIN_BSWAP32__
110#define __HAVE_BUILTIN_BSWAP64__
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000111#define __HAVE_BUILTIN_BSWAP16__
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000112#endif /* CONFIG_ARCH_USE_BUILTIN_BSWAP && !__CHECKER__ */
113
114#if GCC_VERSION >= 70000
115#define KASAN_ABI_VERSION 5
116#elif GCC_VERSION >= 50000
117#define KASAN_ABI_VERSION 4
118#elif GCC_VERSION >= 40902
119#define KASAN_ABI_VERSION 3
120#endif
121
David Brazdil0f672f62019-12-10 10:32:29 +0000122#if __has_attribute(__no_sanitize_address__)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000123#define __no_sanitize_address __attribute__((no_sanitize_address))
David Brazdil0f672f62019-12-10 10:32:29 +0000124#else
125#define __no_sanitize_address
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000126#endif
127
Olivier Deprez157378f2022-04-04 15:47:50 +0200128#if defined(__SANITIZE_THREAD__) && __has_attribute(__no_sanitize_thread__)
129#define __no_sanitize_thread __attribute__((no_sanitize_thread))
130#else
131#define __no_sanitize_thread
132#endif
133
134#if __has_attribute(__no_sanitize_undefined__)
135#define __no_sanitize_undefined __attribute__((no_sanitize_undefined))
136#else
137#define __no_sanitize_undefined
138#endif
139
140#if defined(CONFIG_KCOV) && __has_attribute(__no_sanitize_coverage__)
141#define __no_sanitize_coverage __attribute__((no_sanitize_coverage))
142#else
143#define __no_sanitize_coverage
144#endif
145
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000146#if GCC_VERSION >= 50100
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000147#define COMPILER_HAS_GENERIC_BUILTIN_OVERFLOW 1
148#endif
149
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000150/*
151 * Turn individual warnings and errors on and off locally, depending
152 * on version.
153 */
154#define __diag_GCC(version, severity, s) \
155 __diag_GCC_ ## version(__diag_GCC_ ## severity s)
156
157/* Severity used in pragma directives */
158#define __diag_GCC_ignore ignored
159#define __diag_GCC_warn warning
160#define __diag_GCC_error error
161
162#define __diag_str1(s) #s
163#define __diag_str(s) __diag_str1(s)
164#define __diag(s) _Pragma(__diag_str(GCC diagnostic s))
165
166#if GCC_VERSION >= 80000
167#define __diag_GCC_8(s) __diag(s)
168#else
169#define __diag_GCC_8(s)
170#endif