File tree 3 files changed +2
-9
lines changed
src/hotspot/share/gc/serial
3 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -113,10 +113,6 @@ class Generation: public CHeapObj<mtGC> {
113
113
114
114
MemRegion reserved () const { return _reserved; }
115
115
116
- // Returns a region guaranteed to contain all the objects in the
117
- // generation.
118
- virtual MemRegion used_region () const { return _reserved; }
119
-
120
116
/* Returns "TRUE" iff "p" points into the reserved area of the generation. */
121
117
bool is_in_reserved (const void * p) const {
122
118
return _reserved.contains (p);
Original file line number Diff line number Diff line change 29
29
#include " gc/serial/generation.hpp"
30
30
#include " gc/shared/gcStats.hpp"
31
31
#include " gc/shared/generationCounters.hpp"
32
+ #include " gc/shared/space.hpp"
32
33
#include " utilities/macros.hpp"
33
34
34
35
class SerialBlockOffsetSharedArray ;
@@ -92,8 +93,8 @@ class TenuredGeneration: public Generation {
92
93
size_t capacity () const ;
93
94
size_t used () const ;
94
95
size_t free () const ;
95
- MemRegion used_region () const ;
96
96
97
+ MemRegion used_region () const { return space ()->used_region (); }
97
98
MemRegion prev_used_region () const { return _prev_used_region; }
98
99
void save_used_region () { _prev_used_region = used_region (); }
99
100
Original file line number Diff line number Diff line change @@ -41,10 +41,6 @@ inline size_t TenuredGeneration::free() const {
41
41
return space ()->free ();
42
42
}
43
43
44
- inline MemRegion TenuredGeneration::used_region () const {
45
- return space ()->used_region ();
46
- }
47
-
48
44
inline bool TenuredGeneration::is_in (const void * p) const {
49
45
return space ()->is_in (p);
50
46
}
You can’t perform that action at this time.
0 commit comments