mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8004895: NPG: JMapPermCore test failure caused by warnings about missing field
Reviewed-by: johnc
This commit is contained in:
parent
ad7544b47c
commit
6f5991fa38
6 changed files with 21 additions and 16 deletions
|
@ -873,7 +873,7 @@ void BinaryTreeDictionary<Chunk_t, FreeList_t>::dict_census_update(size_t size,
|
|||
|
||||
#ifndef SERIALGC
|
||||
template <>
|
||||
void BinaryTreeDictionary<FreeChunk, AdaptiveFreeList>::dict_census_update(size_t size, bool split, bool birth){
|
||||
void AFLBinaryTreeDictionary::dict_census_update(size_t size, bool split, bool birth){
|
||||
TreeList<FreeChunk, AdaptiveFreeList>* nd = find_list(size);
|
||||
if (nd) {
|
||||
if (split) {
|
||||
|
@ -911,7 +911,7 @@ bool BinaryTreeDictionary<Chunk_t, FreeList_t>::coal_dict_over_populated(size_t
|
|||
|
||||
#ifndef SERIALGC
|
||||
template <>
|
||||
bool BinaryTreeDictionary<FreeChunk, AdaptiveFreeList>::coal_dict_over_populated(size_t size) {
|
||||
bool AFLBinaryTreeDictionary::coal_dict_over_populated(size_t size) {
|
||||
if (FLSAlwaysCoalesceLarge) return true;
|
||||
|
||||
TreeList<FreeChunk, AdaptiveFreeList>* list_of_size = find_list(size);
|
||||
|
@ -1288,7 +1288,7 @@ void BinaryTreeDictionary<Chunk_t, FreeList_t>::print_dict_census(void) const {
|
|||
|
||||
#ifndef SERIALGC
|
||||
template <>
|
||||
void BinaryTreeDictionary<FreeChunk, AdaptiveFreeList>::print_dict_census(void) const {
|
||||
void AFLBinaryTreeDictionary::print_dict_census(void) const {
|
||||
|
||||
gclog_or_tty->print("\nBinaryTree\n");
|
||||
AdaptiveFreeList<FreeChunk>::print_labels_on(gclog_or_tty, "size");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue