command_queue_mt.cpp 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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-2021 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2021 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. if (mutex)
  35. mutex->lock();
  36. }
  37. void CommandQueueMT::unlock() {
  38. if (mutex)
  39. mutex->unlock();
  40. }
  41. void CommandQueueMT::wait_for_flush() {
  42. // wait one millisecond for a flush to happen
  43. OS::get_singleton()->delay_usec(1000);
  44. }
  45. CommandQueueMT::SyncSemaphore *CommandQueueMT::_alloc_sync_sem() {
  46. int idx = -1;
  47. while (true) {
  48. lock();
  49. for (int i = 0; i < SYNC_SEMAPHORES; i++) {
  50. if (!sync_sems[i].in_use) {
  51. sync_sems[i].in_use = true;
  52. idx = i;
  53. break;
  54. }
  55. }
  56. unlock();
  57. if (idx == -1) {
  58. wait_for_flush();
  59. } else {
  60. break;
  61. }
  62. }
  63. return &sync_sems[idx];
  64. }
  65. bool CommandQueueMT::dealloc_one() {
  66. tryagain:
  67. if (dealloc_ptr == (write_ptr_and_epoch >> 1)) {
  68. // The queue is empty
  69. return false;
  70. }
  71. uint32_t size = *(uint32_t *)&command_mem[dealloc_ptr];
  72. if (size == 0) {
  73. // End of command buffer wrap down
  74. dealloc_ptr = 0;
  75. goto tryagain;
  76. }
  77. if (size & 1) {
  78. // Still used, nothing can be deallocated
  79. return false;
  80. }
  81. dealloc_ptr += (size >> 1) + 8;
  82. return true;
  83. }
  84. CommandQueueMT::CommandQueueMT(bool p_sync) {
  85. read_ptr_and_epoch = 0;
  86. write_ptr_and_epoch = 0;
  87. dealloc_ptr = 0;
  88. mutex = Mutex::create();
  89. command_mem_size = GLOBAL_DEF_RST("memory/limits/command_queue/multithreading_queue_size_kb", DEFAULT_COMMAND_MEM_SIZE_KB);
  90. 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"));
  91. command_mem_size *= 1024;
  92. command_mem = (uint8_t *)memalloc(command_mem_size);
  93. for (int i = 0; i < SYNC_SEMAPHORES; i++) {
  94. sync_sems[i].sem = Semaphore::create();
  95. sync_sems[i].in_use = false;
  96. }
  97. if (p_sync) {
  98. sync = Semaphore::create();
  99. } else {
  100. sync = NULL;
  101. }
  102. }
  103. CommandQueueMT::~CommandQueueMT() {
  104. if (sync)
  105. memdelete(sync);
  106. memdelete(mutex);
  107. for (int i = 0; i < SYNC_SEMAPHORES; i++) {
  108. memdelete(sync_sems[i].sem);
  109. }
  110. memfree(command_mem);
  111. }