gcc.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576
  1. /*
  2. * Copyright (c) 2010-2014,2017 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_TOOLCHAIN_GCC_H_
  7. #define ZEPHYR_INCLUDE_TOOLCHAIN_GCC_H_
  8. /**
  9. * @file
  10. * @brief GCC toolchain abstraction
  11. *
  12. * Macros to abstract compiler capabilities for GCC toolchain.
  13. */
  14. /*
  15. * Older versions of GCC do not define __BYTE_ORDER__, so it must be manually
  16. * detected and defined using arch-specific definitions.
  17. */
  18. #ifndef _LINKER
  19. #ifndef __ORDER_BIG_ENDIAN__
  20. #define __ORDER_BIG_ENDIAN__ (1)
  21. #endif
  22. #ifndef __ORDER_LITTLE_ENDIAN__
  23. #define __ORDER_LITTLE_ENDIAN__ (2)
  24. #endif
  25. #ifndef __BYTE_ORDER__
  26. #if defined(__BIG_ENDIAN__) || defined(__ARMEB__) || \
  27. defined(__THUMBEB__) || defined(__AARCH64EB__) || \
  28. defined(__MIPSEB__) || defined(__TC32EB__)
  29. #define __BYTE_ORDER__ __ORDER_BIG_ENDIAN__
  30. #elif defined(__LITTLE_ENDIAN__) || defined(__ARMEL__) || \
  31. defined(__THUMBEL__) || defined(__AARCH64EL__) || \
  32. defined(__MIPSEL__) || defined(__TC32EL__)
  33. #define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
  34. #else
  35. #error "__BYTE_ORDER__ is not defined and cannot be automatically resolved"
  36. #endif
  37. #endif
  38. /* C++11 has static_assert built in */
  39. #ifdef __cplusplus
  40. #define BUILD_ASSERT(EXPR, MSG...) static_assert(EXPR, "" MSG)
  41. /*
  42. * GCC 4.6 and higher have the C11 _Static_assert built in, and its
  43. * output is easier to understand than the common BUILD_ASSERT macros.
  44. */
  45. #elif (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) || \
  46. (__STDC_VERSION__) >= 201100
  47. #define BUILD_ASSERT(EXPR, MSG...) _Static_assert(EXPR, "" MSG)
  48. #else
  49. #define BUILD_ASSERT(EXPR, MSG...)
  50. #endif
  51. #include <toolchain/common.h>
  52. #include <stdbool.h>
  53. #define ALIAS_OF(of) __attribute__((alias(#of)))
  54. #define FUNC_ALIAS(real_func, new_alias, return_type) \
  55. return_type new_alias() ALIAS_OF(real_func)
  56. #if defined(CONFIG_ARCH_POSIX)
  57. #include <arch/posix/posix_trace.h>
  58. /*let's not segfault if this were to happen for some reason*/
  59. #define CODE_UNREACHABLE \
  60. {\
  61. posix_print_error_and_exit("CODE_UNREACHABLE reached from %s:%d\n",\
  62. __FILE__, __LINE__);\
  63. __builtin_unreachable(); \
  64. }
  65. #else
  66. #define CODE_UNREACHABLE __builtin_unreachable()
  67. #endif
  68. #define FUNC_NORETURN __attribute__((__noreturn__))
  69. /* The GNU assembler for Cortex-M3 uses # for immediate values, not
  70. * comments, so the @nobits# trick does not work.
  71. */
  72. #if defined(CONFIG_ARM) || defined(CONFIG_ARM64)
  73. #define _NODATA_SECTION(segment) __attribute__((section(#segment)))
  74. #else
  75. #define _NODATA_SECTION(segment) \
  76. __attribute__((section(#segment ",\"wa\",@nobits#")))
  77. #endif
  78. /* Unaligned access */
  79. #define UNALIGNED_GET(p) \
  80. __extension__ ({ \
  81. struct __attribute__((__packed__)) { \
  82. __typeof__(*(p)) __v; \
  83. } *__p = (__typeof__(__p)) (p); \
  84. __p->__v; \
  85. })
  86. #if __GNUC__ >= 7 && (defined(CONFIG_ARM) || defined(CONFIG_ARM64))
  87. /* Version of UNALIGNED_PUT() which issues a compiler_barrier() after
  88. * the store. It is required to workaround an apparent optimization
  89. * bug in GCC for ARM Cortex-M3 and higher targets, when multiple
  90. * byte, half-word and word stores (strb, strh, str instructions),
  91. * which support unaligned access, can be coalesced into store double
  92. * (strd) instruction, which doesn't support unaligned access (the
  93. * compilers in question do this optimization ignoring __packed__
  94. * attribute).
  95. */
  96. #define UNALIGNED_PUT(v, p) \
  97. do { \
  98. struct __attribute__((__packed__)) { \
  99. __typeof__(*p) __v; \
  100. } *__p = (__typeof__(__p)) (p); \
  101. __p->__v = (v); \
  102. compiler_barrier(); \
  103. } while (false)
  104. #else
  105. #define UNALIGNED_PUT(v, p) \
  106. do { \
  107. struct __attribute__((__packed__)) { \
  108. __typeof__(*p) __v; \
  109. } *__p = (__typeof__(__p)) (p); \
  110. __p->__v = (v); \
  111. } while (false)
  112. #endif
  113. /* Double indirection to ensure section names are expanded before
  114. * stringification
  115. */
  116. #define __GENERIC_SECTION(segment) __attribute__((section(STRINGIFY(segment))))
  117. #define Z_GENERIC_SECTION(segment) __GENERIC_SECTION(segment)
  118. #define __GENERIC_DOT_SECTION(segment) \
  119. __attribute__((section("." STRINGIFY(segment))))
  120. #define Z_GENERIC_DOT_SECTION(segment) __GENERIC_DOT_SECTION(segment)
  121. #define ___in_section(a, b, c) \
  122. __attribute__((section("." Z_STRINGIFY(a) \
  123. "." Z_STRINGIFY(b) \
  124. "." Z_STRINGIFY(c))))
  125. #define __in_section(a, b, c) ___in_section(a, b, c)
  126. #define __in_section_unique(seg) ___in_section(seg, __FILE__, __COUNTER__)
  127. #define __in_section_unique_named(seg, name) \
  128. ___in_section(seg, __FILE__, name)
  129. /* When using XIP, using '__ramfunc' places a function into RAM instead
  130. * of FLASH. Make sure '__ramfunc' is defined only when
  131. * CONFIG_ARCH_HAS_RAMFUNC_SUPPORT is defined, so that the compiler can
  132. * report an error if '__ramfunc' is used but the architecture does not
  133. * support it.
  134. */
  135. #if !defined(CONFIG_XIP)
  136. #define __ramfunc
  137. #elif defined(CONFIG_ARCH_HAS_RAMFUNC_SUPPORT)
  138. #define __ramfunc __attribute__((noinline)) \
  139. __attribute__((long_call, section(".ramfunc")))
  140. #endif /* !CONFIG_XIP */
  141. #ifndef __fallthrough
  142. #if __GNUC__ >= 7
  143. #define __fallthrough __attribute__((fallthrough))
  144. #else
  145. #define __fallthrough
  146. #endif /* __GNUC__ >= 7 */
  147. #endif
  148. #ifndef __packed
  149. #define __packed __attribute__((__packed__))
  150. #endif
  151. #ifndef __aligned
  152. #define __aligned(x) __attribute__((__aligned__(x)))
  153. #endif
  154. #define __may_alias __attribute__((__may_alias__))
  155. #ifndef __printf_like
  156. #define __printf_like(f, a) __attribute__((format (printf, f, a)))
  157. #endif
  158. #define __used __attribute__((__used__))
  159. #ifndef __deprecated
  160. #define __deprecated __attribute__((deprecated))
  161. #endif
  162. #ifndef __attribute_const__
  163. #define __attribute_const__ __attribute__((__const__))
  164. #endif
  165. #ifndef __must_check
  166. #define __must_check __attribute__((warn_unused_result))
  167. #endif
  168. #define ARG_UNUSED(x) (void)(x)
  169. #define likely(x) __builtin_expect((bool)!!(x), true)
  170. #define unlikely(x) __builtin_expect((bool)!!(x), false)
  171. #define popcount(x) __builtin_popcount(x)
  172. #ifndef __no_optimization
  173. #define __no_optimization __attribute__((optimize("-O0")))
  174. #endif
  175. #ifndef __weak
  176. #define __weak __attribute__((__weak__))
  177. #endif
  178. #define __unused __attribute__((__unused__))
  179. /* Builtins with availability that depend on the compiler version. */
  180. #if __GNUC__ >= 5
  181. #define HAS_BUILTIN___builtin_add_overflow 1
  182. #define HAS_BUILTIN___builtin_sub_overflow 1
  183. #define HAS_BUILTIN___builtin_mul_overflow 1
  184. #define HAS_BUILTIN___builtin_div_overflow 1
  185. #endif
  186. #if __GNUC__ >= 4
  187. #define HAS_BUILTIN___builtin_clz 1
  188. #define HAS_BUILTIN___builtin_clzl 1
  189. #define HAS_BUILTIN___builtin_clzll 1
  190. #define HAS_BUILTIN___builtin_ctz 1
  191. #define HAS_BUILTIN___builtin_ctzl 1
  192. #define HAS_BUILTIN___builtin_ctzll 1
  193. #endif
  194. /*
  195. * Be *very* careful with these. You cannot filter out __DEPRECATED_MACRO with
  196. * -wno-deprecated, which has implications for -Werror.
  197. */
  198. /*
  199. * Expands to nothing and generates a warning. Used like
  200. *
  201. * #define FOO __WARN("Please use BAR instead") ...
  202. *
  203. * The warning points to the location where the macro is expanded.
  204. */
  205. #define __WARN(msg) __WARN1(GCC warning msg)
  206. #define __WARN1(s) _Pragma(#s)
  207. /* Generic message */
  208. #ifndef __DEPRECATED_MACRO
  209. #define __DEPRECATED_MACRO __WARN("Macro is deprecated")
  210. #endif
  211. /* These macros allow having ARM asm functions callable from thumb */
  212. #if defined(_ASMLANGUAGE)
  213. #if defined(CONFIG_ARM)
  214. #if defined(CONFIG_ASSEMBLER_ISA_THUMB2)
  215. #define FUNC_CODE() .thumb;
  216. #define FUNC_INSTR(a)
  217. #else
  218. #define FUNC_CODE() .code 32
  219. #define FUNC_INSTR(a)
  220. #endif /* CONFIG_ASSEMBLER_ISA_THUMB2 */
  221. #else
  222. #define FUNC_CODE()
  223. #define FUNC_INSTR(a)
  224. #endif /* CONFIG_ARM */
  225. #endif /* _ASMLANGUAGE */
  226. /*
  227. * These macros are used to declare assembly language symbols that need
  228. * to be typed properly(func or data) to be visible to the OMF tool.
  229. * So that the build tool could mark them as an entry point to be linked
  230. * correctly. This is an elfism. Use #if 0 for a.out.
  231. */
  232. #if defined(_ASMLANGUAGE)
  233. #if defined(CONFIG_ARM) || defined(CONFIG_NIOS2) || defined(CONFIG_RISCV) \
  234. || defined(CONFIG_XTENSA) || defined(CONFIG_ARM64)
  235. #define GTEXT(sym) .global sym; .type sym, %function
  236. #define GDATA(sym) .global sym; .type sym, %object
  237. #define WTEXT(sym) .weak sym; .type sym, %function
  238. #define WDATA(sym) .weak sym; .type sym, %object
  239. #elif defined(CONFIG_ARC)
  240. /*
  241. * Need to use assembly macros because ';' is interpreted as the start of
  242. * a single line comment in the ARC assembler.
  243. */
  244. .macro glbl_text symbol
  245. .globl \symbol
  246. .type \symbol, %function
  247. .endm
  248. .macro glbl_data symbol
  249. .globl \symbol
  250. .type \symbol, %object
  251. .endm
  252. .macro weak_data symbol
  253. .weak \symbol
  254. .type \symbol, %object
  255. .endm
  256. #define GTEXT(sym) glbl_text sym
  257. #define GDATA(sym) glbl_data sym
  258. #define WDATA(sym) weak_data sym
  259. #else /* !CONFIG_ARM && !CONFIG_ARC */
  260. #define GTEXT(sym) .globl sym; .type sym, @function
  261. #define GDATA(sym) .globl sym; .type sym, @object
  262. #endif
  263. /*
  264. * These macros specify the section in which a given function or variable
  265. * resides.
  266. *
  267. * - SECTION_FUNC allows only one function to reside in a sub-section
  268. * - SECTION_SUBSEC_FUNC allows multiple functions to reside in a sub-section
  269. * This ensures that garbage collection only discards the section
  270. * if all functions in the sub-section are not referenced.
  271. */
  272. #if defined(CONFIG_ARC)
  273. /*
  274. * Need to use assembly macros because ';' is interpreted as the start of
  275. * a single line comment in the ARC assembler.
  276. *
  277. * Also, '\()' is needed in the .section directive of these macros for
  278. * correct substitution of the 'section' variable.
  279. */
  280. .macro section_var section, symbol
  281. .section .\section\().\symbol
  282. \symbol :
  283. .endm
  284. .macro section_func section, symbol
  285. .section .\section\().\symbol, "ax"
  286. FUNC_CODE()
  287. PERFOPT_ALIGN
  288. \symbol :
  289. FUNC_INSTR(\symbol)
  290. .endm
  291. .macro section_subsec_func section, subsection, symbol
  292. .section .\section\().\subsection, "ax"
  293. PERFOPT_ALIGN
  294. \symbol :
  295. .endm
  296. #define SECTION_VAR(sect, sym) section_var sect, sym
  297. #define SECTION_FUNC(sect, sym) section_func sect, sym
  298. #define SECTION_SUBSEC_FUNC(sect, subsec, sym) \
  299. section_subsec_func sect, subsec, sym
  300. #else /* !CONFIG_ARC */
  301. #define SECTION_VAR(sect, sym) .section .sect.sym; sym:
  302. #define SECTION_FUNC(sect, sym) \
  303. .section .sect.sym, "ax"; \
  304. FUNC_CODE() \
  305. PERFOPT_ALIGN; sym : \
  306. FUNC_INSTR(sym)
  307. #define SECTION_SUBSEC_FUNC(sect, subsec, sym) \
  308. .section .sect.subsec, "ax"; PERFOPT_ALIGN; sym :
  309. #endif /* CONFIG_ARC */
  310. #endif /* _ASMLANGUAGE */
  311. #if defined(_ASMLANGUAGE)
  312. #if defined(CONFIG_ARM)
  313. #if defined(CONFIG_ASSEMBLER_ISA_THUMB2)
  314. /* '.syntax unified' is a gcc-ism used in thumb-2 asm files */
  315. #define _ASM_FILE_PROLOGUE .text; .syntax unified; .thumb
  316. #else
  317. #define _ASM_FILE_PROLOGUE .text; .code 32
  318. #endif /* CONFIG_ASSEMBLER_ISA_THUMB2 */
  319. #elif defined(CONFIG_ARM64)
  320. #define _ASM_FILE_PROLOGUE .text
  321. #endif /* CONFIG_ARM64 || CONFIG_ARM */
  322. #endif /* _ASMLANGUAGE */
  323. /*
  324. * These macros generate absolute symbols for GCC
  325. */
  326. /* create an extern reference to the absolute symbol */
  327. #define GEN_OFFSET_EXTERN(name) extern const char name[]
  328. #define GEN_ABS_SYM_BEGIN(name) \
  329. EXTERN_C void name(void); \
  330. void name(void) \
  331. {
  332. #define GEN_ABS_SYM_END }
  333. /*
  334. * Note that GEN_ABSOLUTE_SYM(), depending on the architecture
  335. * and toolchain, may restrict the range of values permitted
  336. * for assignment to the named symbol.
  337. *
  338. * For example, on x86, "value" is interpreated as signed
  339. * 32-bit integer. Passing in an unsigned 32-bit integer
  340. * with MSB set would result in a negative integer.
  341. * Moreover, GCC would error out if an integer larger
  342. * than 2^32-1 is passed as "value".
  343. */
  344. /*
  345. * GEN_ABSOLUTE_SYM_KCONFIG() is outputted by the build system
  346. * to generate named symbol/value pairs for kconfigs.
  347. */
  348. #if defined(CONFIG_ARM)
  349. /*
  350. * GNU/ARM backend does not have a proper operand modifier which does not
  351. * produces prefix # followed by value, such as %0 for PowerPC, Intel, and
  352. * MIPS. The workaround performed here is using %B0 which converts
  353. * the value to ~(value). Thus "n"(~(value)) is set in operand constraint
  354. * to output (value) in the ARM specific GEN_OFFSET macro.
  355. */
  356. #define GEN_ABSOLUTE_SYM(name, value) \
  357. __asm__(".globl\t" #name "\n\t.equ\t" #name \
  358. ",%B0" \
  359. "\n\t.type\t" #name ",%%object" : : "n"(~(value)))
  360. #define GEN_ABSOLUTE_SYM_KCONFIG(name, value) \
  361. __asm__(".globl\t" #name \
  362. "\n\t.equ\t" #name "," #value \
  363. "\n\t.type\t" #name ",%object")
  364. #elif defined(CONFIG_X86)
  365. #define GEN_ABSOLUTE_SYM(name, value) \
  366. __asm__(".globl\t" #name "\n\t.equ\t" #name \
  367. ",%c0" \
  368. "\n\t.type\t" #name ",@object" : : "n"(value))
  369. #define GEN_ABSOLUTE_SYM_KCONFIG(name, value) \
  370. __asm__(".globl\t" #name \
  371. "\n\t.equ\t" #name "," #value \
  372. "\n\t.type\t" #name ",@object")
  373. #elif defined(CONFIG_ARC) || defined(CONFIG_ARM64)
  374. #define GEN_ABSOLUTE_SYM(name, value) \
  375. __asm__(".globl\t" #name "\n\t.equ\t" #name \
  376. ",%c0" \
  377. "\n\t.type\t" #name ",@object" : : "n"(value))
  378. #define GEN_ABSOLUTE_SYM_KCONFIG(name, value) \
  379. __asm__(".globl\t" #name \
  380. "\n\t.equ\t" #name "," #value \
  381. "\n\t.type\t" #name ",@object")
  382. #elif defined(CONFIG_NIOS2) || defined(CONFIG_RISCV) || defined(CONFIG_XTENSA)
  383. /* No special prefixes necessary for constants in this arch AFAICT */
  384. #define GEN_ABSOLUTE_SYM(name, value) \
  385. __asm__(".globl\t" #name "\n\t.equ\t" #name \
  386. ",%0" \
  387. "\n\t.type\t" #name ",%%object" : : "n"(value))
  388. #define GEN_ABSOLUTE_SYM_KCONFIG(name, value) \
  389. __asm__(".globl\t" #name \
  390. "\n\t.equ\t" #name "," #value \
  391. "\n\t.type\t" #name ",%object")
  392. #elif defined(CONFIG_ARCH_POSIX)
  393. #define GEN_ABSOLUTE_SYM(name, value) \
  394. __asm__(".globl\t" #name "\n\t.equ\t" #name \
  395. ",%c0" \
  396. "\n\t.type\t" #name ",@object" : : "n"(value))
  397. #define GEN_ABSOLUTE_SYM_KCONFIG(name, value) \
  398. __asm__(".globl\t" #name \
  399. "\n\t.equ\t" #name "," #value \
  400. "\n\t.type\t" #name ",@object")
  401. #elif defined(CONFIG_SPARC)
  402. #define GEN_ABSOLUTE_SYM(name, value) \
  403. __asm__(".global\t" #name "\n\t.equ\t" #name \
  404. ",%0" \
  405. "\n\t.type\t" #name ",#object" : : "n"(value))
  406. #define GEN_ABSOLUTE_SYM_KCONFIG(name, value) \
  407. __asm__(".globl\t" #name \
  408. "\n\t.equ\t" #name "," #value \
  409. "\n\t.type\t" #name ",#object")
  410. #else
  411. #error processor architecture not supported
  412. #endif
  413. #define compiler_barrier() do { \
  414. __asm__ __volatile__ ("" ::: "memory"); \
  415. } while (false)
  416. /** @brief Return larger value of two provided expressions.
  417. *
  418. * Macro ensures that expressions are evaluated only once.
  419. *
  420. * @note Macro has limited usage compared to the standard macro as it cannot be
  421. * used:
  422. * - to generate constant integer, e.g. __aligned(Z_MAX(4,5))
  423. * - static variable, e.g. array like static uint8_t array[Z_MAX(...)];
  424. */
  425. #define Z_MAX(a, b) ({ \
  426. /* random suffix to avoid naming conflict */ \
  427. __typeof__(a) _value_a_ = (a); \
  428. __typeof__(b) _value_b_ = (b); \
  429. _value_a_ > _value_b_ ? _value_a_ : _value_b_; \
  430. })
  431. /** @brief Return smaller value of two provided expressions.
  432. *
  433. * Macro ensures that expressions are evaluated only once. See @ref Z_MAX for
  434. * macro limitations.
  435. */
  436. #define Z_MIN(a, b) ({ \
  437. /* random suffix to avoid naming conflict */ \
  438. __typeof__(a) _value_a_ = (a); \
  439. __typeof__(b) _value_b_ = (b); \
  440. _value_a_ < _value_b_ ? _value_a_ : _value_b_; \
  441. })
  442. /** @brief Return a value clamped to a given range.
  443. *
  444. * Macro ensures that expressions are evaluated only once. See @ref Z_MAX for
  445. * macro limitations.
  446. */
  447. #define Z_CLAMP(val, low, high) ({ \
  448. /* random suffix to avoid naming conflict */ \
  449. __typeof__(val) _value_val_ = (val); \
  450. __typeof__(low) _value_low_ = (low); \
  451. __typeof__(high) _value_high_ = (high); \
  452. (_value_val_ < _value_low_) ? _value_low_ : \
  453. (_value_val_ > _value_high_) ? _value_high_ : \
  454. _value_val_; \
  455. })
  456. /**
  457. * @brief Calculate power of two ceiling for some nonzero value
  458. *
  459. * @param x Nonzero unsigned long value
  460. * @return X rounded up to the next power of two
  461. */
  462. #ifdef CONFIG_64BIT
  463. #define Z_POW2_CEIL(x) ((1UL << (63U - __builtin_clzl(x))) < x ? \
  464. 1UL << (63U - __builtin_clzl(x) + 1U) : \
  465. 1UL << (63U - __builtin_clzl(x)))
  466. #else
  467. #define Z_POW2_CEIL(x) ((1UL << (31U - __builtin_clzl(x))) < x ? \
  468. 1UL << (31U - __builtin_clzl(x) + 1U) : \
  469. 1UL << (31U - __builtin_clzl(x)))
  470. #endif
  471. #endif /* !_LINKER */
  472. #endif /* ZEPHYR_INCLUDE_TOOLCHAIN_GCC_H_ */