Skip to content

Commit d9dd485

Browse files
committedJan 14, 2022
8280019: Remove unused code from metaspace
Reviewed-by: coleenp, hseigel
1 parent cf283e2 commit d9dd485

File tree

7 files changed

+14
-34
lines changed

7 files changed

+14
-34
lines changed
 

‎src/hotspot/share/memory/metaspace/blockTree.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
3-
* Copyright (c) 2020 SAP SE. All rights reserved.
2+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2020, 2022 SAP SE. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
66
* This code is free software; you can redistribute it and/or modify it
@@ -101,7 +101,6 @@ void BlockTree::verify() const {
101101
// Traverse the tree and test that all nodes are in the correct order.
102102

103103
MemRangeCounter counter;
104-
int longest_edge = 0;
105104
if (_root != NULL) {
106105

107106
ResourceMark rm;

‎src/hotspot/share/memory/metaspace/chunkManager.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
3-
* Copyright (c) 2018, 2021 SAP SE. All rights reserved.
2+
* Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2018, 2022 SAP SE. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
66
* This code is free software; you can redistribute it and/or modify it
@@ -88,7 +88,6 @@ void ChunkManager::split_chunk_and_add_splinters(Metachunk* c, chunklevel_t targ
8888

8989
DEBUG_ONLY(size_t committed_words_before = c->committed_words();)
9090

91-
const chunklevel_t orig_level = c->level();
9291
c->vsnode()->split(target_level, c, &_chunks);
9392

9493
// Splitting should never fail.

‎src/hotspot/share/memory/metaspace/chunkManager.hpp

+2-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
3-
* Copyright (c) 2018, 2020 SAP SE. All rights reserved.
2+
* Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2018, 2022 SAP SE. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
66
* This code is free software; you can redistribute it and/or modify it
@@ -95,12 +95,6 @@ class ChunkManager : public CHeapObj<mtMetaspace> {
9595
// chunks.
9696
void split_chunk_and_add_splinters(Metachunk* c, chunklevel_t target_level);
9797

98-
// See get_chunk(s,s,s)
99-
Metachunk* get_chunk_locked(size_t preferred_word_size, size_t min_word_size, size_t min_committed_words);
100-
101-
// Uncommit all chunks equal or below the given level.
102-
void uncommit_free_chunks(chunklevel_t max_level);
103-
10498
// Return a single chunk to the freelist without doing any merging, and adjust accounting.
10599
void return_chunk_simple_locked(Metachunk* c);
106100

@@ -161,9 +155,6 @@ class ChunkManager : public CHeapObj<mtMetaspace> {
161155
DEBUG_ONLY(void verify() const;)
162156
DEBUG_ONLY(void verify_locked() const;)
163157

164-
// Returns the name of this chunk manager.
165-
const char* name() const { return _name; }
166-
167158
// Returns total number of chunks
168159
int total_num_chunks() const { return _chunks.num_chunks(); }
169160

‎src/hotspot/share/memory/metaspace/commitMask.hpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
3-
* Copyright (c) 2020 SAP SE. All rights reserved.
2+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2020, 2022 SAP SE. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
66
* This code is free software; you can redistribute it and/or modify it
@@ -94,7 +94,6 @@ class CommitMask : public CHeapBitMap {
9494

9595
const MetaWord* base() const { return _base; }
9696
size_t word_size() const { return _word_size; }
97-
const MetaWord* end() const { return _base + word_size(); }
9897

9998
// Given an address, returns true if the address is committed, false if not.
10099
bool is_committed_address(const MetaWord* p) const {

‎src/hotspot/share/memory/metaspace/counters.hpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
3-
* Copyright (c) 2020 SAP SE. All rights reserved.
2+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2020, 2022 SAP SE. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
66
* This code is free software; you can redistribute it and/or modify it
@@ -70,8 +70,6 @@ class AbstractCounter {
7070
_c -= v;
7171
}
7272

73-
void reset() { _c = 0; }
74-
7573
#ifdef ASSERT
7674
void check(T expected) const {
7775
assert(_c == expected, "Counter mismatch: %d, expected: %d.",

‎src/hotspot/share/memory/metaspace/freeChunkList.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
3-
* Copyright (c) 2020 SAP SE. All rights reserved.
2+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2020, 2022 SAP SE. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
66
* This code is free software; you can redistribute it and/or modify it
@@ -70,7 +70,6 @@ void FreeChunkList::verify() const {
7070
} else {
7171
assert(_last != NULL, "Sanity");
7272
int num = 0;
73-
bool uncommitted = (_first->committed_words() == 0);
7473
for (Metachunk* c = _first; c != NULL; c = c->next()) {
7574
assert(c->is_free(), "Chunks in freelist should be free");
7675
assert(c->used_words() == 0, "Chunk in freelist should have not used words.");

‎src/hotspot/share/memory/metaspace/rootChunkArea.cpp

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
3-
* Copyright (c) 2020, 2021 SAP SE. All rights reserved.
2+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2020, 2022 SAP SE. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
66
* This code is free software; you can redistribute it and/or modify it
@@ -103,8 +103,6 @@ void RootChunkArea::split(chunklevel_t target_level, Metachunk* c, FreeChunkList
103103
DEBUG_ONLY(chunklevel::check_valid_level(target_level));
104104
assert(target_level > c->level(), "Wrong target level");
105105

106-
const chunklevel_t starting_level = c->level();
107-
108106
while (c->level() < target_level) {
109107

110108
log_trace(metaspace)("Splitting chunk: " METACHUNK_FULL_FORMAT ".", METACHUNK_FULL_FORMAT_ARGS(c));
@@ -199,8 +197,6 @@ Metachunk* RootChunkArea::merge(Metachunk* c, FreeChunkListVector* freelists) {
199197

200198
log_trace(metaspace)("Attempting to merge chunk " METACHUNK_FORMAT ".", METACHUNK_FORMAT_ARGS(c));
201199

202-
const chunklevel_t starting_level = c->level();
203-
204200
bool stop = false;
205201
Metachunk* result = NULL;
206202

@@ -389,7 +385,6 @@ void RootChunkArea::verify() const {
389385

390386
const Metachunk* c = _first_chunk;
391387
const MetaWord* expected_next_base = _base;
392-
const MetaWord* const area_end = _base + word_size();
393388

394389
while (c != NULL) {
395390
assrt_(c->is_free() || c->is_in_use(),

0 commit comments

Comments
 (0)
Please sign in to comment.