Skip to content

Commit e073d5b

Browse files
committedApr 16, 2024
8329665: fatal error: memory leak: allocating without ResourceMark
Reviewed-by: dholmes, shade, coleenp
1 parent 6e77d91 commit e073d5b

File tree

3 files changed

+1
-13
lines changed

3 files changed

+1
-13
lines changed
 

‎src/hotspot/share/interpreter/oopMapCache.cpp

-12
Original file line numberDiff line numberDiff line change
@@ -181,18 +181,6 @@ InterpreterOopMap::InterpreterOopMap() {
181181
#endif
182182
}
183183

184-
InterpreterOopMap::~InterpreterOopMap() {
185-
// The expectation is that the bit mask was allocated
186-
// last in this resource area. That would make the free of the
187-
// bit_mask effective (see how FREE_RESOURCE_ARRAY does a free).
188-
// If it was not allocated last, there is not a correctness problem
189-
// but the space for the bit_mask is not freed.
190-
assert(_resource_allocate_bit_mask, "Trying to free C heap space");
191-
if (mask_size() > small_mask_limit) {
192-
FREE_RESOURCE_ARRAY(uintptr_t, _bit_mask[0], mask_word_size());
193-
}
194-
}
195-
196184
bool InterpreterOopMap::is_empty() const {
197185
bool result = _method == nullptr;
198186
assert(_method != nullptr || (_bci == 0 &&

‎src/hotspot/share/interpreter/oopMapCache.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ class InterpreterOopMap: ResourceObj {
128128

129129
public:
130130
InterpreterOopMap();
131-
~InterpreterOopMap();
132131

133132
// Copy the OopMapCacheEntry in parameter "from" into this
134133
// InterpreterOopMap. If the _bit_mask[0] in "from" points to

‎src/hotspot/share/runtime/frame.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -947,6 +947,7 @@ void frame::oops_interpreted_do(OopClosure* f, const RegisterMap* map, bool quer
947947
InterpreterFrameClosure blk(this, max_locals, m->max_stack(), f);
948948

949949
// process locals & expression stack
950+
ResourceMark rm(thread);
950951
InterpreterOopMap mask;
951952
if (query_oop_map_cache) {
952953
m->mask_for(bci, &mask);

0 commit comments

Comments
 (0)
Please sign in to comment.