command_queue_mt.cpp 3.7 KB

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