compiler.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549
  1. #ifndef __LINUX_COMPILER_H
  2. #define __LINUX_COMPILER_H
  3. #ifndef __ASSEMBLY__
  4. #ifdef __CHECKER__
  5. # define __user __attribute__((noderef, address_space(1)))
  6. # define __kernel __attribute__((address_space(0)))
  7. # define __safe __attribute__((safe))
  8. # define __force __attribute__((force))
  9. # define __nocast __attribute__((nocast))
  10. # define __iomem __attribute__((noderef, address_space(2)))
  11. # define __must_hold(x) __attribute__((context(x,1,1)))
  12. # define __acquires(x) __attribute__((context(x,0,1)))
  13. # define __releases(x) __attribute__((context(x,1,0)))
  14. # define __acquire(x) __context__(x,1)
  15. # define __release(x) __context__(x,-1)
  16. # define __cond_lock(x,c) ((c) ? ({ __acquire(x); 1; }) : 0)
  17. # define __percpu __attribute__((noderef, address_space(3)))
  18. #ifdef CONFIG_SPARSE_RCU_POINTER
  19. # define __rcu __attribute__((noderef, address_space(4)))
  20. #else /* CONFIG_SPARSE_RCU_POINTER */
  21. # define __rcu
  22. #endif /* CONFIG_SPARSE_RCU_POINTER */
  23. # define __private __attribute__((noderef))
  24. extern void __chk_user_ptr(const volatile void __user *);
  25. extern void __chk_io_ptr(const volatile void __iomem *);
  26. # define ACCESS_PRIVATE(p, member) (*((typeof((p)->member) __force *) &(p)->member))
  27. #else /* __CHECKER__ */
  28. # define __user
  29. # define __kernel
  30. # define __safe
  31. # define __force
  32. # define __nocast
  33. # define __iomem
  34. # define __chk_user_ptr(x) (void)0
  35. # define __chk_io_ptr(x) (void)0
  36. # define __builtin_warning(x, y...) (1)
  37. # define __must_hold(x)
  38. # define __acquires(x)
  39. # define __releases(x)
  40. # define __acquire(x) (void)0
  41. # define __release(x) (void)0
  42. # define __cond_lock(x,c) (c)
  43. # define __percpu
  44. # define __rcu
  45. # define __private
  46. # define ACCESS_PRIVATE(p, member) ((p)->member)
  47. #endif /* __CHECKER__ */
  48. /* Indirect macros required for expanded argument pasting, eg. __LINE__. */
  49. #define ___PASTE(a,b) a##b
  50. #define __PASTE(a,b) ___PASTE(a,b)
  51. #ifdef __KERNEL__
  52. #ifdef __GNUC__
  53. #include <linux/compiler-gcc.h>
  54. #endif
  55. #if defined(CC_USING_HOTPATCH) && !defined(__CHECKER__)
  56. #define notrace __attribute__((hotpatch(0,0)))
  57. #else
  58. #define notrace __attribute__((no_instrument_function))
  59. #endif
  60. /* Intel compiler defines __GNUC__. So we will overwrite implementations
  61. * coming from above header files here
  62. */
  63. #ifdef __INTEL_COMPILER
  64. # include <linux/compiler-intel.h>
  65. #endif
  66. /* Clang compiler defines __GNUC__. So we will overwrite implementations
  67. * coming from above header files here
  68. */
  69. #ifdef __clang__
  70. #include <linux/compiler-clang.h>
  71. #endif
  72. /*
  73. * Generic compiler-dependent macros required for kernel
  74. * build go below this comment. Actual compiler/compiler version
  75. * specific implementations come from the above header files
  76. */
  77. struct ftrace_branch_data {
  78. const char *func;
  79. const char *file;
  80. unsigned line;
  81. union {
  82. struct {
  83. unsigned long correct;
  84. unsigned long incorrect;
  85. };
  86. struct {
  87. unsigned long miss;
  88. unsigned long hit;
  89. };
  90. unsigned long miss_hit[2];
  91. };
  92. };
  93. /*
  94. * Note: DISABLE_BRANCH_PROFILING can be used by special lowlevel code
  95. * to disable branch tracing on a per file basis.
  96. */
  97. #if defined(CONFIG_TRACE_BRANCH_PROFILING) \
  98. && !defined(DISABLE_BRANCH_PROFILING) && !defined(__CHECKER__)
  99. void ftrace_likely_update(struct ftrace_branch_data *f, int val, int expect);
  100. #define likely_notrace(x) __builtin_expect(!!(x), 1)
  101. #define unlikely_notrace(x) __builtin_expect(!!(x), 0)
  102. #define __branch_check__(x, expect) ({ \
  103. int ______r; \
  104. static struct ftrace_branch_data \
  105. __attribute__((__aligned__(4))) \
  106. __attribute__((section("_ftrace_annotated_branch"))) \
  107. ______f = { \
  108. .func = __func__, \
  109. .file = __FILE__, \
  110. .line = __LINE__, \
  111. }; \
  112. ______r = likely_notrace(x); \
  113. ftrace_likely_update(&______f, ______r, expect); \
  114. ______r; \
  115. })
  116. /*
  117. * Using __builtin_constant_p(x) to ignore cases where the return
  118. * value is always the same. This idea is taken from a similar patch
  119. * written by Daniel Walker.
  120. */
  121. # ifndef likely
  122. # define likely(x) (__builtin_constant_p(x) ? !!(x) : __branch_check__(x, 1))
  123. # endif
  124. # ifndef unlikely
  125. # define unlikely(x) (__builtin_constant_p(x) ? !!(x) : __branch_check__(x, 0))
  126. # endif
  127. #ifdef CONFIG_PROFILE_ALL_BRANCHES
  128. /*
  129. * "Define 'is'", Bill Clinton
  130. * "Define 'if'", Steven Rostedt
  131. */
  132. #define if(cond, ...) __trace_if( (cond , ## __VA_ARGS__) )
  133. #define __trace_if(cond) \
  134. if (__builtin_constant_p(!!(cond)) ? !!(cond) : \
  135. ({ \
  136. int ______r; \
  137. static struct ftrace_branch_data \
  138. __attribute__((__aligned__(4))) \
  139. __attribute__((section("_ftrace_branch"))) \
  140. ______f = { \
  141. .func = __func__, \
  142. .file = __FILE__, \
  143. .line = __LINE__, \
  144. }; \
  145. ______r = !!(cond); \
  146. ______f.miss_hit[______r]++; \
  147. ______r; \
  148. }))
  149. #endif /* CONFIG_PROFILE_ALL_BRANCHES */
  150. #else
  151. # define likely(x) __builtin_expect(!!(x), 1)
  152. # define unlikely(x) __builtin_expect(!!(x), 0)
  153. #endif
  154. /* Optimization barrier */
  155. #ifndef barrier
  156. # define barrier() __memory_barrier()
  157. #endif
  158. #ifndef barrier_data
  159. # define barrier_data(ptr) barrier()
  160. #endif
  161. /* Unreachable code */
  162. #ifndef unreachable
  163. # define unreachable() do { } while (1)
  164. #endif
  165. #ifndef RELOC_HIDE
  166. # define RELOC_HIDE(ptr, off) \
  167. ({ unsigned long __ptr; \
  168. __ptr = (unsigned long) (ptr); \
  169. (typeof(ptr)) (__ptr + (off)); })
  170. #endif
  171. #ifndef OPTIMIZER_HIDE_VAR
  172. #define OPTIMIZER_HIDE_VAR(var) barrier()
  173. #endif
  174. /* Not-quite-unique ID. */
  175. #ifndef __UNIQUE_ID
  176. # define __UNIQUE_ID(prefix) __PASTE(__PASTE(__UNIQUE_ID_, prefix), __LINE__)
  177. #endif
  178. #include <uapi/linux/types.h>
  179. #define __READ_ONCE_SIZE \
  180. ({ \
  181. switch (size) { \
  182. case 1: *(__u8 *)res = *(volatile __u8 *)p; break; \
  183. case 2: *(__u16 *)res = *(volatile __u16 *)p; break; \
  184. case 4: *(__u32 *)res = *(volatile __u32 *)p; break; \
  185. case 8: *(__u64 *)res = *(volatile __u64 *)p; break; \
  186. default: \
  187. barrier(); \
  188. __builtin_memcpy((void *)res, (const void *)p, size); \
  189. barrier(); \
  190. } \
  191. })
  192. static __always_inline
  193. void __read_once_size(const volatile void *p, void *res, int size)
  194. {
  195. __READ_ONCE_SIZE;
  196. }
  197. #ifdef CONFIG_KASAN
  198. /*
  199. * This function is not 'inline' because __no_sanitize_address confilcts
  200. * with inlining. Attempt to inline it may cause a build failure.
  201. * https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67368
  202. * '__maybe_unused' allows us to avoid defined-but-not-used warnings.
  203. */
  204. static __no_sanitize_address __maybe_unused
  205. void __read_once_size_nocheck(const volatile void *p, void *res, int size)
  206. {
  207. __READ_ONCE_SIZE;
  208. }
  209. #else
  210. static __always_inline
  211. void __read_once_size_nocheck(const volatile void *p, void *res, int size)
  212. {
  213. __READ_ONCE_SIZE;
  214. }
  215. #endif
  216. static __always_inline void __write_once_size(volatile void *p, void *res, int size)
  217. {
  218. switch (size) {
  219. case 1: *(volatile __u8 *)p = *(__u8 *)res; break;
  220. case 2: *(volatile __u16 *)p = *(__u16 *)res; break;
  221. case 4: *(volatile __u32 *)p = *(__u32 *)res; break;
  222. case 8: *(volatile __u64 *)p = *(__u64 *)res; break;
  223. default:
  224. barrier();
  225. __builtin_memcpy((void *)p, (const void *)res, size);
  226. barrier();
  227. }
  228. }
  229. /*
  230. * Prevent the compiler from merging or refetching reads or writes. The
  231. * compiler is also forbidden from reordering successive instances of
  232. * READ_ONCE, WRITE_ONCE and ACCESS_ONCE (see below), but only when the
  233. * compiler is aware of some particular ordering. One way to make the
  234. * compiler aware of ordering is to put the two invocations of READ_ONCE,
  235. * WRITE_ONCE or ACCESS_ONCE() in different C statements.
  236. *
  237. * In contrast to ACCESS_ONCE these two macros will also work on aggregate
  238. * data types like structs or unions. If the size of the accessed data
  239. * type exceeds the word size of the machine (e.g., 32 bits or 64 bits)
  240. * READ_ONCE() and WRITE_ONCE() will fall back to memcpy(). There's at
  241. * least two memcpy()s: one for the __builtin_memcpy() and then one for
  242. * the macro doing the copy of variable - '__u' allocated on the stack.
  243. *
  244. * Their two major use cases are: (1) Mediating communication between
  245. * process-level code and irq/NMI handlers, all running on the same CPU,
  246. * and (2) Ensuring that the compiler does not fold, spindle, or otherwise
  247. * mutilate accesses that either do not require ordering or that interact
  248. * with an explicit memory barrier or atomic instruction that provides the
  249. * required ordering.
  250. */
  251. #define __READ_ONCE(x, check) \
  252. ({ \
  253. union { typeof(x) __val; char __c[1]; } __u; \
  254. if (check) \
  255. __read_once_size(&(x), __u.__c, sizeof(x)); \
  256. else \
  257. __read_once_size_nocheck(&(x), __u.__c, sizeof(x)); \
  258. __u.__val; \
  259. })
  260. #define READ_ONCE(x) __READ_ONCE(x, 1)
  261. /*
  262. * Use READ_ONCE_NOCHECK() instead of READ_ONCE() if you need
  263. * to hide memory access from KASAN.
  264. */
  265. #define READ_ONCE_NOCHECK(x) __READ_ONCE(x, 0)
  266. #define WRITE_ONCE(x, val) \
  267. ({ \
  268. union { typeof(x) __val; char __c[1]; } __u = \
  269. { .__val = (__force typeof(x)) (val) }; \
  270. __write_once_size(&(x), __u.__c, sizeof(x)); \
  271. __u.__val; \
  272. })
  273. #endif /* __KERNEL__ */
  274. #endif /* __ASSEMBLY__ */
  275. #ifdef __KERNEL__
  276. /*
  277. * Allow us to mark functions as 'deprecated' and have gcc emit a nice
  278. * warning for each use, in hopes of speeding the functions removal.
  279. * Usage is:
  280. * int __deprecated foo(void)
  281. */
  282. #ifndef __deprecated
  283. # define __deprecated /* unimplemented */
  284. #endif
  285. #ifdef MODULE
  286. #define __deprecated_for_modules __deprecated
  287. #else
  288. #define __deprecated_for_modules
  289. #endif
  290. #ifndef __must_check
  291. #define __must_check
  292. #endif
  293. #ifndef CONFIG_ENABLE_MUST_CHECK
  294. #undef __must_check
  295. #define __must_check
  296. #endif
  297. #ifndef CONFIG_ENABLE_WARN_DEPRECATED
  298. #undef __deprecated
  299. #undef __deprecated_for_modules
  300. #define __deprecated
  301. #define __deprecated_for_modules
  302. #endif
  303. #ifndef __malloc
  304. #define __malloc
  305. #endif
  306. /*
  307. * Allow us to avoid 'defined but not used' warnings on functions and data,
  308. * as well as force them to be emitted to the assembly file.
  309. *
  310. * As of gcc 3.4, static functions that are not marked with attribute((used))
  311. * may be elided from the assembly file. As of gcc 3.4, static data not so
  312. * marked will not be elided, but this may change in a future gcc version.
  313. *
  314. * NOTE: Because distributions shipped with a backported unit-at-a-time
  315. * compiler in gcc 3.3, we must define __used to be __attribute__((used))
  316. * for gcc >=3.3 instead of 3.4.
  317. *
  318. * In prior versions of gcc, such functions and data would be emitted, but
  319. * would be warned about except with attribute((unused)).
  320. *
  321. * Mark functions that are referenced only in inline assembly as __used so
  322. * the code is emitted even though it appears to be unreferenced.
  323. */
  324. #ifndef __used
  325. # define __used /* unimplemented */
  326. #endif
  327. #ifndef __maybe_unused
  328. # define __maybe_unused /* unimplemented */
  329. #endif
  330. #ifndef __always_unused
  331. # define __always_unused /* unimplemented */
  332. #endif
  333. #ifndef noinline
  334. #define noinline
  335. #endif
  336. /*
  337. * Rather then using noinline to prevent stack consumption, use
  338. * noinline_for_stack instead. For documentation reasons.
  339. */
  340. #define noinline_for_stack noinline
  341. #ifndef __always_inline
  342. #define __always_inline inline
  343. #endif
  344. #endif /* __KERNEL__ */
  345. /*
  346. * From the GCC manual:
  347. *
  348. * Many functions do not examine any values except their arguments,
  349. * and have no effects except the return value. Basically this is
  350. * just slightly more strict class than the `pure' attribute above,
  351. * since function is not allowed to read global memory.
  352. *
  353. * Note that a function that has pointer arguments and examines the
  354. * data pointed to must _not_ be declared `const'. Likewise, a
  355. * function that calls a non-`const' function usually must not be
  356. * `const'. It does not make sense for a `const' function to return
  357. * `void'.
  358. */
  359. #ifndef __attribute_const__
  360. # define __attribute_const__ /* unimplemented */
  361. #endif
  362. /*
  363. * Tell gcc if a function is cold. The compiler will assume any path
  364. * directly leading to the call is unlikely.
  365. */
  366. #ifndef __cold
  367. #define __cold
  368. #endif
  369. /* Simple shorthand for a section definition */
  370. #ifndef __section
  371. # define __section(S) __attribute__ ((__section__(#S)))
  372. #endif
  373. #ifndef __visible
  374. #define __visible
  375. #endif
  376. /*
  377. * Assume alignment of return value.
  378. */
  379. #ifndef __assume_aligned
  380. #define __assume_aligned(a, ...)
  381. #endif
  382. /* Are two types/vars the same type (ignoring qualifiers)? */
  383. #ifndef __same_type
  384. # define __same_type(a, b) __builtin_types_compatible_p(typeof(a), typeof(b))
  385. #endif
  386. /* Is this type a native word size -- useful for atomic operations */
  387. #ifndef __native_word
  388. # define __native_word(t) (sizeof(t) == sizeof(char) || sizeof(t) == sizeof(short) || sizeof(t) == sizeof(int) || sizeof(t) == sizeof(long))
  389. #endif
  390. /* Compile time object size, -1 for unknown */
  391. #ifndef __compiletime_object_size
  392. # define __compiletime_object_size(obj) -1
  393. #endif
  394. #ifndef __compiletime_warning
  395. # define __compiletime_warning(message)
  396. #endif
  397. #ifndef __compiletime_error
  398. # define __compiletime_error(message)
  399. /*
  400. * Sparse complains of variable sized arrays due to the temporary variable in
  401. * __compiletime_assert. Unfortunately we can't just expand it out to make
  402. * sparse see a constant array size without breaking compiletime_assert on old
  403. * versions of GCC (e.g. 4.2.4), so hide the array from sparse altogether.
  404. */
  405. # ifndef __CHECKER__
  406. # define __compiletime_error_fallback(condition) \
  407. do { ((void)sizeof(char[1 - 2 * condition])); } while (0)
  408. # endif
  409. #endif
  410. #ifndef __compiletime_error_fallback
  411. # define __compiletime_error_fallback(condition) do { } while (0)
  412. #endif
  413. #define __compiletime_assert(condition, msg, prefix, suffix) \
  414. do { \
  415. bool __cond = !(condition); \
  416. extern void prefix ## suffix(void) __compiletime_error(msg); \
  417. if (__cond) \
  418. prefix ## suffix(); \
  419. __compiletime_error_fallback(__cond); \
  420. } while (0)
  421. #define _compiletime_assert(condition, msg, prefix, suffix) \
  422. __compiletime_assert(condition, msg, prefix, suffix)
  423. /**
  424. * compiletime_assert - break build and emit msg if condition is false
  425. * @condition: a compile-time constant condition to check
  426. * @msg: a message to emit if condition is false
  427. *
  428. * In tradition of POSIX assert, this macro will break the build if the
  429. * supplied condition is *false*, emitting the supplied error message if the
  430. * compiler has support to do so.
  431. */
  432. #define compiletime_assert(condition, msg) \
  433. _compiletime_assert(condition, msg, __compiletime_assert_, __LINE__)
  434. #define compiletime_assert_atomic_type(t) \
  435. compiletime_assert(__native_word(t), \
  436. "Need native word sized stores/loads for atomicity.")
  437. /*
  438. * Prevent the compiler from merging or refetching accesses. The compiler
  439. * is also forbidden from reordering successive instances of ACCESS_ONCE(),
  440. * but only when the compiler is aware of some particular ordering. One way
  441. * to make the compiler aware of ordering is to put the two invocations of
  442. * ACCESS_ONCE() in different C statements.
  443. *
  444. * ACCESS_ONCE will only work on scalar types. For union types, ACCESS_ONCE
  445. * on a union member will work as long as the size of the member matches the
  446. * size of the union and the size is smaller than word size.
  447. *
  448. * The major use cases of ACCESS_ONCE used to be (1) Mediating communication
  449. * between process-level code and irq/NMI handlers, all running on the same CPU,
  450. * and (2) Ensuring that the compiler does not fold, spindle, or otherwise
  451. * mutilate accesses that either do not require ordering or that interact
  452. * with an explicit memory barrier or atomic instruction that provides the
  453. * required ordering.
  454. *
  455. * If possible use READ_ONCE()/WRITE_ONCE() instead.
  456. */
  457. #define __ACCESS_ONCE(x) ({ \
  458. __maybe_unused typeof(x) __var = (__force typeof(x)) 0; \
  459. (volatile typeof(x) *)&(x); })
  460. #define ACCESS_ONCE(x) (*__ACCESS_ONCE(x))
  461. /**
  462. * lockless_dereference() - safely load a pointer for later dereference
  463. * @p: The pointer to load
  464. *
  465. * Similar to rcu_dereference(), but for situations where the pointed-to
  466. * object's lifetime is managed by something other than RCU. That
  467. * "something other" might be reference counting or simple immortality.
  468. *
  469. * The seemingly unused void * variable is to validate @p is indeed a pointer
  470. * type. All pointer types silently cast to void *.
  471. */
  472. #define lockless_dereference(p) \
  473. ({ \
  474. typeof(p) _________p1 = READ_ONCE(p); \
  475. __maybe_unused const void * const _________p2 = _________p1; \
  476. smp_read_barrier_depends(); /* Dependency order vs. p above. */ \
  477. (_________p1); \
  478. })
  479. /* Ignore/forbid kprobes attach on very low level functions marked by this attribute: */
  480. #ifdef CONFIG_KPROBES
  481. # define __kprobes __attribute__((__section__(".kprobes.text")))
  482. # define nokprobe_inline __always_inline
  483. #else
  484. # define __kprobes
  485. # define nokprobe_inline inline
  486. #endif
  487. #endif /* __LINUX_COMPILER_H */