compiler-gcc4.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* Never include this file directly. Include <linux/compiler.h> instead. */
  2. /* These definitions are for GCC v4.x. */
  3. #include <linux/compiler-gcc.h>
  4. #ifdef CONFIG_FORCED_INLINING
  5. # undef inline
  6. # undef __inline__
  7. # undef __inline
  8. # define inline inline __attribute__((always_inline))
  9. # define __inline__ __inline__ __attribute__((always_inline))
  10. # define __inline __inline __attribute__((always_inline))
  11. #endif
  12. #define __used __attribute__((__used__))
  13. #define __attribute_used__ __used /* deprecated */
  14. #define __must_check __attribute__((warn_unused_result))
  15. #define __compiler_offsetof(a,b) __builtin_offsetof(a,b)
  16. #define __always_inline inline __attribute__((always_inline))
  17. /*
  18. * A trick to suppress uninitialized variable warning without generating any
  19. * code
  20. */
  21. #define uninitialized_var(x) x = x
  22. #if !(__GNUC__ == 4 && __GNUC_MINOR__ < 3)
  23. /* Mark functions as cold. gcc will assume any path leading to a call
  24. to them will be unlikely. This means a lot of manual unlikely()s
  25. are unnecessary now for any paths leading to the usual suspects
  26. like BUG(), printk(), panic() etc. [but let's keep them for now for
  27. older compilers]
  28. Early snapshots of gcc 4.3 don't support this and we can't detect this
  29. in the preprocessor, but we can live with this because they're unreleased.
  30. Maketime probing would be overkill here.
  31. gcc also has a __attribute__((__hot__)) to move hot functions into
  32. a special section, but I don't see any sense in this right now in
  33. the kernel context */
  34. #define __cold __attribute__((__cold__))
  35. #endif