command_queue_mt.cpp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*************************************************************************/
  2. /* command_queue_mt.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
  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. #include "command_queue_mt.h"
  31. #include "core/os/os.h"
  32. #include "core/project_settings.h"
  33. void CommandQueueMT::lock() {
  34. mutex.lock();
  35. }
  36. void CommandQueueMT::unlock() {
  37. mutex.unlock();
  38. }
  39. void CommandQueueMT::wait_for_flush() {
  40. // wait one millisecond for a flush to happen
  41. OS::get_singleton()->delay_usec(1000);
  42. }
  43. CommandQueueMT::SyncSemaphore *CommandQueueMT::_alloc_sync_sem() {
  44. int idx = -1;
  45. while (true) {
  46. lock();
  47. for (int i = 0; i < SYNC_SEMAPHORES; i++) {
  48. if (!sync_sems[i].in_use) {
  49. sync_sems[i].in_use = true;
  50. idx = i;
  51. break;
  52. }
  53. }
  54. unlock();
  55. if (idx == -1) {
  56. wait_for_flush();
  57. } else {
  58. break;
  59. }
  60. }
  61. return &sync_sems[idx];
  62. }
  63. bool CommandQueueMT::dealloc_one() {
  64. tryagain:
  65. if (dealloc_ptr == (write_ptr_and_epoch >> 1)) {
  66. // The queue is empty
  67. return false;
  68. }
  69. uint32_t size = *(uint32_t *)&command_mem[dealloc_ptr];
  70. if (size == 0) {
  71. // End of command buffer wrap down
  72. dealloc_ptr = 0;
  73. goto tryagain;
  74. }
  75. if (size & 1) {
  76. // Still used, nothing can be deallocated
  77. return false;
  78. }
  79. dealloc_ptr += (size >> 1) + 8;
  80. return true;
  81. }
  82. CommandQueueMT::CommandQueueMT(bool p_sync) {
  83. read_ptr_and_epoch = 0;
  84. write_ptr_and_epoch = 0;
  85. dealloc_ptr = 0;
  86. command_mem_size = GLOBAL_DEF_RST("memory/limits/command_queue/multithreading_queue_size_kb", DEFAULT_COMMAND_MEM_SIZE_KB);
  87. ProjectSettings::get_singleton()->set_custom_property_info("memory/limits/command_queue/multithreading_queue_size_kb", PropertyInfo(Variant::INT, "memory/limits/command_queue/multithreading_queue_size_kb", PROPERTY_HINT_RANGE, "1,4096,1,or_greater"));
  88. command_mem_size *= 1024;
  89. command_mem = (uint8_t *)memalloc(command_mem_size);
  90. for (int i = 0; i < SYNC_SEMAPHORES; i++) {
  91. sync_sems[i].in_use = false;
  92. }
  93. if (p_sync) {
  94. sync = memnew(Semaphore);
  95. } else {
  96. sync = nullptr;
  97. }
  98. }
  99. CommandQueueMT::~CommandQueueMT() {
  100. if (sync) {
  101. memdelete(sync);
  102. }
  103. memfree(command_mem);
  104. }