Skip to content

Commit cdf918b

Browse files
committedFeb 5, 2024
8325134: Serial: Remove Generation::used_region
Reviewed-by: tschatzl, iwalulya
1 parent 4da28b4 commit cdf918b

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed
 

‎src/hotspot/share/gc/serial/generation.hpp

-4
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,6 @@ class Generation: public CHeapObj<mtGC> {
113113

114114
MemRegion reserved() const { return _reserved; }
115115

116-
// Returns a region guaranteed to contain all the objects in the
117-
// generation.
118-
virtual MemRegion used_region() const { return _reserved; }
119-
120116
/* Returns "TRUE" iff "p" points into the reserved area of the generation. */
121117
bool is_in_reserved(const void* p) const {
122118
return _reserved.contains(p);

‎src/hotspot/share/gc/serial/tenuredGeneration.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#include "gc/serial/generation.hpp"
3030
#include "gc/shared/gcStats.hpp"
3131
#include "gc/shared/generationCounters.hpp"
32+
#include "gc/shared/space.hpp"
3233
#include "utilities/macros.hpp"
3334

3435
class SerialBlockOffsetSharedArray;
@@ -92,8 +93,8 @@ class TenuredGeneration: public Generation {
9293
size_t capacity() const;
9394
size_t used() const;
9495
size_t free() const;
95-
MemRegion used_region() const;
9696

97+
MemRegion used_region() const { return space()->used_region(); }
9798
MemRegion prev_used_region() const { return _prev_used_region; }
9899
void save_used_region() { _prev_used_region = used_region(); }
99100

‎src/hotspot/share/gc/serial/tenuredGeneration.inline.hpp

-4
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,6 @@ inline size_t TenuredGeneration::free() const {
4141
return space()->free();
4242
}
4343

44-
inline MemRegion TenuredGeneration::used_region() const {
45-
return space()->used_region();
46-
}
47-
4844
inline bool TenuredGeneration::is_in(const void* p) const {
4945
return space()->is_in(p);
5046
}

0 commit comments

Comments
 (0)
Please sign in to comment.