8219466: ZGC: Extract allocation functionality into a new ZNMethodAllocator class
Reviewed-by: pliden
This commit is contained in:
parent
2895d5534d
commit
858c007cf8
69
src/hotspot/share/gc/z/zNMethodAllocator.cpp
Normal file
69
src/hotspot/share/gc/z/zNMethodAllocator.cpp
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
|
*
|
||||||
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
* under the terms of the GNU General Public License version 2 only, as
|
||||||
|
* published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* This code 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 for more details (a copy is included in the LICENSE file that
|
||||||
|
* accompanied this code).
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License version
|
||||||
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||||
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
*
|
||||||
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||||
|
* or visit www.oracle.com if you need additional information or have any
|
||||||
|
* questions.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "precompiled.hpp"
|
||||||
|
#include "gc/z/zArray.inline.hpp"
|
||||||
|
#include "gc/z/zNMethodAllocator.hpp"
|
||||||
|
#include "memory/allocation.hpp"
|
||||||
|
|
||||||
|
ZArray<void*> ZNMethodAllocator::_deferred_frees;
|
||||||
|
bool ZNMethodAllocator::_defer_frees(false);
|
||||||
|
|
||||||
|
void ZNMethodAllocator::immediate_free(void* data) {
|
||||||
|
FREE_C_HEAP_ARRAY(uint8_t, data);
|
||||||
|
}
|
||||||
|
|
||||||
|
void ZNMethodAllocator::deferred_free(void* data) {
|
||||||
|
_deferred_frees.add(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
void* ZNMethodAllocator::allocate(size_t size) {
|
||||||
|
return NEW_C_HEAP_ARRAY(uint8_t, size, mtGC);
|
||||||
|
}
|
||||||
|
|
||||||
|
void ZNMethodAllocator::free(void* data) {
|
||||||
|
if (data == NULL) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_defer_frees) {
|
||||||
|
deferred_free(data);
|
||||||
|
} else {
|
||||||
|
immediate_free(data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ZNMethodAllocator::activate_deferred_frees() {
|
||||||
|
assert(_deferred_frees.is_empty(), "precondition");
|
||||||
|
_defer_frees = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void ZNMethodAllocator::deactivate_and_process_deferred_frees() {
|
||||||
|
_defer_frees = false;
|
||||||
|
|
||||||
|
ZArrayIterator<void*> iter(&_deferred_frees);
|
||||||
|
for (void* data; iter.next(&data);) {
|
||||||
|
immediate_free(data);
|
||||||
|
}
|
||||||
|
_deferred_frees.clear();
|
||||||
|
}
|
46
src/hotspot/share/gc/z/zNMethodAllocator.hpp
Normal file
46
src/hotspot/share/gc/z/zNMethodAllocator.hpp
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
|
*
|
||||||
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
* under the terms of the GNU General Public License version 2 only, as
|
||||||
|
* published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* This code 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 for more details (a copy is included in the LICENSE file that
|
||||||
|
* accompanied this code).
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License version
|
||||||
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||||
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
*
|
||||||
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||||
|
* or visit www.oracle.com if you need additional information or have any
|
||||||
|
* questions.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef SHARE_GC_Z_ZNMETHODALLOCATOR_HPP
|
||||||
|
#define SHARE_GC_Z_ZNMETHODALLOCATOR_HPP
|
||||||
|
|
||||||
|
#include "memory/allocation.hpp"
|
||||||
|
#include "gc/z/zArray.hpp"
|
||||||
|
|
||||||
|
class ZNMethodAllocator : public AllStatic {
|
||||||
|
private:
|
||||||
|
static ZArray<void*> _deferred_frees;
|
||||||
|
static bool _defer_frees;
|
||||||
|
|
||||||
|
static void immediate_free(void* data);
|
||||||
|
static void deferred_free(void* data);
|
||||||
|
|
||||||
|
public:
|
||||||
|
static void* allocate(size_t size);
|
||||||
|
static void free(void* data);
|
||||||
|
|
||||||
|
static void activate_deferred_frees();
|
||||||
|
static void deactivate_and_process_deferred_frees();
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // SHARE_GC_Z_ZNMETHODALLOCATOR_HPP
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -27,16 +27,16 @@
|
|||||||
#include "code/icBuffer.hpp"
|
#include "code/icBuffer.hpp"
|
||||||
#include "gc/shared/barrierSet.hpp"
|
#include "gc/shared/barrierSet.hpp"
|
||||||
#include "gc/shared/barrierSetNMethod.hpp"
|
#include "gc/shared/barrierSetNMethod.hpp"
|
||||||
#include "gc/z/zArray.inline.hpp"
|
|
||||||
#include "gc/z/zGlobals.hpp"
|
#include "gc/z/zGlobals.hpp"
|
||||||
#include "gc/z/zHash.inline.hpp"
|
#include "gc/z/zHash.inline.hpp"
|
||||||
#include "gc/z/zLock.inline.hpp"
|
#include "gc/z/zLock.inline.hpp"
|
||||||
|
#include "gc/z/zNMethodAllocator.hpp"
|
||||||
#include "gc/z/zNMethodTable.hpp"
|
#include "gc/z/zNMethodTable.hpp"
|
||||||
#include "gc/z/zOopClosures.inline.hpp"
|
#include "gc/z/zOopClosures.inline.hpp"
|
||||||
#include "gc/z/zTask.hpp"
|
#include "gc/z/zTask.hpp"
|
||||||
#include "gc/z/zWorkers.hpp"
|
#include "gc/z/zWorkers.hpp"
|
||||||
#include "logging/log.hpp"
|
#include "logging/log.hpp"
|
||||||
#include "memory/allocation.inline.hpp"
|
#include "memory/allocation.hpp"
|
||||||
#include "memory/iterator.hpp"
|
#include "memory/iterator.hpp"
|
||||||
#include "memory/resourceArea.hpp"
|
#include "memory/resourceArea.hpp"
|
||||||
#include "runtime/atomic.hpp"
|
#include "runtime/atomic.hpp"
|
||||||
@ -73,12 +73,12 @@ ZNMethodDataOops* ZNMethodDataOops::create(const GrowableArray<oop*>& immediates
|
|||||||
// Allocate memory for the ZNMethodDataOops object
|
// Allocate memory for the ZNMethodDataOops object
|
||||||
// plus the immediate oop* array that follows right after.
|
// plus the immediate oop* array that follows right after.
|
||||||
const size_t size = ZNMethodDataOops::header_size() + (sizeof(oop*) * immediates.length());
|
const size_t size = ZNMethodDataOops::header_size() + (sizeof(oop*) * immediates.length());
|
||||||
void* const data = NEW_C_HEAP_ARRAY(uint8_t, size, mtGC);
|
void* const mem = ZNMethodAllocator::allocate(size);
|
||||||
return ::new (data) ZNMethodDataOops(immediates, has_non_immediates);
|
return ::new (mem) ZNMethodDataOops(immediates, has_non_immediates);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ZNMethodDataOops::destroy(ZNMethodDataOops* oops) {
|
void ZNMethodDataOops::destroy(ZNMethodDataOops* oops) {
|
||||||
ZNMethodTable::safe_delete(oops);
|
ZNMethodAllocator::free(oops);
|
||||||
}
|
}
|
||||||
|
|
||||||
ZNMethodDataOops::ZNMethodDataOops(const GrowableArray<oop*>& immediates, bool has_non_immediates) :
|
ZNMethodDataOops::ZNMethodDataOops(const GrowableArray<oop*>& immediates, bool has_non_immediates) :
|
||||||
@ -125,13 +125,13 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
ZNMethodData* ZNMethodData::create(nmethod* nm) {
|
ZNMethodData* ZNMethodData::create(nmethod* nm) {
|
||||||
void* const method = NEW_C_HEAP_ARRAY(uint8_t, sizeof(ZNMethodData), mtGC);
|
void* const mem = ZNMethodAllocator::allocate(sizeof(ZNMethodData));
|
||||||
return ::new (method) ZNMethodData(nm);
|
return ::new (mem) ZNMethodData(nm);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ZNMethodData::destroy(ZNMethodData* data) {
|
void ZNMethodData::destroy(ZNMethodData* data) {
|
||||||
ZNMethodDataOops::destroy(data->oops());
|
ZNMethodAllocator::free(data->oops());
|
||||||
ZNMethodTable::safe_delete(data);
|
ZNMethodAllocator::free(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
ZNMethodData::ZNMethodData(nmethod* nm) :
|
ZNMethodData::ZNMethodData(nmethod* nm) :
|
||||||
@ -162,27 +162,10 @@ ZNMethodTableEntry* ZNMethodTable::_table = NULL;
|
|||||||
size_t ZNMethodTable::_size = 0;
|
size_t ZNMethodTable::_size = 0;
|
||||||
ZNMethodTableEntry* ZNMethodTable::_iter_table = NULL;
|
ZNMethodTableEntry* ZNMethodTable::_iter_table = NULL;
|
||||||
size_t ZNMethodTable::_iter_table_size = 0;
|
size_t ZNMethodTable::_iter_table_size = 0;
|
||||||
ZArray<void*> ZNMethodTable::_iter_deferred_deletes;
|
|
||||||
size_t ZNMethodTable::_nregistered = 0;
|
size_t ZNMethodTable::_nregistered = 0;
|
||||||
size_t ZNMethodTable::_nunregistered = 0;
|
size_t ZNMethodTable::_nunregistered = 0;
|
||||||
volatile size_t ZNMethodTable::_claimed = 0;
|
volatile size_t ZNMethodTable::_claimed = 0;
|
||||||
|
|
||||||
void ZNMethodTable::safe_delete(void* data) {
|
|
||||||
assert(CodeCache_lock->owned_by_self(), "Lock must be held");
|
|
||||||
|
|
||||||
if (data == NULL) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (_iter_table != NULL) {
|
|
||||||
// Iteration in progress, defer delete
|
|
||||||
_iter_deferred_deletes.add(data);
|
|
||||||
} else {
|
|
||||||
// Iteration not in progress, delete now
|
|
||||||
FREE_C_HEAP_ARRAY(uint8_t, data);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void ZNMethodTable::attach_gc_data(nmethod* nm) {
|
void ZNMethodTable::attach_gc_data(nmethod* nm) {
|
||||||
GrowableArray<oop*> immediate_oops;
|
GrowableArray<oop*> immediate_oops;
|
||||||
bool non_immediate_oops = false;
|
bool non_immediate_oops = false;
|
||||||
@ -482,11 +465,13 @@ void ZNMethodTable::disarm_nmethod(nmethod* nm) {
|
|||||||
void ZNMethodTable::nmethods_do_begin() {
|
void ZNMethodTable::nmethods_do_begin() {
|
||||||
MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
|
MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
|
||||||
|
|
||||||
|
// Make sure we don't free data while iterating
|
||||||
|
ZNMethodAllocator::activate_deferred_frees();
|
||||||
|
|
||||||
// Prepare iteration
|
// Prepare iteration
|
||||||
_iter_table = _table;
|
_iter_table = _table;
|
||||||
_iter_table_size = _size;
|
_iter_table_size = _size;
|
||||||
_claimed = 0;
|
_claimed = 0;
|
||||||
assert(_iter_deferred_deletes.is_empty(), "Should be emtpy");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ZNMethodTable::nmethods_do_end() {
|
void ZNMethodTable::nmethods_do_end() {
|
||||||
@ -500,12 +485,8 @@ void ZNMethodTable::nmethods_do_end() {
|
|||||||
|
|
||||||
assert(_claimed >= _iter_table_size, "Failed to claim all table entries");
|
assert(_claimed >= _iter_table_size, "Failed to claim all table entries");
|
||||||
|
|
||||||
// Process deferred deletes
|
// Process deferred frees
|
||||||
ZArrayIterator<void*> iter(&_iter_deferred_deletes);
|
ZNMethodAllocator::deactivate_and_process_deferred_frees();
|
||||||
for (void* data; iter.next(&data);) {
|
|
||||||
FREE_C_HEAP_ARRAY(uint8_t, data);
|
|
||||||
}
|
|
||||||
_iter_deferred_deletes.clear();
|
|
||||||
|
|
||||||
// Notify iteration done
|
// Notify iteration done
|
||||||
CodeCache_lock->notify_all();
|
CodeCache_lock->notify_all();
|
||||||
|
@ -31,6 +31,8 @@
|
|||||||
#include "memory/allocation.hpp"
|
#include "memory/allocation.hpp"
|
||||||
|
|
||||||
class NMethodClosure;
|
class NMethodClosure;
|
||||||
|
class ZNMethodData;
|
||||||
|
class ZNMethodDataOops;
|
||||||
class ZWorkers;
|
class ZWorkers;
|
||||||
|
|
||||||
class ZNMethodTable : public AllStatic {
|
class ZNMethodTable : public AllStatic {
|
||||||
@ -39,7 +41,6 @@ private:
|
|||||||
static size_t _size;
|
static size_t _size;
|
||||||
static ZNMethodTableEntry* _iter_table;
|
static ZNMethodTableEntry* _iter_table;
|
||||||
static size_t _iter_table_size;
|
static size_t _iter_table_size;
|
||||||
static ZArray<void*> _iter_deferred_deletes;
|
|
||||||
static size_t _nregistered;
|
static size_t _nregistered;
|
||||||
static size_t _nunregistered;
|
static size_t _nunregistered;
|
||||||
static volatile size_t _claimed ATTRIBUTE_ALIGNED(ZCacheLineSize);
|
static volatile size_t _claimed ATTRIBUTE_ALIGNED(ZCacheLineSize);
|
||||||
@ -62,8 +63,6 @@ private:
|
|||||||
static void log_unregister(const nmethod* nm);
|
static void log_unregister(const nmethod* nm);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
static void safe_delete(void* data);
|
|
||||||
|
|
||||||
static size_t registered_nmethods();
|
static size_t registered_nmethods();
|
||||||
static size_t unregistered_nmethods();
|
static size_t unregistered_nmethods();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user