--- old/src/hotspot/share/runtime/thread.cpp 2018-04-05 12:03:36.000000000 -0500 +++ new/src/hotspot/share/runtime/thread.cpp 2018-04-05 12:03:35.000000000 -0500 @@ -62,12 +62,11 @@ #include "runtime/arguments.hpp" #include "runtime/atomic.hpp" #include "runtime/biasedLocking.hpp" -#include "runtime/commandLineFlagConstraintList.hpp" -#include "runtime/commandLineFlagWriteableList.hpp" -#include "runtime/commandLineFlagRangeList.hpp" +#include "runtime/flags/jvmFlagConstraintList.hpp" +#include "runtime/flags/jvmFlagWriteableList.hpp" +#include "runtime/flags/jvmFlagRangeList.hpp" #include "runtime/deoptimization.hpp" #include "runtime/frame.inline.hpp" -#include "runtime/globals.hpp" #include "runtime/handshake.hpp" #include "runtime/init.hpp" #include "runtime/interfaceSupport.inline.hpp" @@ -3640,17 +3639,17 @@ if (ergo_result != JNI_OK) return ergo_result; // Final check of all ranges after ergonomics which may change values. - if (!CommandLineFlagRangeList::check_ranges()) { + if (!JVMFlagRangeList::check_ranges()) { return JNI_EINVAL; } // Final check of all 'AfterErgo' constraints after ergonomics which may change values. - bool constraint_result = CommandLineFlagConstraintList::check_constraints(CommandLineFlagConstraint::AfterErgo); + bool constraint_result = JVMFlagConstraintList::check_constraints(JVMFlagConstraint::AfterErgo); if (!constraint_result) { return JNI_EINVAL; } - CommandLineFlagWriteableList::mark_startup(); + JVMFlagWriteableList::mark_startup(); if (PauseAtStartup) { os::pause();