macros.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. // unreachable
  37. #if defined(_MSC_VER)
  38. #define GD_UNREACHABLE() __assume(0)
  39. #elif defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__) >= 405
  40. #define GD_UNREACHABLE() __builtin_unreachable()
  41. #else
  42. #define GD_UNREACHABLE() \
  43. CRASH_NOW(); \
  44. do { \
  45. } while (true)
  46. #endif
  47. namespace gdmono {
  48. template <typename F>
  49. struct ScopeExit {
  50. ScopeExit(F p_exit_func) :
  51. exit_func(p_exit_func) {}
  52. ~ScopeExit() { exit_func(); }
  53. F exit_func;
  54. };
  55. class ScopeExitAux {
  56. public:
  57. template <typename F>
  58. ScopeExit<F> operator+(F p_exit_func) { return ScopeExit<F>(p_exit_func); }
  59. };
  60. } // namespace gdmono
  61. #define SCOPE_EXIT \
  62. auto GD_UNIQUE_NAME(gd_scope_exit) = gdmono::ScopeExitAux() + [=]() -> void
  63. #endif // MONO_MACROS_H