xinyiZzz commented on code in PR #37257: URL: https://github.com/apache/doris/pull/37257#discussion_r1687515292
########## be/src/vec/common/allocator.h: ########## @@ -112,47 +251,66 @@ class Allocator { release_memory(size); throw_bad_alloc(fmt::format("Allocator: Cannot mmap {}.", size)); } + if constexpr (MemoryAllocator::need_record_actual_size()) { + record_size = MemoryAllocator::allocated_size(buf); + } /// No need for zero-fill, because mmap guarantees it. } else { if (alignment <= MALLOC_MIN_ALIGNMENT) { if constexpr (clear_memory) - buf = ::calloc(size, 1); + buf = MemoryAllocator::calloc(size, 1); else - buf = ::malloc(size); + buf = MemoryAllocator::malloc(size); if (nullptr == buf) { release_memory(size); throw_bad_alloc(fmt::format("Allocator: Cannot malloc {}.", size)); } + if constexpr (MemoryAllocator::need_record_actual_size()) { + record_size = MemoryAllocator::allocated_size(buf); + } } else { buf = nullptr; - int res = posix_memalign(&buf, alignment, size); + int res = MemoryAllocator::posix_memalign(&buf, alignment, size); if (0 != res) { release_memory(size); throw_bad_alloc( fmt::format("Cannot allocate memory (posix_memalign) {}.", size)); } - - if constexpr (clear_memory) memset(buf, 0, size); + if constexpr (MemoryAllocator::need_record_actual_size()) { + record_size = MemoryAllocator::allocated_size(buf); + } } } + if constexpr (MemoryAllocator::need_record_actual_size()) { + consume_memory(record_size - size); + } return buf; } /// Free memory range. void free(void* buf, size_t size) { + /*size_t record_size = 0; + if (size) { + record_size = size; + } else { + record_size = MemoryAllocator::allocated_size(buf); Review Comment: remove this commented codes -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org