< prev index next >

src/hotspot/share/gc/g1/g1OopClosures.cpp

Print this page
rev 49525 : [mq]: 8200426-sangheon-review

*** 28,47 **** #include "gc/g1/g1ParScanThreadState.hpp" #include "gc/g1/g1_specialized_oop_closures.hpp" #include "memory/iterator.inline.hpp" #include "utilities/stack.inline.hpp" ! G1ParCopyHelper::G1ParCopyHelper(G1CollectedHeap* g1, G1ParScanThreadState* par_scan_state) : ! _g1(g1), _par_scan_state(par_scan_state), _worker_id(par_scan_state->worker_id()), _scanned_cld(NULL), ! _cm(_g1->concurrent_mark()) { } ! G1ScanClosureBase::G1ScanClosureBase(G1CollectedHeap* g1, G1ParScanThreadState* par_scan_state) : ! _g1(g1), _par_scan_state(par_scan_state), _from(NULL) { } void G1CLDScanClosure::do_cld(ClassLoaderData* cld) { // If the class loader data has not been dirtied we know that there's // no references into the young gen and we can skip it. --- 28,47 ---- #include "gc/g1/g1ParScanThreadState.hpp" #include "gc/g1/g1_specialized_oop_closures.hpp" #include "memory/iterator.inline.hpp" #include "utilities/stack.inline.hpp" ! G1ParCopyHelper::G1ParCopyHelper(G1CollectedHeap* g1h, G1ParScanThreadState* par_scan_state) : ! _g1h(g1h), _par_scan_state(par_scan_state), _worker_id(par_scan_state->worker_id()), _scanned_cld(NULL), ! _cm(_g1h->concurrent_mark()) { } ! G1ScanClosureBase::G1ScanClosureBase(G1CollectedHeap* g1h, G1ParScanThreadState* par_scan_state) : ! _g1h(g1h), _par_scan_state(par_scan_state), _from(NULL) { } void G1CLDScanClosure::do_cld(ClassLoaderData* cld) { // If the class loader data has not been dirtied we know that there's // no references into the young gen and we can skip it.
< prev index next >