macros.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /**************************************************************************/
  2. /* macros.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #ifndef MONO_MACROS_H
  31. #define MONO_MACROS_H
  32. #define _GD_VARNAME_CONCAT_B_(m_ignore, m_name) m_name
  33. #define _GD_VARNAME_CONCAT_A_(m_a, m_b, m_c) _GD_VARNAME_CONCAT_B_(hello there, m_a##m_b##m_c)
  34. #define _GD_VARNAME_CONCAT_(m_a, m_b, m_c) _GD_VARNAME_CONCAT_A_(m_a, m_b, m_c)
  35. #define GD_UNIQUE_NAME(m_name) _GD_VARNAME_CONCAT_(m_name, _, __COUNTER__)
  36. // static assert
  37. // TODO: Get rid of this macro once we upgrade to C++11
  38. #ifdef __cpp_static_assert
  39. #define GD_STATIC_ASSERT(m_cond) static_assert((m_cond), "Condition '" #m_cond "' failed")
  40. #else
  41. #define GD_STATIC_ASSERT(m_cond) typedef int GD_UNIQUE_NAME(godot_static_assert)[((m_cond) ? 1 : -1)]
  42. #endif
  43. // final
  44. // TODO: Get rid of this macro once we upgrade to C++11
  45. #if (__cplusplus >= 201103L)
  46. #define GD_FINAL final
  47. #else
  48. #define GD_FINAL
  49. #endif
  50. // noreturn
  51. // TODO: Get rid of this macro once we upgrade to C++11
  52. #if (__cplusplus >= 201103L)
  53. #define GD_NORETURN [[noreturn]]
  54. #elif defined(__GNUC__)
  55. #define GD_NORETURN __attribute__((noreturn))
  56. #elif defined(_MSC_VER)
  57. #define GD_NORETURN __declspec(noreturn)
  58. #else
  59. #define GD_NORETURN
  60. #pragma message "Macro GD_NORETURN will have no effect"
  61. #endif
  62. // unreachable
  63. #if defined(_MSC_VER)
  64. #define GD_UNREACHABLE() __assume(0)
  65. #elif defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__) >= 405
  66. #define GD_UNREACHABLE() __builtin_unreachable()
  67. #else
  68. #define GD_UNREACHABLE() \
  69. CRASH_NOW(); \
  70. do { \
  71. } while (true);
  72. #endif
  73. namespace gdmono {
  74. template <typename F>
  75. struct ScopeExit {
  76. ScopeExit(F p_exit_func) :
  77. exit_func(p_exit_func) {}
  78. ~ScopeExit() { exit_func(); }
  79. F exit_func;
  80. };
  81. class ScopeExitAux {
  82. public:
  83. template <typename F>
  84. ScopeExit<F> operator+(F p_exit_func) { return ScopeExit<F>(p_exit_func); }
  85. };
  86. } // namespace gdmono
  87. #define SCOPE_EXIT \
  88. auto GD_UNIQUE_NAME(gd_scope_exit) = gdmono::ScopeExitAux() + [=]() -> void
  89. #endif // MONO_MACROS_H