eficompiler.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*++
  2. Copyright (c) 2016 Pete Batard <pete@akeo.ie>
  3. Module Name:
  4. eficompiler.h
  5. Abstract:
  6. Compiler specific adjustments
  7. --*/
  8. #ifdef _MSC_EXTENSIONS
  9. #define EFI_UNUSED
  10. #else
  11. #define EFI_UNUSED __attribute__((__unused__))
  12. #endif
  13. #ifdef _MSC_EXTENSIONS
  14. #define EFI_NO_TAIL_CALL
  15. #else
  16. #ifdef __clang__
  17. #define EFI_NO_TAIL_CALL __attribute__((disable_tail_calls))
  18. #else
  19. #define EFI_NO_TAIL_CALL __attribute__((optimize("no-optimize-sibling-calls")))
  20. #endif
  21. #endif
  22. #ifdef _MSC_EXTENSIONS
  23. #define EFI_OPTNONE
  24. #else
  25. #ifdef __clang__
  26. #define EFI_OPTNONE __attribute__((optnone))
  27. #else
  28. #define EFI_OPTNONE __attribute__((__optimize__("0")))
  29. #endif
  30. #endif
  31. #ifdef _MSC_EXTENSIONS
  32. #define EFI_ALIGN(x) __declspec(align(x))
  33. #else
  34. #define EFI_ALIGN(x) __attribute__((__aligned__(x)))
  35. #endif
  36. #ifndef ALIGN
  37. #define ALIGN(x) EFI_ALIGN(x)
  38. #endif
  39. #ifdef _MSC_EXTENSIONS
  40. #define EFI_NORETURN __declspec(noreturn)
  41. #else
  42. #define EFI_NORETURN __attribute__((noreturn))
  43. #endif
  44. /* Also add a catch-all on __attribute__() for MS compilers */
  45. #ifdef _MSC_EXTENSIONS
  46. #define __attribute__(x)
  47. #endif