mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 03:24:38 +02:00
6962589: remove breadth first scanning code from parallel gc
Remove the breadth-first copying order from ParallelScavenge and use depth-first by default. Reviewed-by: jcoomes, ysr, johnc
This commit is contained in:
parent
3a2b2b4fd8
commit
38ab95c64b
30 changed files with 63 additions and 541 deletions
|
@ -184,6 +184,8 @@ static ObsoleteFlag obsolete_jvm_flags[] = {
|
|||
{ "DefaultMaxRAM", JDK_Version::jdk_update(6,18), JDK_Version::jdk(7) },
|
||||
{ "DefaultInitialRAMFraction",
|
||||
JDK_Version::jdk_update(6,18), JDK_Version::jdk(7) },
|
||||
{ "UseDepthFirstScavengeOrder",
|
||||
JDK_Version::jdk_update(6,22), JDK_Version::jdk(7) },
|
||||
{ NULL, JDK_Version(0), JDK_Version(0) }
|
||||
};
|
||||
|
||||
|
|
|
@ -3088,10 +3088,6 @@ class CommandLineFlags {
|
|||
\
|
||||
product(intx, SafepointSpinBeforeYield, 2000, "(Unstable)") \
|
||||
\
|
||||
product(bool, UseDepthFirstScavengeOrder, true, \
|
||||
"true: the scavenge order will be depth-first, " \
|
||||
"false: the scavenge order will be breadth-first") \
|
||||
\
|
||||
product(bool, PSChunkLargeArrays, true, \
|
||||
"true: process large arrays in chunks") \
|
||||
\
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue