File tree 4 files changed +3
-10
lines changed
src/hotspot/share/gc/parallel
4 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -79,10 +79,7 @@ void MutableNUMASpace::mangle_unused_area() {
79
79
// This method should do nothing.
80
80
// It can be called on a numa space during a full compaction.
81
81
}
82
- void MutableNUMASpace::mangle_unused_area_complete () {
83
- // This method should do nothing.
84
- // It can be called on a numa space during a full compaction.
85
- }
82
+
86
83
void MutableNUMASpace::mangle_region (MemRegion mr) {
87
84
// This method should do nothing because numa spaces are not mangled.
88
85
}
Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ class MutableNUMASpace : public MutableSpace {
173
173
174
174
virtual void clear (bool mangle_space);
175
175
virtual void mangle_unused_area () PRODUCT_RETURN;
176
- virtual void mangle_unused_area_complete () PRODUCT_RETURN;
176
+
177
177
virtual void mangle_region (MemRegion mr) PRODUCT_RETURN;
178
178
virtual void check_mangled_unused_area (HeapWord* limit) PRODUCT_RETURN;
179
179
virtual void check_mangled_unused_area_complete () PRODUCT_RETURN;
Original file line number Diff line number Diff line change @@ -167,10 +167,6 @@ void MutableSpace::mangle_unused_area() {
167
167
mangler ()->mangle_unused_area ();
168
168
}
169
169
170
- void MutableSpace::mangle_unused_area_complete () {
171
- mangler ()->mangle_unused_area_complete ();
172
- }
173
-
174
170
void MutableSpace::mangle_region (MemRegion mr) {
175
171
SpaceMangler::mangle_region (mr);
176
172
}
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ class MutableSpace: public CHeapObj<mtGC> {
109
109
110
110
// Methods used in mangling. See descriptions under SpaceMangler.
111
111
virtual void mangle_unused_area () PRODUCT_RETURN;
112
- virtual void mangle_unused_area_complete () PRODUCT_RETURN;
112
+
113
113
virtual void check_mangled_unused_area (HeapWord* limit) PRODUCT_RETURN;
114
114
virtual void check_mangled_unused_area_complete () PRODUCT_RETURN;
115
115
virtual void set_top_for_allocations (HeapWord* v) PRODUCT_RETURN;
You can’t perform that action at this time.
0 commit comments