xcc_missing_defs.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /*
  2. * Copyright (c) 2019 BayLibre SAS
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /*
  7. * Basic macro definitions that gcc and clang provide on their own
  8. * but that xcc lacks. Only those that Zephyr requires are provided here.
  9. */
  10. #ifndef ZEPHYR_INCLUDE_TOOLCHAIN_XCC_MISSING_DEFS_H_
  11. #define ZEPHYR_INCLUDE_TOOLCHAIN_XCC_MISSING_DEFS_H_
  12. #if __CHAR_BIT__ == 8
  13. #define __SCHAR_WIDTH__ 8
  14. #else
  15. #error "unexpected __CHAR_BIT__ value"
  16. #endif
  17. #if __SHRT_MAX__ == 32767
  18. #define __SHRT_WIDTH__ 16
  19. #define __SIZEOF_SHORT__ 2
  20. #else
  21. #error "unexpected __SHRT_WIDTH__ value"
  22. #endif
  23. #if __INT_MAX__ == 2147483647
  24. #define __INT_WIDTH__ 32
  25. #define __SIZEOF_INT__ 4
  26. #else
  27. #error "unexpected __INT_MAX__ value"
  28. #endif
  29. #if __LONG_MAX__ == 2147483647L
  30. #define __LONG_WIDTH__ 32
  31. #define __SIZEOF_LONG__ 4
  32. #else
  33. #error "unexpected __LONG_MAX__ value"
  34. #endif
  35. #if __LONG_LONG_MAX__ == 9223372036854775807LL
  36. #define __LONG_LONG_WIDTH__ 64
  37. #define __SIZEOF_LONG_LONG__ 8
  38. #else
  39. #error "unexpected __LONG_LONG_MAX__ value"
  40. #endif
  41. #if __INTMAX_MAX__ == 9223372036854775807LL
  42. #define __INTMAX_WIDTH__ 64
  43. #define __SIZEOF_INTMAX__ 8
  44. #define __UINTMAX_MAX__ 0xffffffffffffffffULL
  45. #define __UINTMAX_WIDTH__ 64
  46. #define __SIZEOF_UINTMAX__ 8
  47. #else
  48. #error "unexpected __INTMAX_MAX__ value"
  49. #endif
  50. /*
  51. * No xcc provided definitions related to pointers, so let's just enforce
  52. * the Zephyr expected type.
  53. */
  54. #define __INTPTR_MAX__ 0x7fffffffL
  55. #define __INTPTR_TYPE__ long int
  56. #define __INTPTR_WIDTH__ 32
  57. #define __SIZEOF_POINTER__ 4
  58. #define __PTRDIFF_MAX__ 0x7fffffffL
  59. #define __PTRDIFF_WIDTH__ 32
  60. #define __SIZEOF_PTRDIFF_T__ 4
  61. #define __UINTPTR_MAX__ 0xffffffffLU
  62. #define __UINTPTR_TYPE__ long unsigned int
  63. /*
  64. * xcc already defines __SIZE_TYPE__ as "unsigned int" but there is no way
  65. * to safeguard that here with preprocessor equality.
  66. */
  67. #define __SIZE_MAX__ 0xffffffffU
  68. #define __SIZE_WIDTH__ 32
  69. #define __SIZEOF_SIZE_T__ 4
  70. /*
  71. * The following defines are inferred from the xcc provided defines
  72. * already tested above.
  73. */
  74. #define __INT8_MAX__ 0x7f
  75. #define __INT8_TYPE__ signed char
  76. #define __INT16_MAX__ 0x7fff
  77. #define __INT16_TYPE__ short int
  78. #define __INT32_MAX__ 0x7fffffff
  79. #define __INT32_TYPE__ int
  80. #define __INT64_MAX__ 0x7fffffffffffffffLL
  81. #define __INT64_TYPE__ long long int
  82. #define __INT_FAST8_MAX__ 0x7f
  83. #define __INT_FAST8_TYPE__ signed char
  84. #define __INT_FAST8_WIDTH__ 8
  85. #define __INT_FAST16_MAX__ 0x7fffffff
  86. #define __INT_FAST16_TYPE__ int
  87. #define __INT_FAST16_WIDTH__ 32
  88. #define __INT_FAST32_MAX__ 0x7fffffff
  89. #define __INT_FAST32_TYPE__ int
  90. #define __INT_FAST32_WIDTH__ 32
  91. #define __INT_FAST64_MAX__ 0x7fffffffffffffffLL
  92. #define __INT_FAST64_TYPE__ long long int
  93. #define __INT_FAST64_WIDTH__ 64
  94. #define __INT_LEAST8_MAX__ 0x7f
  95. #define __INT_LEAST8_TYPE__ signed char
  96. #define __INT_LEAST8_WIDTH__ 8
  97. #define __INT_LEAST16_MAX__ 0x7fff
  98. #define __INT_LEAST16_TYPE__ short int
  99. #define __INT_LEAST16_WIDTH__ 16
  100. #define __INT_LEAST32_MAX__ 0x7fffffff
  101. #define __INT_LEAST32_TYPE__ int
  102. #define __INT_LEAST32_WIDTH__ 32
  103. #define __INT_LEAST64_MAX__ 0x7fffffffffffffffLL
  104. #define __INT_LEAST64_TYPE__ long long int
  105. #define __INT_LEAST64_WIDTH__ 64
  106. #define __UINT8_MAX__ 0xff
  107. #define __UINT8_TYPE__ unsigned char
  108. #define __UINT16_MAX__ 0xffff
  109. #define __UINT16_TYPE__ short unsigned int
  110. #define __UINT32_MAX__ 0xffffffffU
  111. #define __UINT32_TYPE__ unsigned int
  112. #define __UINT64_MAX__ 0xffffffffffffffffULL
  113. #define __UINT64_TYPE__ long long unsigned int
  114. #define __UINT_FAST8_MAX__ 0xff
  115. #define __UINT_FAST8_TYPE__ unsigned char
  116. #define __UINT_FAST16_MAX__ 0xffffffffU
  117. #define __UINT_FAST16_TYPE__ unsigned int
  118. #define __UINT_FAST32_MAX__ 0xffffffffU
  119. #define __UINT_FAST32_TYPE__ unsigned int
  120. #define __UINT_FAST64_MAX__ 0xffffffffffffffffULL
  121. #define __UINT_FAST64_TYPE__ long long unsigned int
  122. #define __UINT_LEAST8_MAX__ 0xff
  123. #define __UINT_LEAST8_TYPE__ unsigned char
  124. #define __UINT_LEAST16_MAX__ 0xffff
  125. #define __UINT_LEAST16_TYPE__ short unsigned int
  126. #define __UINT_LEAST32_MAX__ 0xffffffffU
  127. #define __UINT_LEAST32_TYPE__ unsigned int
  128. #define __UINT_LEAST64_MAX__ 0xffffffffffffffffULL
  129. #define __UINT_LEAST64_TYPE__ long long unsigned int
  130. #endif