common.h 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. /*
  2. * Copyright (c) 2010-2014 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_TOOLCHAIN_COMMON_H_
  7. #define ZEPHYR_INCLUDE_TOOLCHAIN_COMMON_H_
  8. /**
  9. * @file
  10. * @brief Common toolchain abstraction
  11. *
  12. * Macros to abstract compiler capabilities (common to all toolchains).
  13. */
  14. /* Abstract use of extern keyword for compatibility between C and C++ */
  15. #ifdef __cplusplus
  16. #define EXTERN_C extern "C"
  17. #else
  18. #define EXTERN_C extern
  19. #endif
  20. /* Use TASK_ENTRY_CPP to tag task entry points defined in C++ files. */
  21. #ifdef __cplusplus
  22. #define TASK_ENTRY_CPP extern "C"
  23. #endif
  24. /*
  25. * Generate a reference to an external symbol.
  26. * The reference indicates to the linker that the symbol is required
  27. * by the module containing the reference and should be included
  28. * in the image if the module is in the image.
  29. *
  30. * The assembler directive ".set" is used to define a local symbol.
  31. * No memory is allocated, and the local symbol does not appear in
  32. * the symbol table.
  33. */
  34. #ifdef _ASMLANGUAGE
  35. #define REQUIRES(sym) .set sym ## _Requires, sym
  36. #else
  37. #define REQUIRES(sym) __asm__ (".set " # sym "_Requires, " # sym "\n\t");
  38. #endif
  39. #ifdef _ASMLANGUAGE
  40. #define SECTION .section
  41. #endif
  42. /*
  43. * If the project is being built for speed (i.e. not for minimum size) then
  44. * align functions and branches in executable sections to improve performance.
  45. */
  46. #ifdef _ASMLANGUAGE
  47. #if defined(CONFIG_X86)
  48. #ifdef PERF_OPT
  49. #define PERFOPT_ALIGN .balign 16
  50. #else
  51. #define PERFOPT_ALIGN .balign 1
  52. #endif
  53. #elif defined(CONFIG_ARM) || defined(CONFIG_ARM64)
  54. #define PERFOPT_ALIGN .balign 4
  55. #elif defined(CONFIG_ARC)
  56. /* .align assembler directive is supposed by all ARC toolchains and it is
  57. * implemented in a same way across ARC toolchains.
  58. */
  59. #define PERFOPT_ALIGN .align 4
  60. #elif defined(CONFIG_NIOS2) || defined(CONFIG_RISCV) || \
  61. defined(CONFIG_XTENSA)
  62. #define PERFOPT_ALIGN .balign 4
  63. #elif defined(CONFIG_ARCH_POSIX)
  64. #elif defined(CONFIG_SPARC)
  65. #define PERFOPT_ALIGN .align 4
  66. #else
  67. #error Architecture unsupported
  68. #endif
  69. #define GC_SECTION(sym) SECTION .text.##sym, "ax"
  70. #endif /* _ASMLANGUAGE */
  71. /* force inlining a function */
  72. #if !defined(_ASMLANGUAGE)
  73. #ifdef CONFIG_COVERAGE
  74. /*
  75. * The always_inline attribute forces a function to be inlined,
  76. * even ignoring -fno-inline. So for code coverage, do not
  77. * force inlining of these functions to keep their bodies around
  78. * so their number of executions can be counted.
  79. *
  80. * Note that "inline" is kept here for kobject_hash.c and
  81. * priv_stacks_hash.c. These are built without compiler flags
  82. * used for coverage. ALWAYS_INLINE cannot be empty as compiler
  83. * would complain about unused functions. Attaching unused
  84. * attribute would result in their text sections balloon more than
  85. * 10 times in size, as those functions are kept in text section.
  86. * So just keep "inline" here.
  87. */
  88. #define ALWAYS_INLINE inline
  89. #else
  90. #define ALWAYS_INLINE inline __attribute__((always_inline))
  91. #endif
  92. #endif
  93. #define Z_STRINGIFY(x) #x
  94. #define STRINGIFY(s) Z_STRINGIFY(s)
  95. /* concatenate the values of the arguments into one */
  96. #define _DO_CONCAT(x, y) x ## y
  97. #define _CONCAT(x, y) _DO_CONCAT(x, y)
  98. /* Additionally used as a sentinel by gen_syscalls.py to identify what
  99. * functions are system calls
  100. *
  101. * Note POSIX unit tests don't still generate the system call stubs, so
  102. * until https://github.com/zephyrproject-rtos/zephyr/issues/5006 is
  103. * fixed via possibly #4174, we introduce this hack -- which will
  104. * disallow us to test system calls in POSIX unit testing (currently
  105. * not used).
  106. */
  107. #ifndef ZTEST_UNITTEST
  108. #define __syscall static inline
  109. #else
  110. #define __syscall
  111. #endif /* ZTEST_UNITTEST */
  112. /* Definitions for struct declaration tags. These are sentinel values used by
  113. * parse_syscalls.py to gather a list of names of struct declarations that
  114. * have these tags applied for them.
  115. */
  116. /* Indicates this is a driver subsystem */
  117. #define __subsystem
  118. /* Indicates this is a network socket object */
  119. #define __net_socket
  120. #ifndef BUILD_ASSERT
  121. /* Compile-time assertion that makes the build to fail.
  122. * Common implementation swallows the message.
  123. */
  124. #define BUILD_ASSERT(EXPR, MSG...) \
  125. enum _CONCAT(__build_assert_enum, __COUNTER__) { \
  126. _CONCAT(__build_assert, __COUNTER__) = 1 / !!(EXPR) \
  127. }
  128. #endif
  129. /*
  130. * This is meant to be used in conjunction with __in_section() and similar
  131. * where scattered structure instances are concatenated together by the linker
  132. * and walked by the code at run time just like a contiguous array of such
  133. * structures.
  134. *
  135. * Assemblers and linkers may insert alignment padding by default whose
  136. * size is larger than the natural alignment for those structures when
  137. * gathering various section segments together, messing up the array walk.
  138. * To prevent this, we need to provide an explicit alignment not to rely
  139. * on the default that might just work by luck.
  140. *
  141. * Alignment statements in linker scripts are not sufficient as
  142. * the assembler may add padding by itself to each segment when switching
  143. * between sections within the same file even if it merges many such segments
  144. * into a single section in the end.
  145. */
  146. #define Z_DECL_ALIGN(type) __aligned(__alignof(type)) type
  147. /**
  148. * @brief Iterable Sections APIs
  149. * @defgroup iterable_section_apis Iterable Sections APIs
  150. * @{
  151. */
  152. /**
  153. * @brief Defines a new iterable section.
  154. *
  155. * @details
  156. * Convenience helper combining __in_section() and Z_DECL_ALIGN().
  157. * The section name is the struct type prepended with an underscore.
  158. * The subsection is "static" and the subsubsection is the variable name.
  159. *
  160. * In the linker script, create output sections for these using
  161. * ITERABLE_SECTION_ROM() or ITERABLE_SECTION_RAM().
  162. */
  163. #define STRUCT_SECTION_ITERABLE(struct_type, name) \
  164. Z_DECL_ALIGN(struct struct_type) name \
  165. __in_section(_##struct_type, static, name) __used
  166. #define Z_STRUCT_SECTION_ITERABLE(struct_type, name) \
  167. __DEPRECATED_MACRO \
  168. STRUCT_SECTION_ITERABLE(struct_type, name)
  169. /**
  170. * @brief Defines an alternate data type iterable section.
  171. *
  172. * @details
  173. * Special variant of STRUCT_SECTION_ITERABLE(), for placing alternate
  174. * data types within the iterable section of a specific data type. The
  175. * data type sizes and semantics must be equivalent!
  176. */
  177. #define STRUCT_SECTION_ITERABLE_ALTERNATE(out_type, struct_type, name) \
  178. Z_DECL_ALIGN(struct struct_type) name \
  179. __in_section(_##out_type, static, name) __used
  180. #define Z_STRUCT_SECTION_ITERABLE_ALTERNATE(out_type, struct_type, name) \
  181. __DEPRECATED_MACRO \
  182. STRUCT_SECTION_ITERABLE_ALTERNATE(out_type, struct_type, name)
  183. /**
  184. * @brief Iterate over a specified iterable section.
  185. *
  186. * @details
  187. * Iterator for structure instances gathered by STRUCT_SECTION_ITERABLE().
  188. * The linker must provide a _<struct_type>_list_start symbol and a
  189. * _<struct_type>_list_end symbol to mark the start and the end of the
  190. * list of struct objects to iterate over. This is normally done using
  191. * ITERABLE_SECTION_ROM() or ITERABLE_SECTION_RAM() in the linker script.
  192. */
  193. #define STRUCT_SECTION_FOREACH(struct_type, iterator) \
  194. extern struct struct_type _CONCAT(_##struct_type, _list_start)[]; \
  195. extern struct struct_type _CONCAT(_##struct_type, _list_end)[]; \
  196. for (struct struct_type *iterator = \
  197. _CONCAT(_##struct_type, _list_start); \
  198. ({ __ASSERT(iterator <= _CONCAT(_##struct_type, _list_end), \
  199. "unexpected list end location"); \
  200. iterator < _CONCAT(_##struct_type, _list_end); }); \
  201. iterator++)
  202. #define Z_STRUCT_SECTION_FOREACH(struct_type, iterator) \
  203. __DEPRECATED_MACRO \
  204. STRUCT_SECTION_FOREACH(struct_type, iterator)
  205. /**
  206. * @}
  207. */ /* end of struct_section_apis */
  208. #define LOG2CEIL(x) \
  209. ((((x) <= 4) ? 2 : (((x) <= 8) ? 3 : (((x) <= 16) ? \
  210. 4 : (((x) <= 32) ? 5 : (((x) <= 64) ? 6 : (((x) <= 128) ? \
  211. 7 : (((x) <= 256) ? 8 : (((x) <= 512) ? 9 : (((x) <= 1024) ? \
  212. 10 : (((x) <= 2048) ? 11 : (((x) <= 4096) ? 12 : (((x) <= 8192) ? \
  213. 13 : (((x) <= 16384) ? 14 : (((x) <= 32768) ? 15:(((x) <= 65536) ? \
  214. 16 : (((x) <= 131072) ? 17 : (((x) <= 262144) ? 18:(((x) <= 524288) ? \
  215. 19 : (((x) <= 1048576) ? 20 : (((x) <= 2097152) ? \
  216. 21 : (((x) <= 4194304) ? 22 : (((x) <= 8388608) ? \
  217. 23 : (((x) <= 16777216) ? 24 : (((x) <= 33554432) ? \
  218. 25 : (((x) <= 67108864) ? 26 : (((x) <= 134217728) ? \
  219. 27 : (((x) <= 268435456) ? 28 : (((x) <= 536870912) ? \
  220. 29 : (((x) <= 1073741824) ? 30 : (((x) <= 2147483648) ? \
  221. 31 : 32)))))))))))))))))))))))))))))))
  222. #endif /* ZEPHYR_INCLUDE_TOOLCHAIN_COMMON_H_ */