Searched defs:cg1r (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentG1RefineThread.hpp73 ConcurrentG1RefineThread(ConcurrentG1Refine* cg1r, ConcurrentG1RefineThread* next,
85 ConcurrentG1Refine* cg1r() { return _cg1r; } function in class:ConcurrentG1RefineThread
H A DconcurrentG1RefineThread.cpp35 ConcurrentG1RefineThread(ConcurrentG1Refine* cg1r, ConcurrentG1RefineThread *next, argument
43 _cg1r(cg1r),
62 if (_worker_id < cg1r()->worker_thread_num()) {
64 _threshold = MIN2<int>(cg1r()->thread_threshold_step() * (_worker_id + 1) + cg1r()->green_zone(),
65 cg1r()->yellow_zone());
67 _deactivation_threshold = MAX2<int>(_threshold - cg1r()->thread_threshold_step(), cg1r()->green_zone());
168 if (_worker_id >= cg1r()->worker_thread_num()) {
191 if (dcqs.completed_queue_padding() > 0 && curr_buffer_num <= cg1r()
[all...]
H A Dg1RemSet.cpp340 ConcurrentG1Refine* cg1r = _g1->concurrent_g1_refine(); local
H A Dg1CollectorPolicy.cpp1205 ConcurrentG1Refine *cg1r = G1CollectedHeap::heap()->concurrent_g1_refine(); local
1211 int g = cg1r->green_zone();
1220 cg1r->set_green_zone(g);
1221 cg1r->set_yellow_zone(g * k_gy);
1222 cg1r->set_red_zone(g * k_gr);
1223 cg1r->reinitialize_threads();
1225 int processing_threshold_delta = MAX2((int)(cg1r->green_zone() * sigma()), 1);
1226 int processing_threshold = MIN2(cg1r->green_zone() + processing_threshold_delta,
1227 cg1r->yellow_zone());
1230 dcqs.set_max_completed_queue(cg1r
[all...]
H A Dg1CollectedHeap.cpp100 ConcurrentG1Refine* cg1r) :
101 _sts(sts), _g1rs(g1rs), _cg1r(cg1r), _concurrent(true)
98 RefineCardTableEntryClosure(SuspendibleThreadSet* sts, G1RemSet* g1rs, ConcurrentG1Refine* cg1r) argument

Completed in 59 milliseconds