8298111: Cleanups after UseMallocOnly removal

Reviewed-by: coleenp
This commit is contained in:
Thomas Stuefe 2022-12-06 06:30:59 +00:00
parent ee9ba74564
commit 04012c4310

@ -101,8 +101,6 @@ protected:
void* grow(size_t x, AllocFailType alloc_failmode = AllocFailStrategy::EXIT_OOM);
size_t _size_in_bytes; // Size of arena (used for native memory tracking)
debug_only(void* malloc(size_t size);)
void* internal_amalloc(size_t x, AllocFailType alloc_failmode = AllocFailStrategy::EXIT_OOM) {
assert(is_aligned(x, BytesPerWord), "misaligned size");
if (pointer_delta(_max, _hwm, 1) >= x) {
@ -173,9 +171,6 @@ protected:
size_t size_in_bytes() const { return _size_in_bytes; };
void set_size_in_bytes(size_t size);
static void free_malloced_objects(Chunk* chunk, char* hwm, char* max, char* hwm2) PRODUCT_RETURN;
static void free_all(char** start, char** end) PRODUCT_RETURN;
private:
// Reset this Arena to empty, access will trigger grow if necessary
void reset(void) {