compiler.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623
  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. # define __rcu __attribute__((noderef, address_space(4)))
  19. # define __private __attribute__((noderef))
  20. extern void __chk_user_ptr(const volatile void __user *);
  21. extern void __chk_io_ptr(const volatile void __iomem *);
  22. # define ACCESS_PRIVATE(p, member) (*((typeof((p)->member) __force *) &(p)->member))
  23. #else /* __CHECKER__ */
  24. # ifdef STRUCTLEAK_PLUGIN
  25. # define __user __attribute__((user))
  26. # else
  27. # define __user
  28. # endif
  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. struct ftrace_likely_data {
  94. struct ftrace_branch_data data;
  95. unsigned long constant;
  96. };
  97. /*
  98. * Note: DISABLE_BRANCH_PROFILING can be used by special lowlevel code
  99. * to disable branch tracing on a per file basis.
  100. */
  101. #if defined(CONFIG_TRACE_BRANCH_PROFILING) \
  102. && !defined(DISABLE_BRANCH_PROFILING) && !defined(__CHECKER__)
  103. void ftrace_likely_update(struct ftrace_likely_data *f, int val,
  104. int expect, int is_constant);
  105. #define likely_notrace(x) __builtin_expect(!!(x), 1)
  106. #define unlikely_notrace(x) __builtin_expect(!!(x), 0)
  107. #define __branch_check__(x, expect, is_constant) ({ \
  108. int ______r; \
  109. static struct ftrace_likely_data \
  110. __attribute__((__aligned__(4))) \
  111. __attribute__((section("_ftrace_annotated_branch"))) \
  112. ______f = { \
  113. .data.func = __func__, \
  114. .data.file = __FILE__, \
  115. .data.line = __LINE__, \
  116. }; \
  117. ______r = __builtin_expect(!!(x), expect); \
  118. ftrace_likely_update(&______f, ______r, \
  119. expect, is_constant); \
  120. ______r; \
  121. })
  122. /*
  123. * Using __builtin_constant_p(x) to ignore cases where the return
  124. * value is always the same. This idea is taken from a similar patch
  125. * written by Daniel Walker.
  126. */
  127. # ifndef likely
  128. # define likely(x) (__branch_check__(x, 1, __builtin_constant_p(x)))
  129. # endif
  130. # ifndef unlikely
  131. # define unlikely(x) (__branch_check__(x, 0, __builtin_constant_p(x)))
  132. # endif
  133. #ifdef CONFIG_PROFILE_ALL_BRANCHES
  134. /*
  135. * "Define 'is'", Bill Clinton
  136. * "Define 'if'", Steven Rostedt
  137. */
  138. #define if(cond, ...) __trace_if( (cond , ## __VA_ARGS__) )
  139. #define __trace_if(cond) \
  140. if (__builtin_constant_p(!!(cond)) ? !!(cond) : \
  141. ({ \
  142. int ______r; \
  143. static struct ftrace_branch_data \
  144. __attribute__((__aligned__(4))) \
  145. __attribute__((section("_ftrace_branch"))) \
  146. ______f = { \
  147. .func = __func__, \
  148. .file = __FILE__, \
  149. .line = __LINE__, \
  150. }; \
  151. ______r = !!(cond); \
  152. ______f.miss_hit[______r]++; \
  153. ______r; \
  154. }))
  155. #endif /* CONFIG_PROFILE_ALL_BRANCHES */
  156. #else
  157. # define likely(x) __builtin_expect(!!(x), 1)
  158. # define unlikely(x) __builtin_expect(!!(x), 0)
  159. #endif
  160. /* Optimization barrier */
  161. #ifndef barrier
  162. # define barrier() __memory_barrier()
  163. #endif
  164. #ifndef barrier_data
  165. # define barrier_data(ptr) barrier()
  166. #endif
  167. /* Unreachable code */
  168. #ifdef CONFIG_STACK_VALIDATION
  169. #define annotate_reachable() ({ \
  170. asm("%c0:\n\t" \
  171. ".pushsection .discard.reachable\n\t" \
  172. ".long %c0b - .\n\t" \
  173. ".popsection\n\t" : : "i" (__LINE__)); \
  174. })
  175. #define annotate_unreachable() ({ \
  176. asm("%c0:\n\t" \
  177. ".pushsection .discard.unreachable\n\t" \
  178. ".long %c0b - .\n\t" \
  179. ".popsection\n\t" : : "i" (__LINE__)); \
  180. })
  181. #define ASM_UNREACHABLE \
  182. "999:\n\t" \
  183. ".pushsection .discard.unreachable\n\t" \
  184. ".long 999b - .\n\t" \
  185. ".popsection\n\t"
  186. #else
  187. #define annotate_reachable()
  188. #define annotate_unreachable()
  189. #endif
  190. #ifndef ASM_UNREACHABLE
  191. # define ASM_UNREACHABLE
  192. #endif
  193. #ifndef unreachable
  194. # define unreachable() do { annotate_reachable(); do { } while (1); } while (0)
  195. #endif
  196. /*
  197. * KENTRY - kernel entry point
  198. * This can be used to annotate symbols (functions or data) that are used
  199. * without their linker symbol being referenced explicitly. For example,
  200. * interrupt vector handlers, or functions in the kernel image that are found
  201. * programatically.
  202. *
  203. * Not required for symbols exported with EXPORT_SYMBOL, or initcalls. Those
  204. * are handled in their own way (with KEEP() in linker scripts).
  205. *
  206. * KENTRY can be avoided if the symbols in question are marked as KEEP() in the
  207. * linker script. For example an architecture could KEEP() its entire
  208. * boot/exception vector code rather than annotate each function and data.
  209. */
  210. #ifndef KENTRY
  211. # define KENTRY(sym) \
  212. extern typeof(sym) sym; \
  213. static const unsigned long __kentry_##sym \
  214. __used \
  215. __attribute__((section("___kentry" "+" #sym ), used)) \
  216. = (unsigned long)&sym;
  217. #endif
  218. #ifndef RELOC_HIDE
  219. # define RELOC_HIDE(ptr, off) \
  220. ({ unsigned long __ptr; \
  221. __ptr = (unsigned long) (ptr); \
  222. (typeof(ptr)) (__ptr + (off)); })
  223. #endif
  224. #ifndef OPTIMIZER_HIDE_VAR
  225. #define OPTIMIZER_HIDE_VAR(var) barrier()
  226. #endif
  227. /* Not-quite-unique ID. */
  228. #ifndef __UNIQUE_ID
  229. # define __UNIQUE_ID(prefix) __PASTE(__PASTE(__UNIQUE_ID_, prefix), __LINE__)
  230. #endif
  231. #include <uapi/linux/types.h>
  232. #define __READ_ONCE_SIZE \
  233. ({ \
  234. switch (size) { \
  235. case 1: *(__u8 *)res = *(volatile __u8 *)p; break; \
  236. case 2: *(__u16 *)res = *(volatile __u16 *)p; break; \
  237. case 4: *(__u32 *)res = *(volatile __u32 *)p; break; \
  238. case 8: *(__u64 *)res = *(volatile __u64 *)p; break; \
  239. default: \
  240. barrier(); \
  241. __builtin_memcpy((void *)res, (const void *)p, size); \
  242. barrier(); \
  243. } \
  244. })
  245. static __always_inline
  246. void __read_once_size(const volatile void *p, void *res, int size)
  247. {
  248. __READ_ONCE_SIZE;
  249. }
  250. #ifdef CONFIG_KASAN
  251. /*
  252. * This function is not 'inline' because __no_sanitize_address confilcts
  253. * with inlining. Attempt to inline it may cause a build failure.
  254. * https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67368
  255. * '__maybe_unused' allows us to avoid defined-but-not-used warnings.
  256. */
  257. static __no_sanitize_address __maybe_unused
  258. void __read_once_size_nocheck(const volatile void *p, void *res, int size)
  259. {
  260. __READ_ONCE_SIZE;
  261. }
  262. #else
  263. static __always_inline
  264. void __read_once_size_nocheck(const volatile void *p, void *res, int size)
  265. {
  266. __READ_ONCE_SIZE;
  267. }
  268. #endif
  269. static __always_inline void __write_once_size(volatile void *p, void *res, int size)
  270. {
  271. switch (size) {
  272. case 1: *(volatile __u8 *)p = *(__u8 *)res; break;
  273. case 2: *(volatile __u16 *)p = *(__u16 *)res; break;
  274. case 4: *(volatile __u32 *)p = *(__u32 *)res; break;
  275. case 8: *(volatile __u64 *)p = *(__u64 *)res; break;
  276. default:
  277. barrier();
  278. __builtin_memcpy((void *)p, (const void *)res, size);
  279. barrier();
  280. }
  281. }
  282. /*
  283. * Prevent the compiler from merging or refetching reads or writes. The
  284. * compiler is also forbidden from reordering successive instances of
  285. * READ_ONCE, WRITE_ONCE and ACCESS_ONCE (see below), but only when the
  286. * compiler is aware of some particular ordering. One way to make the
  287. * compiler aware of ordering is to put the two invocations of READ_ONCE,
  288. * WRITE_ONCE or ACCESS_ONCE() in different C statements.
  289. *
  290. * In contrast to ACCESS_ONCE these two macros will also work on aggregate
  291. * data types like structs or unions. If the size of the accessed data
  292. * type exceeds the word size of the machine (e.g., 32 bits or 64 bits)
  293. * READ_ONCE() and WRITE_ONCE() will fall back to memcpy(). There's at
  294. * least two memcpy()s: one for the __builtin_memcpy() and then one for
  295. * the macro doing the copy of variable - '__u' allocated on the stack.
  296. *
  297. * Their two major use cases are: (1) Mediating communication between
  298. * process-level code and irq/NMI handlers, all running on the same CPU,
  299. * and (2) Ensuring that the compiler does not fold, spindle, or otherwise
  300. * mutilate accesses that either do not require ordering or that interact
  301. * with an explicit memory barrier or atomic instruction that provides the
  302. * required ordering.
  303. */
  304. #define __READ_ONCE(x, check) \
  305. ({ \
  306. union { typeof(x) __val; char __c[1]; } __u; \
  307. if (check) \
  308. __read_once_size(&(x), __u.__c, sizeof(x)); \
  309. else \
  310. __read_once_size_nocheck(&(x), __u.__c, sizeof(x)); \
  311. __u.__val; \
  312. })
  313. #define READ_ONCE(x) __READ_ONCE(x, 1)
  314. /*
  315. * Use READ_ONCE_NOCHECK() instead of READ_ONCE() if you need
  316. * to hide memory access from KASAN.
  317. */
  318. #define READ_ONCE_NOCHECK(x) __READ_ONCE(x, 0)
  319. #define WRITE_ONCE(x, val) \
  320. ({ \
  321. union { typeof(x) __val; char __c[1]; } __u = \
  322. { .__val = (__force typeof(x)) (val) }; \
  323. __write_once_size(&(x), __u.__c, sizeof(x)); \
  324. __u.__val; \
  325. })
  326. #endif /* __KERNEL__ */
  327. #endif /* __ASSEMBLY__ */
  328. #ifdef __KERNEL__
  329. /*
  330. * Allow us to mark functions as 'deprecated' and have gcc emit a nice
  331. * warning for each use, in hopes of speeding the functions removal.
  332. * Usage is:
  333. * int __deprecated foo(void)
  334. */
  335. #ifndef __deprecated
  336. # define __deprecated /* unimplemented */
  337. #endif
  338. #ifdef MODULE
  339. #define __deprecated_for_modules __deprecated
  340. #else
  341. #define __deprecated_for_modules
  342. #endif
  343. #ifndef __must_check
  344. #define __must_check
  345. #endif
  346. #ifndef CONFIG_ENABLE_MUST_CHECK
  347. #undef __must_check
  348. #define __must_check
  349. #endif
  350. #ifndef CONFIG_ENABLE_WARN_DEPRECATED
  351. #undef __deprecated
  352. #undef __deprecated_for_modules
  353. #define __deprecated
  354. #define __deprecated_for_modules
  355. #endif
  356. #ifndef __malloc
  357. #define __malloc
  358. #endif
  359. /*
  360. * Allow us to avoid 'defined but not used' warnings on functions and data,
  361. * as well as force them to be emitted to the assembly file.
  362. *
  363. * As of gcc 3.4, static functions that are not marked with attribute((used))
  364. * may be elided from the assembly file. As of gcc 3.4, static data not so
  365. * marked will not be elided, but this may change in a future gcc version.
  366. *
  367. * NOTE: Because distributions shipped with a backported unit-at-a-time
  368. * compiler in gcc 3.3, we must define __used to be __attribute__((used))
  369. * for gcc >=3.3 instead of 3.4.
  370. *
  371. * In prior versions of gcc, such functions and data would be emitted, but
  372. * would be warned about except with attribute((unused)).
  373. *
  374. * Mark functions that are referenced only in inline assembly as __used so
  375. * the code is emitted even though it appears to be unreferenced.
  376. */
  377. #ifndef __used
  378. # define __used /* unimplemented */
  379. #endif
  380. #ifndef __maybe_unused
  381. # define __maybe_unused /* unimplemented */
  382. #endif
  383. #ifndef __always_unused
  384. # define __always_unused /* unimplemented */
  385. #endif
  386. #ifndef noinline
  387. #define noinline
  388. #endif
  389. /*
  390. * Rather then using noinline to prevent stack consumption, use
  391. * noinline_for_stack instead. For documentation reasons.
  392. */
  393. #define noinline_for_stack noinline
  394. #ifndef __always_inline
  395. #define __always_inline inline
  396. #endif
  397. #endif /* __KERNEL__ */
  398. /*
  399. * From the GCC manual:
  400. *
  401. * Many functions do not examine any values except their arguments,
  402. * and have no effects except the return value. Basically this is
  403. * just slightly more strict class than the `pure' attribute above,
  404. * since function is not allowed to read global memory.
  405. *
  406. * Note that a function that has pointer arguments and examines the
  407. * data pointed to must _not_ be declared `const'. Likewise, a
  408. * function that calls a non-`const' function usually must not be
  409. * `const'. It does not make sense for a `const' function to return
  410. * `void'.
  411. */
  412. #ifndef __attribute_const__
  413. # define __attribute_const__ /* unimplemented */
  414. #endif
  415. #ifndef __designated_init
  416. # define __designated_init
  417. #endif
  418. #ifndef __latent_entropy
  419. # define __latent_entropy
  420. #endif
  421. #ifndef __randomize_layout
  422. # define __randomize_layout __designated_init
  423. #endif
  424. #ifndef __no_randomize_layout
  425. # define __no_randomize_layout
  426. #endif
  427. #ifndef randomized_struct_fields_start
  428. # define randomized_struct_fields_start
  429. # define randomized_struct_fields_end
  430. #endif
  431. /*
  432. * Tell gcc if a function is cold. The compiler will assume any path
  433. * directly leading to the call is unlikely.
  434. */
  435. #ifndef __cold
  436. #define __cold
  437. #endif
  438. /* Simple shorthand for a section definition */
  439. #ifndef __section
  440. # define __section(S) __attribute__ ((__section__(#S)))
  441. #endif
  442. #ifndef __visible
  443. #define __visible
  444. #endif
  445. /*
  446. * Assume alignment of return value.
  447. */
  448. #ifndef __assume_aligned
  449. #define __assume_aligned(a, ...)
  450. #endif
  451. /* Are two types/vars the same type (ignoring qualifiers)? */
  452. #ifndef __same_type
  453. # define __same_type(a, b) __builtin_types_compatible_p(typeof(a), typeof(b))
  454. #endif
  455. /* Is this type a native word size -- useful for atomic operations */
  456. #ifndef __native_word
  457. # define __native_word(t) (sizeof(t) == sizeof(char) || sizeof(t) == sizeof(short) || sizeof(t) == sizeof(int) || sizeof(t) == sizeof(long))
  458. #endif
  459. /* Compile time object size, -1 for unknown */
  460. #ifndef __compiletime_object_size
  461. # define __compiletime_object_size(obj) -1
  462. #endif
  463. #ifndef __compiletime_warning
  464. # define __compiletime_warning(message)
  465. #endif
  466. #ifndef __compiletime_error
  467. # define __compiletime_error(message)
  468. /*
  469. * Sparse complains of variable sized arrays due to the temporary variable in
  470. * __compiletime_assert. Unfortunately we can't just expand it out to make
  471. * sparse see a constant array size without breaking compiletime_assert on old
  472. * versions of GCC (e.g. 4.2.4), so hide the array from sparse altogether.
  473. */
  474. # ifndef __CHECKER__
  475. # define __compiletime_error_fallback(condition) \
  476. do { ((void)sizeof(char[1 - 2 * condition])); } while (0)
  477. # endif
  478. #endif
  479. #ifndef __compiletime_error_fallback
  480. # define __compiletime_error_fallback(condition) do { } while (0)
  481. #endif
  482. #ifdef __OPTIMIZE__
  483. # define __compiletime_assert(condition, msg, prefix, suffix) \
  484. do { \
  485. bool __cond = !(condition); \
  486. extern void prefix ## suffix(void) __compiletime_error(msg); \
  487. if (__cond) \
  488. prefix ## suffix(); \
  489. __compiletime_error_fallback(__cond); \
  490. } while (0)
  491. #else
  492. # define __compiletime_assert(condition, msg, prefix, suffix) do { } while (0)
  493. #endif
  494. #define _compiletime_assert(condition, msg, prefix, suffix) \
  495. __compiletime_assert(condition, msg, prefix, suffix)
  496. /**
  497. * compiletime_assert - break build and emit msg if condition is false
  498. * @condition: a compile-time constant condition to check
  499. * @msg: a message to emit if condition is false
  500. *
  501. * In tradition of POSIX assert, this macro will break the build if the
  502. * supplied condition is *false*, emitting the supplied error message if the
  503. * compiler has support to do so.
  504. */
  505. #define compiletime_assert(condition, msg) \
  506. _compiletime_assert(condition, msg, __compiletime_assert_, __LINE__)
  507. #define compiletime_assert_atomic_type(t) \
  508. compiletime_assert(__native_word(t), \
  509. "Need native word sized stores/loads for atomicity.")
  510. /*
  511. * Prevent the compiler from merging or refetching accesses. The compiler
  512. * is also forbidden from reordering successive instances of ACCESS_ONCE(),
  513. * but only when the compiler is aware of some particular ordering. One way
  514. * to make the compiler aware of ordering is to put the two invocations of
  515. * ACCESS_ONCE() in different C statements.
  516. *
  517. * ACCESS_ONCE will only work on scalar types. For union types, ACCESS_ONCE
  518. * on a union member will work as long as the size of the member matches the
  519. * size of the union and the size is smaller than word size.
  520. *
  521. * The major use cases of ACCESS_ONCE used to be (1) Mediating communication
  522. * between process-level code and irq/NMI handlers, all running on the same CPU,
  523. * and (2) Ensuring that the compiler does not fold, spindle, or otherwise
  524. * mutilate accesses that either do not require ordering or that interact
  525. * with an explicit memory barrier or atomic instruction that provides the
  526. * required ordering.
  527. *
  528. * If possible use READ_ONCE()/WRITE_ONCE() instead.
  529. */
  530. #define __ACCESS_ONCE(x) ({ \
  531. __maybe_unused typeof(x) __var = (__force typeof(x)) 0; \
  532. (volatile typeof(x) *)&(x); })
  533. #define ACCESS_ONCE(x) (*__ACCESS_ONCE(x))
  534. /**
  535. * lockless_dereference() - safely load a pointer for later dereference
  536. * @p: The pointer to load
  537. *
  538. * Similar to rcu_dereference(), but for situations where the pointed-to
  539. * object's lifetime is managed by something other than RCU. That
  540. * "something other" might be reference counting or simple immortality.
  541. *
  542. * The seemingly unused variable ___typecheck_p validates that @p is
  543. * indeed a pointer type by using a pointer to typeof(*p) as the type.
  544. * Taking a pointer to typeof(*p) again is needed in case p is void *.
  545. */
  546. #define lockless_dereference(p) \
  547. ({ \
  548. typeof(p) _________p1 = READ_ONCE(p); \
  549. typeof(*(p)) *___typecheck_p __maybe_unused; \
  550. smp_read_barrier_depends(); /* Dependency order vs. p above. */ \
  551. (_________p1); \
  552. })
  553. #endif /* __LINUX_COMPILER_H */