< prev index next >

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

Print this page
rev 49678 : imported patch 8200426-sangheon-review
rev 49680 : imported patch 6672778-partial-queue-trimming
rev 49681 : [mq]: 6672778-refactoring

*** 33,48 **** 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()), ! _trim_ticks() { } G1ScanClosureBase::G1ScanClosureBase(G1CollectedHeap* g1h, G1ParScanThreadState* par_scan_state) : ! _g1h(g1h), _par_scan_state(par_scan_state), _from(NULL), _trim_ticks() { } 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. --- 33,47 ---- 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 >