Skip to content

Commit ddcb369

Browse files
committedMar 8, 2023
8303605: Memory leaks in Metaspace gtests
Reviewed-by: stuefe, dholmes
1 parent 56512cf commit ddcb369

File tree

4 files changed

+20
-1
lines changed

4 files changed

+20
-1
lines changed
 

‎test/hotspot/gtest/gtestMain.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ static int init_jvm(int argc, char **argv, bool disable_error_handling, JavaVM**
9292
JNIEnv* env;
9393

9494
int ret = JNI_CreateJavaVM(jvm_ptr, (void**)&env, &args);
95+
delete[] options;
9596
if (ret == JNI_OK) {
9697
// CreateJavaVM leaves WXExec context, while gtests
9798
// calls internal functions assuming running in WXWwrite.

‎test/hotspot/gtest/metaspace/metaspaceGtestSparseArray.hpp

+4
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@ class SparseArray : public StackObj {
9999
}
100100
}
101101

102+
~SparseArray() {
103+
FREE_C_HEAP_ARRAY(T, _slots);
104+
}
105+
102106
T at(int i) { return _slots[i]; }
103107
const T at(int i) const { return _slots[i]; }
104108
void set_at(int i, T e) { _slots[i] = e; }

‎test/hotspot/gtest/metaspace/test_freeblocks.cpp

+11-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class FreeBlocksTest {
7979
return false;
8080
}
8181

82-
void deallocate_top() {
82+
bool deallocate_top() {
8383

8484
allocation_t* a = _allocations;
8585
if (a != NULL) {
@@ -88,7 +88,13 @@ class FreeBlocksTest {
8888
_freeblocks.add_block(a->p, a->word_size);
8989
delete a;
9090
DEBUG_ONLY(_freeblocks.verify();)
91+
return true;
9192
}
93+
return false;
94+
}
95+
96+
void deallocate_all() {
97+
while (deallocate_top());
9298
}
9399

94100
bool allocate() {
@@ -182,6 +188,10 @@ class FreeBlocksTest {
182188
CHECK_CONTENT(_freeblocks, 1, 1024);
183189
}
184190

191+
~FreeBlocksTest() {
192+
deallocate_all();
193+
}
194+
185195
static void test_small_allocations() {
186196
FreeBlocksTest test(10);
187197
test.test_loop();

‎test/hotspot/gtest/metaspace/test_virtualspacenode.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -538,6 +538,10 @@ TEST_VM(metaspace, virtual_space_node_test_basics) {
538538
ASSERT_EQ(node->committed_words(), (size_t)0);
539539
ASSERT_EQ(node->committed_words(), scomm.get());
540540
DEBUG_ONLY(node->verify_locked();)
541+
542+
delete node;
543+
ASSERT_EQ(scomm.get(), (size_t)0);
544+
ASSERT_EQ(sres.get(), (size_t)0);
541545
}
542546

543547
// Note: we unfortunately need TEST_VM even though the system tested

0 commit comments

Comments
 (0)
Please sign in to comment.