mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8065972: Remove support for ParNew+SerialOld and DefNew+CMS
Reviewed-by: mgerdin, stefank
This commit is contained in:
parent
02adde2aac
commit
0ecc753586
24 changed files with 109 additions and 327 deletions
|
@ -472,7 +472,6 @@ class Arguments : AllStatic {
|
|||
// Check for consistency in the selection of the garbage collector.
|
||||
static bool check_gc_consistency_user(); // Check user-selected gc
|
||||
static inline bool check_gc_consistency_ergo(); // Check ergonomic-selected gc
|
||||
static void check_deprecated_gcs();
|
||||
static void check_deprecated_gc_flags();
|
||||
// Check consistency or otherwise of VM argument settings
|
||||
static bool check_vm_args_consistency();
|
||||
|
@ -615,8 +614,7 @@ class Arguments : AllStatic {
|
|||
};
|
||||
|
||||
bool Arguments::gc_selected() {
|
||||
return UseConcMarkSweepGC || UseG1GC || UseParallelGC || UseParallelOldGC ||
|
||||
UseParNewGC || UseSerialGC;
|
||||
return UseConcMarkSweepGC || UseG1GC || UseParallelGC || UseParallelOldGC || UseSerialGC;
|
||||
}
|
||||
|
||||
bool Arguments::check_gc_consistency_ergo() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue