Skip to content

Commit 1605edf

Browse files
committedAug 31, 2020
8139800: Remove OopsInGenClosure
Reviewed-by: kbarrett, sjohanss
1 parent bfabf12 commit 1605edf

10 files changed

+113
-139
lines changed
 

‎src/hotspot/share/gc/serial/defNewGeneration.cpp

+10-16
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ void DefNewGeneration::FastKeepAliveClosure::do_oop(narrowOop* p) { DefNewGenera
9292

9393
DefNewGeneration::FastEvacuateFollowersClosure::
9494
FastEvacuateFollowersClosure(SerialHeap* heap,
95-
FastScanClosure* cur,
96-
FastScanClosure* older) :
95+
DefNewScanClosure* cur,
96+
DefNewYoungerGenClosure* older) :
9797
_heap(heap), _scan_cur_or_nonheap(cur), _scan_older(older)
9898
{
9999
}
@@ -105,12 +105,6 @@ void DefNewGeneration::FastEvacuateFollowersClosure::do_void() {
105105
guarantee(_heap->young_gen()->promo_failure_scan_is_complete(), "Failed to finish scan");
106106
}
107107

108-
FastScanClosure::FastScanClosure(DefNewGeneration* g, bool gc_barrier) :
109-
OopsInClassLoaderDataOrGenClosure(g), _g(g), _gc_barrier(gc_barrier)
110-
{
111-
_boundary = _g->reserved().end();
112-
}
113-
114108
void CLDScanClosure::do_cld(ClassLoaderData* cld) {
115109
NOT_PRODUCT(ResourceMark rm);
116110
log_develop_trace(gc, scavenge)("CLDScanClosure::do_cld " PTR_FORMAT ", %s, dirty: %s",
@@ -570,16 +564,16 @@ void DefNewGeneration::collect(bool full,
570564
assert(heap->no_allocs_since_save_marks(),
571565
"save marks have not been newly set.");
572566

573-
FastScanClosure fsc_with_no_gc_barrier(this, false);
574-
FastScanClosure fsc_with_gc_barrier(this, true);
567+
DefNewScanClosure scan_closure(this);
568+
DefNewYoungerGenClosure younger_gen_closure(this, _old_gen);
575569

576-
CLDScanClosure cld_scan_closure(&fsc_with_no_gc_barrier,
570+
CLDScanClosure cld_scan_closure(&scan_closure,
577571
heap->rem_set()->cld_rem_set()->accumulate_modified_oops());
578572

579-
set_promo_failure_scan_stack_closure(&fsc_with_no_gc_barrier);
573+
set_promo_failure_scan_stack_closure(&scan_closure);
580574
FastEvacuateFollowersClosure evacuate_followers(heap,
581-
&fsc_with_no_gc_barrier,
582-
&fsc_with_gc_barrier);
575+
&scan_closure,
576+
&younger_gen_closure);
583577

584578
assert(heap->no_allocs_since_save_marks(),
585579
"save marks have not been newly set.");
@@ -591,8 +585,8 @@ void DefNewGeneration::collect(bool full,
591585
StrongRootsScope srs(0);
592586

593587
heap->young_process_roots(&srs,
594-
&fsc_with_no_gc_barrier,
595-
&fsc_with_gc_barrier,
588+
&scan_closure,
589+
&younger_gen_closure,
596590
&cld_scan_closure);
597591
}
598592

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

+7-5
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,12 @@
3535
#include "utilities/stack.hpp"
3636

3737
class ContiguousSpace;
38-
class STWGCTimer;
3938
class CSpaceCounters;
39+
class DefNewYoungerGenClosure;
40+
class DefNewScanClosure;
4041
class ScanWeakRefClosure;
4142
class SerialHeap;
43+
class STWGCTimer;
4244

4345
// DefNewGeneration is a young generation containing eden, from- and
4446
// to-space.
@@ -180,12 +182,12 @@ class DefNewGeneration: public Generation {
180182

181183
class FastEvacuateFollowersClosure: public VoidClosure {
182184
SerialHeap* _heap;
183-
FastScanClosure* _scan_cur_or_nonheap;
184-
FastScanClosure* _scan_older;
185+
DefNewScanClosure* _scan_cur_or_nonheap;
186+
DefNewYoungerGenClosure* _scan_older;
185187
public:
186188
FastEvacuateFollowersClosure(SerialHeap* heap,
187-
FastScanClosure* cur,
188-
FastScanClosure* older);
189+
DefNewScanClosure* cur,
190+
DefNewYoungerGenClosure* older);
189191
void do_void();
190192
};
191193

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,10 @@ inline void DefNewGeneration::FastKeepAliveClosure::do_oop_work(T* p) {
9090

9191
template <typename OopClosureType>
9292
void DefNewGeneration::oop_since_save_marks_iterate(OopClosureType* cl) {
93-
cl->set_generation(this);
9493
eden()->oop_since_save_marks_iterate(cl);
9594
to()->oop_since_save_marks_iterate(cl);
9695
from()->oop_since_save_marks_iterate(cl);
97-
cl->reset_generation();
96+
9897
save_marks();
9998
}
10099

‎src/hotspot/share/gc/serial/serialHeap.cpp

+3-5
Original file line numberDiff line numberDiff line change
@@ -90,22 +90,20 @@ GrowableArray<MemoryPool*> SerialHeap::memory_pools() {
9090
}
9191

9292
void SerialHeap::young_process_roots(StrongRootsScope* scope,
93-
OopsInGenClosure* root_closure,
94-
OopsInGenClosure* old_gen_closure,
93+
OopIterateClosure* root_closure,
94+
OopIterateClosure* old_gen_closure,
9595
CLDClosure* cld_closure) {
9696
MarkingCodeBlobClosure mark_code_closure(root_closure, CodeBlobToOopClosure::FixRelocations);
9797

9898
process_roots(scope, SO_ScavengeCodeCache, root_closure,
9999
cld_closure, cld_closure, &mark_code_closure);
100100

101101
if (_process_strong_tasks->try_claim_task(GCH_PS_younger_gens)) {
102-
root_closure->reset_generation();
102+
103103
}
104104

105-
old_gen_closure->set_generation(_old_gen);
106105
rem_set()->at_younger_refs_iterate();
107106
old_gen()->younger_refs_iterate(old_gen_closure, scope->n_threads());
108-
old_gen_closure->reset_generation();
109107

110108
_process_strong_tasks->all_tasks_completed(scope->n_threads());
111109
}

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
class GCMemoryManager;
3434
class MemoryPool;
35-
class OopsInGenClosure;
35+
class OopIterateClosure;
3636
class TenuredGeneration;
3737

3838
class SerialHeap : public GenCollectedHeap {
@@ -78,8 +78,8 @@ class SerialHeap : public GenCollectedHeap {
7878
OopClosureType2* older);
7979

8080
void young_process_roots(StrongRootsScope* scope,
81-
OopsInGenClosure* root_closure,
82-
OopsInGenClosure* old_gen_closure,
81+
OopIterateClosure* root_closure,
82+
OopIterateClosure* old_gen_closure,
8383
CLDClosure* cld_closure);
8484
};
8585

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,8 @@ bool TenuredGeneration::block_is_obj(const HeapWord* addr) const {
5555

5656
template <typename OopClosureType>
5757
void TenuredGeneration::oop_since_save_marks_iterate(OopClosureType* blk) {
58-
blk->set_generation(this);
5958
_the_space->oop_since_save_marks_iterate(blk);
60-
blk->reset_generation();
59+
6160
save_marks();
6261
}
6362

‎src/hotspot/share/gc/shared/genOopClosures.hpp

+46-61
Original file line numberDiff line numberDiff line change
@@ -34,91 +34,76 @@ class CardTableBarrierSet;
3434
class DefNewGeneration;
3535
class KlassRemSet;
3636

37-
// Closure for iterating roots from a particular generation
38-
// Note: all classes deriving from this MUST call this do_barrier
39-
// method at the end of their own do_oop method!
40-
// Note: no do_oop defined, this is an abstract class.
41-
42-
class OopsInGenClosure : public OopIterateClosure {
43-
private:
44-
Generation* _orig_gen; // generation originally set in ctor
45-
Generation* _gen; // generation being scanned
46-
47-
protected:
48-
// Some subtypes need access.
49-
HeapWord* _gen_boundary; // start of generation
50-
CardTableRS* _rs; // remembered set
51-
52-
// For assertions
53-
Generation* generation() { return _gen; }
54-
CardTableRS* rs() { return _rs; }
37+
#if INCLUDE_SERIALGC
5538

56-
// Derived classes that modify oops so that they might be old-to-young
57-
// pointers must call the method below.
58-
template <class T> void do_barrier(T* p);
39+
// Super closure class for scanning DefNewGeneration.
40+
//
41+
// - Derived: The derived type provides necessary barrier
42+
// after an oop has been updated.
43+
template <typename Derived>
44+
class FastScanClosure : public BasicOopIterateClosure {
45+
private:
46+
DefNewGeneration* _young_gen;
47+
HeapWord* _young_gen_end;
5948

60-
public:
61-
OopsInGenClosure(Generation* gen);
62-
void set_generation(Generation* gen);
49+
template <typename T>
50+
void do_oop_work(T* p);
6351

64-
void reset_generation() { _gen = _orig_gen; }
52+
protected:
53+
FastScanClosure(DefNewGeneration* g);
6554

66-
HeapWord* gen_boundary() { return _gen_boundary; }
55+
public:
56+
virtual void do_oop(oop* p);
57+
virtual void do_oop(narrowOop* p);
6758
};
6859

69-
class BasicOopsInGenClosure: public OopsInGenClosure {
70-
public:
71-
BasicOopsInGenClosure(Generation* gen);
72-
73-
virtual bool do_metadata() { return false; }
74-
virtual void do_klass(Klass* k) { ShouldNotReachHere(); }
75-
virtual void do_cld(ClassLoaderData* cld) { ShouldNotReachHere(); }
60+
// Closure for scanning DefNewGeneration when iterating over the old generation.
61+
//
62+
// This closure performs barrier store calls on pointers into the DefNewGeneration.
63+
class DefNewYoungerGenClosure : public FastScanClosure<DefNewYoungerGenClosure> {
64+
private:
65+
Generation* _old_gen;
66+
HeapWord* _old_gen_start;
67+
CardTableRS* _rs;
68+
69+
public:
70+
DefNewYoungerGenClosure(DefNewGeneration* young_gen, Generation* old_gen);
71+
72+
template <typename T>
73+
void barrier(T* p);
7674
};
7775

78-
// Super class for scan closures. It contains code to dirty scanned class loader data.
79-
class OopsInClassLoaderDataOrGenClosure: public BasicOopsInGenClosure {
76+
// Closure for scanning DefNewGeneration when *not* iterating over the old generation.
77+
//
78+
// This closures records changes to oops in CLDs.
79+
class DefNewScanClosure : public FastScanClosure<DefNewScanClosure> {
8080
ClassLoaderData* _scanned_cld;
81-
public:
82-
OopsInClassLoaderDataOrGenClosure(Generation* g) : BasicOopsInGenClosure(g), _scanned_cld(NULL) {}
81+
82+
public:
83+
DefNewScanClosure(DefNewGeneration* g);
84+
8385
void set_scanned_cld(ClassLoaderData* cld) {
8486
assert(cld == NULL || _scanned_cld == NULL, "Must be");
8587
_scanned_cld = cld;
8688
}
87-
bool is_scanning_a_cld() { return _scanned_cld != NULL; }
88-
void do_cld_barrier();
89-
};
90-
91-
#if INCLUDE_SERIALGC
9289

93-
// Closure for scanning DefNewGeneration.
94-
//
95-
// This closure only performs barrier store calls on
96-
// pointers into the DefNewGeneration.
97-
class FastScanClosure: public OopsInClassLoaderDataOrGenClosure {
98-
protected:
99-
DefNewGeneration* _g;
100-
HeapWord* _boundary;
101-
bool _gc_barrier;
102-
template <class T> inline void do_oop_work(T* p);
103-
public:
104-
FastScanClosure(DefNewGeneration* g, bool gc_barrier);
105-
virtual void do_oop(oop* p);
106-
virtual void do_oop(narrowOop* p);
90+
template <typename T>
91+
void barrier(T* p);
10792
};
10893

109-
#endif // INCLUDE_SERIALGC
110-
11194
class CLDScanClosure: public CLDClosure {
112-
OopsInClassLoaderDataOrGenClosure* _scavenge_closure;
95+
DefNewScanClosure* _scavenge_closure;
11396
// true if the the modified oops state should be saved.
114-
bool _accumulate_modified_oops;
97+
bool _accumulate_modified_oops;
11598
public:
116-
CLDScanClosure(OopsInClassLoaderDataOrGenClosure* scavenge_closure,
99+
CLDScanClosure(DefNewScanClosure* scavenge_closure,
117100
bool accumulate_modified_oops) :
118101
_scavenge_closure(scavenge_closure), _accumulate_modified_oops(accumulate_modified_oops) {}
119102
void do_cld(ClassLoaderData* cld);
120103
};
121104

105+
#endif // INCLUDE_SERIALGC
106+
122107
class FilteringClosure: public OopIterateClosure {
123108
private:
124109
HeapWord* _boundary;

0 commit comments

Comments
 (0)
Please sign in to comment.