mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8247470: Fix CHeap GrowableArray NMT accounting
Reviewed-by: coleenp, tschatzl, kbarrett
This commit is contained in:
parent
0a108f9ef2
commit
77bdc30650
67 changed files with 144 additions and 158 deletions
|
@ -1344,8 +1344,8 @@ void SignatureHandlerLibrary::initialize() {
|
|||
SignatureHandlerLibrary::buffer_size);
|
||||
_buffer = bb->code_begin();
|
||||
|
||||
_fingerprints = new(ResourceObj::C_HEAP, mtCode)GrowableArray<uint64_t>(32, true);
|
||||
_handlers = new(ResourceObj::C_HEAP, mtCode)GrowableArray<address>(32, true);
|
||||
_fingerprints = new(ResourceObj::C_HEAP, mtCode)GrowableArray<uint64_t>(32, mtCode);
|
||||
_handlers = new(ResourceObj::C_HEAP, mtCode)GrowableArray<address>(32, mtCode);
|
||||
}
|
||||
|
||||
address SignatureHandlerLibrary::set_handler(CodeBuffer* buffer) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue