| 
									
										
										
										
											2023-01-05 13:25:55 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  pool_allocator.cpp                                                    */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining  */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the        */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including    */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,    */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to     */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to  */ | 
					
						
							|  |  |  | /* the following conditions:                                              */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be         */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.        */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "pool_allocator.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-16 08:04:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/error/error_macros.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/os/memory.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "core/os/os.h"
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/string/print_string.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-16 08:04:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #define COMPACT_CHUNK(m_entry, m_to_pos)                      \
 | 
					
						
							|  |  |  | 	do {                                                      \ | 
					
						
							|  |  |  | 		void *_dst = &((unsigned char *)pool)[m_to_pos];      \ | 
					
						
							|  |  |  | 		void *_src = &((unsigned char *)pool)[(m_entry).pos]; \ | 
					
						
							| 
									
										
										
										
											2021-04-27 16:19:21 +02:00
										 |  |  | 		memmove(_dst, _src, aligned((m_entry).len));          \ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		(m_entry).pos = m_to_pos;                             \ | 
					
						
							|  |  |  | 	} while (0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PoolAllocator::mt_lock() const { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PoolAllocator::mt_unlock() const { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool PoolAllocator::get_free_entry(EntryArrayPos *p_pos) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (entry_count == entry_max) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < entry_max; i++) { | 
					
						
							|  |  |  | 		if (entry_array[i].len == 0) { | 
					
						
							|  |  |  | 			*p_pos = i; | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ERR_PRINT("Out of memory Chunks!"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return false; //
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Find a hole | 
					
						
							|  |  |  |  * @param p_pos The hole is behind the block pointed by this variable upon return. if pos==entry_count, then allocate at end | 
					
						
							|  |  |  |  * @param p_for_size hole size | 
					
						
							|  |  |  |  * @return false if hole found, true if no hole found | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | bool PoolAllocator::find_hole(EntryArrayPos *p_pos, int p_for_size) { | 
					
						
							|  |  |  | 	/* position where previous entry ends. Defaults to zero (begin of pool) */ | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	int prev_entry_end_pos = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < entry_count; i++) { | 
					
						
							|  |  |  | 		Entry &entry = entry_array[entry_indices[i]]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* determine hole size to previous entry */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int hole_size = entry.pos - prev_entry_end_pos; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-21 11:30:55 -05:00
										 |  |  | 		/* determine if what we want fits in that hole */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		if (hole_size >= p_for_size) { | 
					
						
							|  |  |  | 			*p_pos = i; | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* prepare for next one */ | 
					
						
							|  |  |  | 		prev_entry_end_pos = entry_end(entry); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-21 11:30:55 -05:00
										 |  |  | 	/* No holes between entries, check at the end..*/ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if ((pool_size - prev_entry_end_pos) >= p_for_size) { | 
					
						
							|  |  |  | 		*p_pos = entry_count; | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PoolAllocator::compact(int p_up_to) { | 
					
						
							|  |  |  | 	uint32_t prev_entry_end_pos = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (p_up_to < 0) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		p_up_to = entry_count; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	for (int i = 0; i < p_up_to; i++) { | 
					
						
							|  |  |  | 		Entry &entry = entry_array[entry_indices[i]]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* determine hole size to previous entry */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int hole_size = entry.pos - prev_entry_end_pos; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* if we can compact, do it */ | 
					
						
							|  |  |  | 		if (hole_size > 0 && !entry.lock) { | 
					
						
							|  |  |  | 			COMPACT_CHUNK(entry, prev_entry_end_pos); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		/* prepare for next one */ | 
					
						
							|  |  |  | 		prev_entry_end_pos = entry_end(entry); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PoolAllocator::compact_up(int p_from) { | 
					
						
							|  |  |  | 	uint32_t next_entry_end_pos = pool_size; // - static_area_size;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = entry_count - 1; i >= p_from; i--) { | 
					
						
							|  |  |  | 		Entry &entry = entry_array[entry_indices[i]]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-12 19:05:16 +05:30
										 |  |  | 		/* determine hole size for next entry */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		int hole_size = next_entry_end_pos - (entry.pos + aligned(entry.len)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* if we can compact, do it */ | 
					
						
							|  |  |  | 		if (hole_size > 0 && !entry.lock) { | 
					
						
							|  |  |  | 			COMPACT_CHUNK(entry, (next_entry_end_pos - aligned(entry.len))); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* prepare for next one */ | 
					
						
							|  |  |  | 		next_entry_end_pos = entry.pos; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-05 13:40:26 +03:00
										 |  |  | bool PoolAllocator::find_entry_index(EntryIndicesPos *p_map_pos, const Entry *p_entry) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	EntryArrayPos entry_pos = entry_max; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	for (int i = 0; i < entry_count; i++) { | 
					
						
							|  |  |  | 		if (&entry_array[entry_indices[i]] == p_entry) { | 
					
						
							|  |  |  | 			entry_pos = i; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (entry_pos == entry_max) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	*p_map_pos = entry_pos; | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PoolAllocator::ID PoolAllocator::alloc(int p_size) { | 
					
						
							|  |  |  | 	ERR_FAIL_COND_V(p_size < 1, POOL_ALLOCATOR_INVALID_ID); | 
					
						
							|  |  |  | 	ERR_FAIL_COND_V(p_size > free_mem, POOL_ALLOCATOR_INVALID_ID); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	mt_lock(); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (entry_count == entry_max) { | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		ERR_PRINT("entry_count==entry_max"); | 
					
						
							|  |  |  | 		return POOL_ALLOCATOR_INVALID_ID; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	int size_to_alloc = aligned(p_size); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	EntryIndicesPos new_entry_indices_pos; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (!find_hole(&new_entry_indices_pos, size_to_alloc)) { | 
					
						
							|  |  |  | 		/* No hole could be found, try compacting mem */ | 
					
						
							|  |  |  | 		compact(); | 
					
						
							|  |  |  | 		/* Then search again */ | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		if (!find_hole(&new_entry_indices_pos, size_to_alloc)) { | 
					
						
							|  |  |  | 			mt_unlock(); | 
					
						
							| 
									
										
										
										
											2019-08-14 20:57:49 -06:00
										 |  |  | 			ERR_FAIL_V_MSG(POOL_ALLOCATOR_INVALID_ID, "Memory can't be compacted further."); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	EntryArrayPos new_entry_array_pos; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	bool found_free_entry = get_free_entry(&new_entry_array_pos); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (!found_free_entry) { | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							| 
									
										
										
										
											2019-08-14 20:57:49 -06:00
										 |  |  | 		ERR_FAIL_V_MSG(POOL_ALLOCATOR_INVALID_ID, "No free entry found in PoolAllocator."); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	/* move all entry indices up, make room for this one */ | 
					
						
							|  |  |  | 	for (int i = entry_count; i > new_entry_indices_pos; i--) { | 
					
						
							|  |  |  | 		entry_indices[i] = entry_indices[i - 1]; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	entry_indices[new_entry_indices_pos] = new_entry_array_pos; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	entry_count++; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	Entry &entry = entry_array[entry_indices[new_entry_indices_pos]]; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	entry.len = p_size; | 
					
						
							| 
									
										
										
										
											2017-03-24 21:45:31 +01:00
										 |  |  | 	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
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	entry.lock = 0; | 
					
						
							|  |  |  | 	entry.check = (check_count++) & CHECK_MASK; | 
					
						
							|  |  |  | 	free_mem -= size_to_alloc; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (free_mem < free_mem_peak) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		free_mem_peak = free_mem; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	ID retval = (entry_indices[new_entry_indices_pos] << CHECK_BITS) | entry.check; | 
					
						
							|  |  |  | 	mt_unlock(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//ERR_FAIL_COND_V( (uintptr_t)get(retval)%align != 0, retval );
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return retval; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PoolAllocator::Entry *PoolAllocator::get_entry(ID p_mem) { | 
					
						
							|  |  |  | 	unsigned int check = p_mem & CHECK_MASK; | 
					
						
							|  |  |  | 	int entry = p_mem >> CHECK_BITS; | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	ERR_FAIL_INDEX_V(entry, entry_max, nullptr); | 
					
						
							|  |  |  | 	ERR_FAIL_COND_V(entry_array[entry].check != check, nullptr); | 
					
						
							|  |  |  | 	ERR_FAIL_COND_V(entry_array[entry].len == 0, nullptr); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return &entry_array[entry]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const PoolAllocator::Entry *PoolAllocator::get_entry(ID p_mem) const { | 
					
						
							|  |  |  | 	unsigned int check = p_mem & CHECK_MASK; | 
					
						
							|  |  |  | 	int entry = p_mem >> CHECK_BITS; | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	ERR_FAIL_INDEX_V(entry, entry_max, nullptr); | 
					
						
							|  |  |  | 	ERR_FAIL_COND_V(entry_array[entry].check != check, nullptr); | 
					
						
							|  |  |  | 	ERR_FAIL_COND_V(entry_array[entry].len == 0, nullptr); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return &entry_array[entry]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PoolAllocator::free(ID p_mem) { | 
					
						
							|  |  |  | 	mt_lock(); | 
					
						
							|  |  |  | 	Entry *e = get_entry(p_mem); | 
					
						
							|  |  |  | 	if (!e) { | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		ERR_PRINT("!e"); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (e->lock) { | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		ERR_PRINT("e->lock"); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	EntryIndicesPos entry_indices_pos; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	bool index_found = find_entry_index(&entry_indices_pos, e); | 
					
						
							|  |  |  | 	if (!index_found) { | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		ERR_FAIL_COND(!index_found); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = entry_indices_pos; i < (entry_count - 1); i++) { | 
					
						
							|  |  |  | 		entry_indices[i] = entry_indices[i + 1]; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	entry_count--; | 
					
						
							|  |  |  | 	free_mem += aligned(e->len); | 
					
						
							|  |  |  | 	e->clear(); | 
					
						
							|  |  |  | 	mt_unlock(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int PoolAllocator::get_size(ID p_mem) const { | 
					
						
							|  |  |  | 	int size; | 
					
						
							|  |  |  | 	mt_lock(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const Entry *e = get_entry(p_mem); | 
					
						
							|  |  |  | 	if (!e) { | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		ERR_PRINT("!e"); | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	size = e->len; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	mt_unlock(); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return size; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | Error PoolAllocator::resize(ID p_mem, int p_new_size) { | 
					
						
							|  |  |  | 	mt_lock(); | 
					
						
							|  |  |  | 	Entry *e = get_entry(p_mem); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!e) { | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(!e, ERR_INVALID_PARAMETER); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (needs_locking && e->lock) { | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(e->lock, ERR_ALREADY_IN_USE); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-31 23:30:35 +02:00
										 |  |  | 	uint32_t alloc_size = aligned(p_new_size); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-31 23:30:35 +02:00
										 |  |  | 	if ((uint32_t)aligned(e->len) == alloc_size) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		e->len = p_new_size; | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		return OK; | 
					
						
							|  |  |  | 	} else if (e->len > (uint32_t)p_new_size) { | 
					
						
							|  |  |  | 		free_mem += aligned(e->len); | 
					
						
							|  |  |  | 		free_mem -= alloc_size; | 
					
						
							|  |  |  | 		e->len = p_new_size; | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		return OK; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//p_new_size = align(p_new_size)
 | 
					
						
							|  |  |  | 	int _free = free_mem; // - static_area_size;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-17 00:35:47 +02:00
										 |  |  | 	if (uint32_t(_free + aligned(e->len)) < alloc_size) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		ERR_FAIL_V(ERR_OUT_OF_MEMORY); | 
					
						
							| 
									
										
										
										
											2020-05-19 15:46:49 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	EntryIndicesPos entry_indices_pos; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool index_found = find_entry_index(&entry_indices_pos, e); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!index_found) { | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		ERR_FAIL_COND_V(!index_found, ERR_BUG); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//no need to move stuff around, it fits before the next block
 | 
					
						
							| 
									
										
										
										
											2017-08-31 23:30:35 +02:00
										 |  |  | 	uint32_t next_pos; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (entry_indices_pos + 1 == entry_count) { | 
					
						
							|  |  |  | 		next_pos = pool_size; // - static_area_size;
 | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		next_pos = entry_array[entry_indices[entry_indices_pos + 1]].pos; | 
					
						
							| 
									
										
										
										
											2020-05-19 15:46:49 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if ((next_pos - e->pos) > alloc_size) { | 
					
						
							|  |  |  | 		free_mem += aligned(e->len); | 
					
						
							|  |  |  | 		e->len = p_new_size; | 
					
						
							|  |  |  | 		free_mem -= alloc_size; | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		return OK; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	//it doesn't fit, compact around BEFORE current index (make room behind)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	compact(entry_indices_pos + 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((next_pos - e->pos) > alloc_size) { | 
					
						
							|  |  |  | 		//now fits! hooray!
 | 
					
						
							|  |  |  | 		free_mem += aligned(e->len); | 
					
						
							|  |  |  | 		e->len = p_new_size; | 
					
						
							|  |  |  | 		free_mem -= alloc_size; | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (free_mem < free_mem_peak) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			free_mem_peak = free_mem; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return OK; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//STILL doesn't fit, compact around AFTER current index (make room after)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	compact_up(entry_indices_pos + 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((entry_array[entry_indices[entry_indices_pos + 1]].pos - e->pos) > alloc_size) { | 
					
						
							|  |  |  | 		//now fits! hooray!
 | 
					
						
							|  |  |  | 		free_mem += aligned(e->len); | 
					
						
							|  |  |  | 		e->len = p_new_size; | 
					
						
							|  |  |  | 		free_mem -= alloc_size; | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (free_mem < free_mem_peak) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			free_mem_peak = free_mem; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return OK; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mt_unlock(); | 
					
						
							|  |  |  | 	ERR_FAIL_V(ERR_OUT_OF_MEMORY); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Error PoolAllocator::lock(ID p_mem) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!needs_locking) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return OK; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	mt_lock(); | 
					
						
							|  |  |  | 	Entry *e = get_entry(p_mem); | 
					
						
							|  |  |  | 	if (!e) { | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		ERR_PRINT("!e"); | 
					
						
							|  |  |  | 		return ERR_INVALID_PARAMETER; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 	e->lock++; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	mt_unlock(); | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool PoolAllocator::is_locked(ID p_mem) const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!needs_locking) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	mt_lock(); | 
					
						
							| 
									
										
										
										
											2022-04-05 13:40:26 +03:00
										 |  |  | 	const Entry *e = const_cast<PoolAllocator *>(this)->get_entry(p_mem); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (!e) { | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		ERR_PRINT("!e"); | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	bool locked = e->lock; | 
					
						
							|  |  |  | 	mt_unlock(); | 
					
						
							|  |  |  | 	return locked; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const void *PoolAllocator::get(ID p_mem) const { | 
					
						
							|  |  |  | 	if (!needs_locking) { | 
					
						
							|  |  |  | 		const Entry *e = get_entry(p_mem); | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 		ERR_FAIL_COND_V(!e, nullptr); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return &pool[e->pos]; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	mt_lock(); | 
					
						
							|  |  |  | 	const Entry *e = get_entry(p_mem); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (!e) { | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 		ERR_FAIL_COND_V(!e, nullptr); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (e->lock == 0) { | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		ERR_PRINT("e->lock == 0"); | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 		return nullptr; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-23 02:28:09 -06:00
										 |  |  | 	if ((int)e->pos >= pool_size) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		ERR_PRINT("e->pos<0 || e->pos>=pool_size"); | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 		return nullptr; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	const void *ptr = &pool[e->pos]; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	mt_unlock(); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void *PoolAllocator::get(ID p_mem) { | 
					
						
							|  |  |  | 	if (!needs_locking) { | 
					
						
							|  |  |  | 		Entry *e = get_entry(p_mem); | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 		ERR_FAIL_COND_V(!e, nullptr); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return &pool[e->pos]; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	mt_lock(); | 
					
						
							|  |  |  | 	Entry *e = get_entry(p_mem); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (!e) { | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 		ERR_FAIL_COND_V(!e, nullptr); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (e->lock == 0) { | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		ERR_PRINT("e->lock == 0"); | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 		return nullptr; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-23 02:28:09 -06:00
										 |  |  | 	if ((int)e->pos >= pool_size) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		ERR_PRINT("e->pos<0 || e->pos>=pool_size"); | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 		return nullptr; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	void *ptr = &pool[e->pos]; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	mt_unlock(); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return ptr; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void PoolAllocator::unlock(ID p_mem) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!needs_locking) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	mt_lock(); | 
					
						
							|  |  |  | 	Entry *e = get_entry(p_mem); | 
					
						
							| 
									
										
										
										
											2019-08-07 12:54:30 +02:00
										 |  |  | 	if (!e) { | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		ERR_FAIL_COND(!e); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (e->lock == 0) { | 
					
						
							|  |  |  | 		mt_unlock(); | 
					
						
							|  |  |  | 		ERR_PRINT("e->lock == 0"); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 	e->lock--; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	mt_unlock(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int PoolAllocator::get_used_mem() const { | 
					
						
							|  |  |  | 	return pool_size - free_mem; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int PoolAllocator::get_free_peak() { | 
					
						
							|  |  |  | 	return free_mem_peak; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int PoolAllocator::get_free_mem() { | 
					
						
							|  |  |  | 	return free_mem; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PoolAllocator::create_pool(void *p_mem, int p_size, int p_max_entries) { | 
					
						
							|  |  |  | 	pool = (uint8_t *)p_mem; | 
					
						
							|  |  |  | 	pool_size = p_size; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	entry_array = memnew_arr(Entry, p_max_entries); | 
					
						
							|  |  |  | 	entry_indices = memnew_arr(int, p_max_entries); | 
					
						
							|  |  |  | 	entry_max = p_max_entries; | 
					
						
							|  |  |  | 	entry_count = 0; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	free_mem = p_size; | 
					
						
							|  |  |  | 	free_mem_peak = p_size; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	check_count = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PoolAllocator::PoolAllocator(int p_size, bool p_needs_locking, int p_max_entries) { | 
					
						
							| 
									
										
										
										
											2017-01-06 10:15:44 -03:00
										 |  |  | 	mem_ptr = memalloc(p_size); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	ERR_FAIL_COND(!mem_ptr); | 
					
						
							|  |  |  | 	align = 1; | 
					
						
							|  |  |  | 	create_pool(mem_ptr, p_size, p_max_entries); | 
					
						
							|  |  |  | 	needs_locking = p_needs_locking; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PoolAllocator::PoolAllocator(void *p_mem, int p_size, int p_align, bool p_needs_locking, int p_max_entries) { | 
					
						
							|  |  |  | 	if (p_align > 1) { | 
					
						
							|  |  |  | 		uint8_t *mem8 = (uint8_t *)p_mem; | 
					
						
							|  |  |  | 		uint64_t ofs = (uint64_t)mem8; | 
					
						
							|  |  |  | 		if (ofs % p_align) { | 
					
						
							|  |  |  | 			int dif = p_align - (ofs % p_align); | 
					
						
							|  |  |  | 			mem8 += p_align - (ofs % p_align); | 
					
						
							|  |  |  | 			p_size -= dif; | 
					
						
							|  |  |  | 			p_mem = (void *)mem8; | 
					
						
							| 
									
										
										
										
											2020-05-19 15:46:49 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	create_pool(p_mem, p_size, p_max_entries); | 
					
						
							|  |  |  | 	needs_locking = p_needs_locking; | 
					
						
							|  |  |  | 	align = p_align; | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	mem_ptr = nullptr; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PoolAllocator::PoolAllocator(int p_align, int p_size, bool p_needs_locking, int p_max_entries) { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 	ERR_FAIL_COND(p_align < 1); | 
					
						
							| 
									
										
										
										
											2019-07-20 08:09:57 +02:00
										 |  |  | 	mem_ptr = Memory::alloc_static(p_size + p_align, true); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	uint8_t *mem8 = (uint8_t *)mem_ptr; | 
					
						
							|  |  |  | 	uint64_t ofs = (uint64_t)mem8; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (ofs % p_align) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		mem8 += p_align - (ofs % p_align); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	create_pool(mem8, p_size, p_max_entries); | 
					
						
							|  |  |  | 	needs_locking = p_needs_locking; | 
					
						
							|  |  |  | 	align = p_align; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PoolAllocator::~PoolAllocator() { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (mem_ptr) { | 
					
						
							| 
									
										
										
										
											2017-01-06 10:15:44 -03:00
										 |  |  | 		memfree(mem_ptr); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	memdelete_arr(entry_array); | 
					
						
							|  |  |  | 	memdelete_arr(entry_indices); | 
					
						
							|  |  |  | } |