mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
6484957: G1: parallel concurrent refinement
6826318: G1: remove traversal-based refinement code Removed traversal-based refinement code as it's no longer used. Made the concurrent refinement (queue-based) parallel. Reviewed-by: tonyp
This commit is contained in:
parent
955a453996
commit
8c764e214c
23 changed files with 230 additions and 666 deletions
|
@ -33,12 +33,8 @@ CardTableRS::CardTableRS(MemRegion whole_heap,
|
|||
{
|
||||
#ifndef SERIALGC
|
||||
if (UseG1GC) {
|
||||
if (G1RSBarrierUseQueue) {
|
||||
_ct_bs = new G1SATBCardTableLoggingModRefBS(whole_heap,
|
||||
max_covered_regions);
|
||||
} else {
|
||||
_ct_bs = new G1SATBCardTableModRefBS(whole_heap, max_covered_regions);
|
||||
}
|
||||
} else {
|
||||
_ct_bs = new CardTableModRefBSForCTRS(whole_heap, max_covered_regions);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue