pool_allocator.cpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589
  1. /**************************************************************************/
  2. /* pool_allocator.cpp */
  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. #include "pool_allocator.h"
  31. #include "core/error/error_macros.h"
  32. #include "core/os/memory.h"
  33. #include "core/os/os.h"
  34. #include "core/string/print_string.h"
  35. #define COMPACT_CHUNK(m_entry, m_to_pos) \
  36. if constexpr (true) { \
  37. void *_dst = &((unsigned char *)pool)[m_to_pos]; \
  38. void *_src = &((unsigned char *)pool)[(m_entry).pos]; \
  39. memmove(_dst, _src, aligned((m_entry).len)); \
  40. (m_entry).pos = m_to_pos; \
  41. } else \
  42. ((void)0)
  43. void PoolAllocator::mt_lock() const {
  44. }
  45. void PoolAllocator::mt_unlock() const {
  46. }
  47. bool PoolAllocator::get_free_entry(EntryArrayPos *p_pos) {
  48. if (entry_count == entry_max) {
  49. return false;
  50. }
  51. for (int i = 0; i < entry_max; i++) {
  52. if (entry_array[i].len == 0) {
  53. *p_pos = i;
  54. return true;
  55. }
  56. }
  57. ERR_PRINT("Out of memory Chunks!");
  58. return false; //
  59. }
  60. /**
  61. * Find a hole
  62. * @param p_pos The hole is behind the block pointed by this variable upon return. if pos==entry_count, then allocate at end
  63. * @param p_for_size hole size
  64. * @return false if hole found, true if no hole found
  65. */
  66. bool PoolAllocator::find_hole(EntryArrayPos *p_pos, int p_for_size) {
  67. /* position where previous entry ends. Defaults to zero (begin of pool) */
  68. int prev_entry_end_pos = 0;
  69. for (int i = 0; i < entry_count; i++) {
  70. Entry &entry = entry_array[entry_indices[i]];
  71. /* determine hole size to previous entry */
  72. int hole_size = entry.pos - prev_entry_end_pos;
  73. /* determine if what we want fits in that hole */
  74. if (hole_size >= p_for_size) {
  75. *p_pos = i;
  76. return true;
  77. }
  78. /* prepare for next one */
  79. prev_entry_end_pos = entry_end(entry);
  80. }
  81. /* No holes between entries, check at the end..*/
  82. if ((pool_size - prev_entry_end_pos) >= p_for_size) {
  83. *p_pos = entry_count;
  84. return true;
  85. }
  86. return false;
  87. }
  88. void PoolAllocator::compact(int p_up_to) {
  89. uint32_t prev_entry_end_pos = 0;
  90. if (p_up_to < 0) {
  91. p_up_to = entry_count;
  92. }
  93. for (int i = 0; i < p_up_to; i++) {
  94. Entry &entry = entry_array[entry_indices[i]];
  95. /* determine hole size to previous entry */
  96. int hole_size = entry.pos - prev_entry_end_pos;
  97. /* if we can compact, do it */
  98. if (hole_size > 0 && !entry.lock) {
  99. COMPACT_CHUNK(entry, prev_entry_end_pos);
  100. }
  101. /* prepare for next one */
  102. prev_entry_end_pos = entry_end(entry);
  103. }
  104. }
  105. void PoolAllocator::compact_up(int p_from) {
  106. uint32_t next_entry_end_pos = pool_size; // - static_area_size;
  107. for (int i = entry_count - 1; i >= p_from; i--) {
  108. Entry &entry = entry_array[entry_indices[i]];
  109. /* determine hole size for next entry */
  110. int hole_size = next_entry_end_pos - (entry.pos + aligned(entry.len));
  111. /* if we can compact, do it */
  112. if (hole_size > 0 && !entry.lock) {
  113. COMPACT_CHUNK(entry, (next_entry_end_pos - aligned(entry.len)));
  114. }
  115. /* prepare for next one */
  116. next_entry_end_pos = entry.pos;
  117. }
  118. }
  119. bool PoolAllocator::find_entry_index(EntryIndicesPos *p_map_pos, const Entry *p_entry) {
  120. EntryArrayPos entry_pos = entry_max;
  121. for (int i = 0; i < entry_count; i++) {
  122. if (&entry_array[entry_indices[i]] == p_entry) {
  123. entry_pos = i;
  124. break;
  125. }
  126. }
  127. if (entry_pos == entry_max) {
  128. return false;
  129. }
  130. *p_map_pos = entry_pos;
  131. return true;
  132. }
  133. PoolAllocator::ID PoolAllocator::alloc(int p_size) {
  134. ERR_FAIL_COND_V(p_size < 1, POOL_ALLOCATOR_INVALID_ID);
  135. ERR_FAIL_COND_V(p_size > free_mem, POOL_ALLOCATOR_INVALID_ID);
  136. mt_lock();
  137. if (entry_count == entry_max) {
  138. mt_unlock();
  139. ERR_PRINT("entry_count==entry_max");
  140. return POOL_ALLOCATOR_INVALID_ID;
  141. }
  142. int size_to_alloc = aligned(p_size);
  143. EntryIndicesPos new_entry_indices_pos;
  144. if (!find_hole(&new_entry_indices_pos, size_to_alloc)) {
  145. /* No hole could be found, try compacting mem */
  146. compact();
  147. /* Then search again */
  148. if (!find_hole(&new_entry_indices_pos, size_to_alloc)) {
  149. mt_unlock();
  150. ERR_FAIL_V_MSG(POOL_ALLOCATOR_INVALID_ID, "Memory can't be compacted further.");
  151. }
  152. }
  153. EntryArrayPos new_entry_array_pos;
  154. bool found_free_entry = get_free_entry(&new_entry_array_pos);
  155. if (!found_free_entry) {
  156. mt_unlock();
  157. ERR_FAIL_V_MSG(POOL_ALLOCATOR_INVALID_ID, "No free entry found in PoolAllocator.");
  158. }
  159. /* move all entry indices up, make room for this one */
  160. for (int i = entry_count; i > new_entry_indices_pos; i--) {
  161. entry_indices[i] = entry_indices[i - 1];
  162. }
  163. entry_indices[new_entry_indices_pos] = new_entry_array_pos;
  164. entry_count++;
  165. Entry &entry = entry_array[entry_indices[new_entry_indices_pos]];
  166. entry.len = p_size;
  167. entry.pos = (new_entry_indices_pos == 0) ? 0 : entry_end(entry_array[entry_indices[new_entry_indices_pos - 1]]); //alloc either at beginning or end of previous
  168. entry.lock = 0;
  169. entry.check = (check_count++) & CHECK_MASK;
  170. free_mem -= size_to_alloc;
  171. if (free_mem < free_mem_peak) {
  172. free_mem_peak = free_mem;
  173. }
  174. ID retval = (entry_indices[new_entry_indices_pos] << CHECK_BITS) | entry.check;
  175. mt_unlock();
  176. //ERR_FAIL_COND_V( (uintptr_t)get(retval)%align != 0, retval );
  177. return retval;
  178. }
  179. PoolAllocator::Entry *PoolAllocator::get_entry(ID p_mem) {
  180. unsigned int check = p_mem & CHECK_MASK;
  181. int entry = p_mem >> CHECK_BITS;
  182. ERR_FAIL_INDEX_V(entry, entry_max, nullptr);
  183. ERR_FAIL_COND_V(entry_array[entry].check != check, nullptr);
  184. ERR_FAIL_COND_V(entry_array[entry].len == 0, nullptr);
  185. return &entry_array[entry];
  186. }
  187. const PoolAllocator::Entry *PoolAllocator::get_entry(ID p_mem) const {
  188. unsigned int check = p_mem & CHECK_MASK;
  189. int entry = p_mem >> CHECK_BITS;
  190. ERR_FAIL_INDEX_V(entry, entry_max, nullptr);
  191. ERR_FAIL_COND_V(entry_array[entry].check != check, nullptr);
  192. ERR_FAIL_COND_V(entry_array[entry].len == 0, nullptr);
  193. return &entry_array[entry];
  194. }
  195. void PoolAllocator::free(ID p_mem) {
  196. mt_lock();
  197. Entry *e = get_entry(p_mem);
  198. if (!e) {
  199. mt_unlock();
  200. ERR_PRINT("!e");
  201. return;
  202. }
  203. if (e->lock) {
  204. mt_unlock();
  205. ERR_PRINT("e->lock");
  206. return;
  207. }
  208. EntryIndicesPos entry_indices_pos;
  209. bool index_found = find_entry_index(&entry_indices_pos, e);
  210. if (!index_found) {
  211. mt_unlock();
  212. ERR_FAIL_COND(!index_found);
  213. }
  214. for (int i = entry_indices_pos; i < (entry_count - 1); i++) {
  215. entry_indices[i] = entry_indices[i + 1];
  216. }
  217. entry_count--;
  218. free_mem += aligned(e->len);
  219. e->clear();
  220. mt_unlock();
  221. }
  222. int PoolAllocator::get_size(ID p_mem) const {
  223. int size;
  224. mt_lock();
  225. const Entry *e = get_entry(p_mem);
  226. if (!e) {
  227. mt_unlock();
  228. ERR_PRINT("!e");
  229. return 0;
  230. }
  231. size = e->len;
  232. mt_unlock();
  233. return size;
  234. }
  235. Error PoolAllocator::resize(ID p_mem, int p_new_size) {
  236. mt_lock();
  237. Entry *e = get_entry(p_mem);
  238. if (!e) {
  239. mt_unlock();
  240. ERR_FAIL_NULL_V(e, ERR_INVALID_PARAMETER);
  241. }
  242. if (needs_locking && e->lock) {
  243. mt_unlock();
  244. ERR_FAIL_COND_V(e->lock, ERR_ALREADY_IN_USE);
  245. }
  246. uint32_t alloc_size = aligned(p_new_size);
  247. if ((uint32_t)aligned(e->len) == alloc_size) {
  248. e->len = p_new_size;
  249. mt_unlock();
  250. return OK;
  251. } else if (e->len > (uint32_t)p_new_size) {
  252. free_mem += aligned(e->len);
  253. free_mem -= alloc_size;
  254. e->len = p_new_size;
  255. mt_unlock();
  256. return OK;
  257. }
  258. //p_new_size = align(p_new_size)
  259. int _free = free_mem; // - static_area_size;
  260. if (uint32_t(_free + aligned(e->len)) < alloc_size) {
  261. mt_unlock();
  262. ERR_FAIL_V(ERR_OUT_OF_MEMORY);
  263. }
  264. EntryIndicesPos entry_indices_pos;
  265. bool index_found = find_entry_index(&entry_indices_pos, e);
  266. if (!index_found) {
  267. mt_unlock();
  268. ERR_FAIL_COND_V(!index_found, ERR_BUG);
  269. }
  270. //no need to move stuff around, it fits before the next block
  271. uint32_t next_pos;
  272. if (entry_indices_pos + 1 == entry_count) {
  273. next_pos = pool_size; // - static_area_size;
  274. } else {
  275. next_pos = entry_array[entry_indices[entry_indices_pos + 1]].pos;
  276. }
  277. if ((next_pos - e->pos) > alloc_size) {
  278. free_mem += aligned(e->len);
  279. e->len = p_new_size;
  280. free_mem -= alloc_size;
  281. mt_unlock();
  282. return OK;
  283. }
  284. //it doesn't fit, compact around BEFORE current index (make room behind)
  285. compact(entry_indices_pos + 1);
  286. if ((next_pos - e->pos) > alloc_size) {
  287. //now fits! hooray!
  288. free_mem += aligned(e->len);
  289. e->len = p_new_size;
  290. free_mem -= alloc_size;
  291. mt_unlock();
  292. if (free_mem < free_mem_peak) {
  293. free_mem_peak = free_mem;
  294. }
  295. return OK;
  296. }
  297. //STILL doesn't fit, compact around AFTER current index (make room after)
  298. compact_up(entry_indices_pos + 1);
  299. if ((entry_array[entry_indices[entry_indices_pos + 1]].pos - e->pos) > alloc_size) {
  300. //now fits! hooray!
  301. free_mem += aligned(e->len);
  302. e->len = p_new_size;
  303. free_mem -= alloc_size;
  304. mt_unlock();
  305. if (free_mem < free_mem_peak) {
  306. free_mem_peak = free_mem;
  307. }
  308. return OK;
  309. }
  310. mt_unlock();
  311. ERR_FAIL_V(ERR_OUT_OF_MEMORY);
  312. }
  313. Error PoolAllocator::lock(ID p_mem) {
  314. if (!needs_locking) {
  315. return OK;
  316. }
  317. mt_lock();
  318. Entry *e = get_entry(p_mem);
  319. if (!e) {
  320. mt_unlock();
  321. ERR_PRINT("!e");
  322. return ERR_INVALID_PARAMETER;
  323. }
  324. e->lock++;
  325. mt_unlock();
  326. return OK;
  327. }
  328. bool PoolAllocator::is_locked(ID p_mem) const {
  329. if (!needs_locking) {
  330. return false;
  331. }
  332. mt_lock();
  333. const Entry *e = const_cast<PoolAllocator *>(this)->get_entry(p_mem);
  334. if (!e) {
  335. mt_unlock();
  336. ERR_PRINT("!e");
  337. return false;
  338. }
  339. bool locked = e->lock;
  340. mt_unlock();
  341. return locked;
  342. }
  343. const void *PoolAllocator::get(ID p_mem) const {
  344. if (!needs_locking) {
  345. const Entry *e = get_entry(p_mem);
  346. ERR_FAIL_NULL_V(e, nullptr);
  347. return &pool[e->pos];
  348. }
  349. mt_lock();
  350. const Entry *e = get_entry(p_mem);
  351. if (!e) {
  352. mt_unlock();
  353. ERR_FAIL_NULL_V(e, nullptr);
  354. }
  355. if (e->lock == 0) {
  356. mt_unlock();
  357. ERR_PRINT("e->lock == 0");
  358. return nullptr;
  359. }
  360. if ((int)e->pos >= pool_size) {
  361. mt_unlock();
  362. ERR_PRINT("e->pos<0 || e->pos>=pool_size");
  363. return nullptr;
  364. }
  365. const void *ptr = &pool[e->pos];
  366. mt_unlock();
  367. return ptr;
  368. }
  369. void *PoolAllocator::get(ID p_mem) {
  370. if (!needs_locking) {
  371. Entry *e = get_entry(p_mem);
  372. ERR_FAIL_NULL_V(e, nullptr);
  373. return &pool[e->pos];
  374. }
  375. mt_lock();
  376. Entry *e = get_entry(p_mem);
  377. if (!e) {
  378. mt_unlock();
  379. ERR_FAIL_NULL_V(e, nullptr);
  380. }
  381. if (e->lock == 0) {
  382. mt_unlock();
  383. ERR_PRINT("e->lock == 0");
  384. return nullptr;
  385. }
  386. if ((int)e->pos >= pool_size) {
  387. mt_unlock();
  388. ERR_PRINT("e->pos<0 || e->pos>=pool_size");
  389. return nullptr;
  390. }
  391. void *ptr = &pool[e->pos];
  392. mt_unlock();
  393. return ptr;
  394. }
  395. void PoolAllocator::unlock(ID p_mem) {
  396. if (!needs_locking) {
  397. return;
  398. }
  399. mt_lock();
  400. Entry *e = get_entry(p_mem);
  401. if (!e) {
  402. mt_unlock();
  403. ERR_FAIL_NULL(e);
  404. }
  405. if (e->lock == 0) {
  406. mt_unlock();
  407. ERR_PRINT("e->lock == 0");
  408. return;
  409. }
  410. e->lock--;
  411. mt_unlock();
  412. }
  413. int PoolAllocator::get_used_mem() const {
  414. return pool_size - free_mem;
  415. }
  416. int PoolAllocator::get_free_peak() {
  417. return free_mem_peak;
  418. }
  419. int PoolAllocator::get_free_mem() {
  420. return free_mem;
  421. }
  422. void PoolAllocator::create_pool(void *p_mem, int p_size, int p_max_entries) {
  423. pool = (uint8_t *)p_mem;
  424. pool_size = p_size;
  425. entry_array = memnew_arr(Entry, p_max_entries);
  426. entry_indices = memnew_arr(int, p_max_entries);
  427. entry_max = p_max_entries;
  428. entry_count = 0;
  429. free_mem = p_size;
  430. free_mem_peak = p_size;
  431. check_count = 0;
  432. }
  433. PoolAllocator::PoolAllocator(int p_size, bool p_needs_locking, int p_max_entries) {
  434. mem_ptr = memalloc(p_size);
  435. ERR_FAIL_NULL(mem_ptr);
  436. align = 1;
  437. create_pool(mem_ptr, p_size, p_max_entries);
  438. needs_locking = p_needs_locking;
  439. }
  440. PoolAllocator::PoolAllocator(void *p_mem, int p_size, int p_align, bool p_needs_locking, int p_max_entries) {
  441. if (p_align > 1) {
  442. uint8_t *mem8 = (uint8_t *)p_mem;
  443. uint64_t ofs = (uint64_t)mem8;
  444. if (ofs % p_align) {
  445. int dif = p_align - (ofs % p_align);
  446. mem8 += p_align - (ofs % p_align);
  447. p_size -= dif;
  448. p_mem = (void *)mem8;
  449. }
  450. }
  451. create_pool(p_mem, p_size, p_max_entries);
  452. needs_locking = p_needs_locking;
  453. align = p_align;
  454. mem_ptr = nullptr;
  455. }
  456. PoolAllocator::PoolAllocator(int p_align, int p_size, bool p_needs_locking, int p_max_entries) {
  457. ERR_FAIL_COND(p_align < 1);
  458. mem_ptr = Memory::alloc_static(p_size + p_align, true);
  459. uint8_t *mem8 = (uint8_t *)mem_ptr;
  460. uint64_t ofs = (uint64_t)mem8;
  461. if (ofs % p_align) {
  462. mem8 += p_align - (ofs % p_align);
  463. }
  464. create_pool(mem8, p_size, p_max_entries);
  465. needs_locking = p_needs_locking;
  466. align = p_align;
  467. }
  468. PoolAllocator::~PoolAllocator() {
  469. if (mem_ptr) {
  470. memfree(mem_ptr);
  471. }
  472. memdelete_arr(entry_array);
  473. memdelete_arr(entry_indices);
  474. }