toolchain.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * Copyright (c) 2010-2014, Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Macros to abstract toolchain specific capabilities
  9. *
  10. * This file contains various macros to abstract compiler capabilities that
  11. * utilize toolchain specific attributes and/or pragmas.
  12. */
  13. #ifndef ZEPHYR_INCLUDE_TOOLCHAIN_H_
  14. #define ZEPHYR_INCLUDE_TOOLCHAIN_H_
  15. /**
  16. * @def HAS_BUILTIN(x)
  17. * @brief Check if the compiler supports the built-in function \a x.
  18. *
  19. * This macro is for use with conditional compilation to enable code using a
  20. * builtin function that may not be available in every compiler.
  21. */
  22. #ifdef __has_builtin
  23. #define HAS_BUILTIN(x) __has_builtin(x)
  24. #else
  25. /*
  26. * The compiler doesn't provide the __has_builtin() macro, so instead we depend
  27. * on the toolchain-specific headers to define HAS_BUILTIN_x for the builtins
  28. * supported.
  29. */
  30. #define HAS_BUILTIN(x) HAS_BUILTIN_##x
  31. #endif
  32. #if defined(__TOOLCHAIN_CUSTOM__)
  33. /* This include line exists for off-tree definitions of compilers,
  34. * and therefore this header is not meant to exist in-tree
  35. */
  36. #include <toolchain/other.h>
  37. #elif defined(__XCC__)
  38. #include <toolchain/xcc.h>
  39. #elif defined(__CCAC__)
  40. #include <toolchain/mwdt.h>
  41. #elif defined(__ARMCOMPILER_VERSION)
  42. #include <toolchain/armclang.h>
  43. #elif defined(__llvm__)
  44. #include <toolchain/llvm.h>
  45. #elif defined(__GNUC__) || (defined(_LINKER) && defined(__GCC_LINKER_CMD__))
  46. #include <toolchain/gcc.h>
  47. #else
  48. #error "Invalid/unknown toolchain configuration"
  49. #endif
  50. #ifdef __UVISION_VERSION
  51. #define long_call
  52. #endif
  53. /*
  54. * Ensure that __BYTE_ORDER__ and related preprocessor definitions are defined,
  55. * as these are often used without checking for definition and doing so can
  56. * cause unexpected behaviours.
  57. */
  58. #ifndef _LINKER
  59. #if !defined(__BYTE_ORDER__) || !defined(__ORDER_BIG_ENDIAN__) || \
  60. !defined(__ORDER_LITTLE_ENDIAN__)
  61. #error "__BYTE_ORDER__ is not defined"
  62. #endif
  63. #endif /* !_LINKER */
  64. #endif /* ZEPHYR_INCLUDE_TOOLCHAIN_H_ */