/* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2.0, as published by the Free Software Foundation. This program is also distributed with certain software (including but not limited to OpenSSL) that is licensed under separate terms, as designated in a particular file or component or in included license documentation. The authors of MySQL hereby grant you an additional permission to link the program and your derivative works with the separately licensed software that they have included with MySQL. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0, for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ /** * @file include/my_alloc.h * * This file follows Google coding style, except for the name MEM_ROOT (which is * kept for historical reasons). */ #ifndef INCLUDE_MY_ALLOC_H_ #define INCLUDE_MY_ALLOC_H_ #include #include #include #include #include #include "my_compiler.h" #include "my_dbug.h" #include "my_inttypes.h" #include "my_pointer_arithmetic.h" #include "mysql/psi/psi_memory.h" /** * The MEM_ROOT is a simple arena, where allocations are carved out of * larger blocks. Using an arena over plain malloc gives you two main * advantages: * * * Allocation is very cheap (only a few CPU cycles on the fast path). * * You do not need to keep track of which memory you have allocated, * as it will all be freed when the arena is destroyed. * * Thus, if you need to do many small allocations that all are to have * roughly the same lifetime, the MEM_ROOT is probably a good choice. * The flip side is that _no_ memory is freed until the arena is destroyed, * and no destructors are run (although you can run them manually yourself). * * * This specific implementation works by allocating exponentially larger blocks * each time it needs more memory (generally increasing them by 50%), which * guarantees O(1) total calls to malloc and free. Only one free block is * ever used; as soon as there's an allocation that comes in that doesn't fit, * that block is stored away and never allocated from again. (There's an * exception for allocations larger than the block size; see #AllocSlow * for details.) * * The MEM_ROOT is thread-compatible but not thread-safe. This means you cannot * use the same instance from multiple threads at the same time without external * synchronization, but you can use different MEM_ROOTs concurrently in * different threads. * * For C compatibility reasons, MEM_ROOT is a struct, even though it is * logically a class and follows the style guide for classes. */ struct MEM_ROOT { private: struct Block { Block *prev{nullptr}; /** Previous block; used for freeing. */ }; public: MEM_ROOT() : MEM_ROOT(0, 512) {} // 0 = PSI_NOT_INSTRUMENTED. MEM_ROOT(PSI_memory_key key, size_t block_size) : m_block_size(block_size), m_orig_block_size(block_size), m_psi_key(key) {} // MEM_ROOT is movable but not copyable. MEM_ROOT(const MEM_ROOT &) = delete; MEM_ROOT(MEM_ROOT &&other) noexcept : m_current_block(other.m_current_block), m_current_free_start(other.m_current_free_start), m_current_free_end(other.m_current_free_end), m_block_size(other.m_block_size), m_orig_block_size(other.m_orig_block_size), m_max_capacity(other.m_max_capacity), m_allocated_size(other.m_allocated_size), m_error_for_capacity_exceeded(other.m_error_for_capacity_exceeded), m_error_handler(other.m_error_handler), m_psi_key(other.m_psi_key) { other.m_current_block = nullptr; other.m_allocated_size = 0; other.m_block_size = m_orig_block_size; other.m_current_free_start = &s_dummy_target; other.m_current_free_end = &s_dummy_target; } MEM_ROOT &operator=(const MEM_ROOT &) = delete; MEM_ROOT &operator=(MEM_ROOT &&other) noexcept { Clear(); ::new (this) MEM_ROOT(std::move(other)); return *this; } ~MEM_ROOT() { Clear(); } /** * Allocate memory. Will return nullptr if there's not enough memory, * or if the maximum capacity is reached. * * Note that a zero-length allocation can return _any_ pointer, including * nullptr or a pointer that has been given out before. The current * implementation takes some pains to make sure we never return nullptr * (although it might return a bogus pointer), since there is code that * assumes nullptr always means “out of memory”, but you should not rely on * it, as it may change in the future. * * The returned pointer will always be 8-aligned. */ void *Alloc(size_t length) MY_ATTRIBUTE((malloc)) { length = ALIGN_SIZE(length); // Skip the straight path if simulating OOM; it should always fail. DBUG_EXECUTE_IF("simulate_out_of_memory", return AllocSlow(length);); // Fast path, used in the majority of cases. It would be faster here // (saving one register due to CSE) to instead test // // m_current_free_start + length <= m_current_free_end // // but it would invoke undefined behavior, and in particular be prone // to wraparound on 32-bit platforms. if (static_cast(m_current_free_end - m_current_free_start) >= length) { void *ret = m_current_free_start; m_current_free_start += length; return ret; } return AllocSlow(length); } /** Allocate “num” objects of type T, and default-construct them. If the constructor throws an exception, behavior is undefined. We don't use new[], as it can put extra data in front of the array. */ template T *ArrayAlloc(size_t num) { static_assert(alignof(T) <= 8, "MEM_ROOT only returns 8-aligned memory."); if (num * sizeof(T) < num) { // Overflow. return nullptr; } T *ret = static_cast(Alloc(num * sizeof(T))); if (ret == nullptr) { // Out of memory. return nullptr; } // Default-construct all elements. For primitive types like int, // the entire loop will be optimized away. for (size_t i = 0; i < num; ++i) { new (&ret[i]) T; } return ret; } /** * Claim all the allocated memory for the current thread in the performance * schema. Use when transferring responsibility for a MEM_ROOT from one thread * to another. */ void Claim(); /** * Deallocate all the RAM used. The MEM_ROOT itself continues to be valid, * so you can make new calls to Alloc() afterwards. * @note * One can call this function either with a MEM_ROOT initialized with the * constructor, or with one that's memset() to all zeros. * It's also safe to call this multiple times with the same mem_root. */ void Clear(); /** * Similar to Clear(), but anticipates that the block will be reused for * further allocations. This means that even though all the data is gone, * one memory block (typically the largest allocated) will be kept and * made immediately available for calls to Alloc() without having to go to the * OS for new memory. This can yield performance gains if you use the same * MEM_ROOT many times. Also, the block size is not reset. */ void ClearForReuse(); /** Whether the constructor has run or not. This exists solely to support legacy code that memset()s the MEM_ROOT to all zeros, which wants to distinguish between that state and a properly initialized MEM_ROOT. If you do not run the constructor _nor_ do memset(), you are invoking undefined behavior. */ bool inited() const { return m_block_size != 0; } /** * Set maximum capacity for this MEM_ROOT. Whenever the MEM_ROOT has * allocated more than this (not including overhead), and the free block * is empty, future allocations will fail. * * @param max_capacity Maximum capacity this mem_root can hold */ void set_max_capacity(size_t max_capacity) { m_max_capacity = max_capacity; } /** * Return maximum capacity for this MEM_ROOT. */ size_t get_max_capacity() const { return m_max_capacity; } /** * Enable/disable error reporting for exceeding the maximum capacity. * If error reporting is enabled, an error is flagged to indicate that the * capacity is exceeded. However, allocation will still happen for the * requested memory. * * @param report_error whether the error should be reported */ void set_error_for_capacity_exceeded(bool report_error) { m_error_for_capacity_exceeded = report_error; } /** * Return whether error is to be reported when * maximum capacity exceeds for MEM_ROOT. */ bool get_error_for_capacity_exceeded() const { return m_error_for_capacity_exceeded; } /** * Set the error handler on memory allocation failure (or nullptr for none). * The error handler is called called whenever my_malloc() failed to allocate * more memory from the OS (which causes my_alloc() to return nullptr). */ void set_error_handler(void (*error_handler)(void)) { m_error_handler = error_handler; } /** * Amount of memory we have allocated from the operating system, not including * overhead. */ size_t allocated_size() const { return m_allocated_size; } /** * Set the desired size of the next block to be allocated. Note that future * allocations * will grow in size over this, although a Clear() will reset the size again. */ void set_block_size(size_t block_size) { m_block_size = m_orig_block_size = block_size; } private: /** * Something to point on that exists solely to never return nullptr * from Alloc(0). */ static char s_dummy_target; /** Allocate a new block of the given length (plus overhead for the block header). */ Block *AllocBlock(size_t length); /** Allocate memory that doesn't fit into the current free block. */ void *AllocSlow(size_t length); /** Free all blocks in a linked list, starting at the given block. */ static void FreeBlocks(Block *start); /** The current block we are giving out memory from. nullptr if none. */ Block *m_current_block = nullptr; /** Start (inclusive) of the current free block. */ char *m_current_free_start = &s_dummy_target; /** End (exclusive) of the current free block. */ char *m_current_free_end = &s_dummy_target; /** Size of the _next_ block we intend to allocate. */ size_t m_block_size; /** The original block size the user asked for on construction. */ size_t m_orig_block_size; /** Maximum amount of memory this MEM_ROOT can hold. A value of 0 implies there is no limit. */ size_t m_max_capacity = 0; /** * Total allocated size for this MEM_ROOT. Does not include overhead * for block headers or malloc overhead, since especially the latter * is impossible to quantify portably. */ size_t m_allocated_size = 0; /** If enabled, exceeding the capacity will lead to a my_error() call. */ bool m_error_for_capacity_exceeded = false; void (*m_error_handler)(void) = nullptr; PSI_memory_key m_psi_key = 0; }; // Legacy C thunks. Do not use in new code. static inline void init_alloc_root(PSI_memory_key key, MEM_ROOT *root, size_t block_size, size_t) { ::new (root) MEM_ROOT(key, block_size); } void free_root(MEM_ROOT *root, myf flags); /** * Allocate an object of the given type. Use like this: * * Foo *foo = new (mem_root) Foo(); * * Note that unlike regular operator new, this will not throw exceptions. * However, it can return nullptr if the capacity of the MEM_ROOT has been * reached. This is allowed since it is not a replacement for global operator * new, and thus isn't used automatically by e.g. standard library containers. * * TODO: This syntax is confusing in that it could look like allocating * a MEM_ROOT using regular placement new. We should make a less ambiguous * syntax, e.g. new (On(mem_root)) Foo(). */ inline void *operator new( size_t size, MEM_ROOT *mem_root, const std::nothrow_t &arg MY_ATTRIBUTE((unused)) = std::nothrow) noexcept { return mem_root->Alloc(size); } inline void *operator new[]( size_t size, MEM_ROOT *mem_root, const std::nothrow_t &arg MY_ATTRIBUTE((unused)) = std::nothrow) noexcept { return mem_root->Alloc(size); } inline void operator delete(void *, MEM_ROOT *, const std::nothrow_t &)noexcept { /* never called */ } inline void operator delete[](void *, MEM_ROOT *, const std::nothrow_t &) noexcept { /* never called */ } template inline void destroy(T *ptr) { if (ptr != nullptr) ptr->~T(); } template inline void destroy_array(T *ptr, size_t count) { static_assert(!std::is_pointer::value, "You're trying to destroy an array of pointers, " "not an array of objects. This is probably not " "what you intended."); if (ptr != nullptr) { for (size_t i = 0; i < count; ++i) destroy(&ptr[i]); } } /* * For std::unique_ptr with objects allocated on a MEM_ROOT, you shouldn't use * Default_deleter; use this deleter instead. */ template class Destroy_only { public: void operator()(T *ptr) const { destroy(ptr); } }; /** std::unique_ptr, but only destroying. */ template using unique_ptr_destroy_only = std::unique_ptr>; template unique_ptr_destroy_only make_unique_destroy_only(MEM_ROOT *mem_root, Args &&... args) { return unique_ptr_destroy_only(new (mem_root) T(std::forward(args)...)); } #endif // INCLUDE_MY_ALLOC_H_