xcc.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /*
  2. * Copyright (c) 2017 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_TOOLCHAIN_XCC_H_
  7. #define ZEPHYR_INCLUDE_TOOLCHAIN_XCC_H_
  8. /* toolchain/gcc.h errors out if __BYTE_ORDER__ cannot be determined
  9. * there. However, __BYTE_ORDER__ is actually being defined later in
  10. * this file. So define __BYTE_ORDER__ to skip the check in gcc.h
  11. * and undefine after including gcc.h.
  12. *
  13. * Clang has it defined so there is no need to work around.
  14. */
  15. #ifndef __clang__
  16. #define __BYTE_ORDER__
  17. #endif
  18. #include <toolchain/gcc.h>
  19. #ifndef __clang__
  20. #undef __BYTE_ORDER__
  21. #endif
  22. #include <stdbool.h>
  23. #ifndef __INT8_C
  24. #define __INT8_C(x) x
  25. #endif
  26. #ifndef INT8_C
  27. #define INT8_C(x) __INT8_C(x)
  28. #endif
  29. #ifndef __UINT8_C
  30. #define __UINT8_C(x) x ## U
  31. #endif
  32. #ifndef UINT8_C
  33. #define UINT8_C(x) __UINT8_C(x)
  34. #endif
  35. #ifndef __INT16_C
  36. #define __INT16_C(x) x
  37. #endif
  38. #ifndef INT16_C
  39. #define INT16_C(x) __INT16_C(x)
  40. #endif
  41. #ifndef __UINT16_C
  42. #define __UINT16_C(x) x ## U
  43. #endif
  44. #ifndef UINT16_C
  45. #define UINT16_C(x) __UINT16_C(x)
  46. #endif
  47. #ifndef __INT32_C
  48. #define __INT32_C(x) x
  49. #endif
  50. #ifndef INT32_C
  51. #define INT32_C(x) __INT32_C(x)
  52. #endif
  53. #ifndef __UINT32_C
  54. #define __UINT32_C(x) x ## U
  55. #endif
  56. #ifndef UINT32_C
  57. #define UINT32_C(x) __UINT32_C(x)
  58. #endif
  59. #ifndef __INT64_C
  60. #define __INT64_C(x) x
  61. #endif
  62. #ifndef INT64_C
  63. #define INT64_C(x) __INT64_C(x)
  64. #endif
  65. #ifndef __UINT64_C
  66. #define __UINT64_C(x) x ## ULL
  67. #endif
  68. #ifndef UINT64_C
  69. #define UINT64_C(x) __UINT64_C(x)
  70. #endif
  71. #ifndef __INTMAX_C
  72. #define __INTMAX_C(x) x
  73. #endif
  74. #ifndef INTMAX_C
  75. #define INTMAX_C(x) __INTMAX_C(x)
  76. #endif
  77. #ifndef __UINTMAX_C
  78. #define __UINTMAX_C(x) x ## ULL
  79. #endif
  80. #ifndef UINTMAX_C
  81. #define UINTMAX_C(x) __UINTMAX_C(x)
  82. #endif
  83. #ifndef __COUNTER__
  84. /* XCC (GCC-based compiler) doesn't support __COUNTER__
  85. * but this should be good enough
  86. */
  87. #define __COUNTER__ __LINE__
  88. #endif
  89. #undef __in_section_unique
  90. #define __in_section_unique(seg) \
  91. __attribute__((section("." STRINGIFY(seg) "." STRINGIFY(__COUNTER__))))
  92. #ifndef __GCC_LINKER_CMD__
  93. #include <xtensa/config/core.h>
  94. /*
  95. * XCC does not define the following macros with the expected names, but the
  96. * HAL defines similar ones. Thus we include it and define the missing macros
  97. * ourselves.
  98. */
  99. #if XCHAL_MEMORY_ORDER == XTHAL_BIGENDIAN
  100. #define __BYTE_ORDER__ __ORDER_BIG_ENDIAN__
  101. #elif XCHAL_MEMORY_ORDER == XTHAL_LITTLEENDIAN
  102. #define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
  103. #else
  104. #error "Cannot determine __BYTE_ORDER__"
  105. #endif
  106. #endif /* __GCC_LINKER_CMD__ */
  107. #define __builtin_unreachable() do { __ASSERT(false, "Unreachable code"); } \
  108. while (true)
  109. #ifdef __deprecated
  110. /*
  111. * XCC does not support using deprecated attribute in enum,
  112. * so just nullify it here to avoid compilation errors.
  113. */
  114. #undef __deprecated
  115. #define __deprecated
  116. #endif
  117. #endif