# HG changeset patch # User kvn # Date 1499722120 25200 # Node ID 9d032191f82fca5ba0aac98682f69c4ff0f1283d # Parent b4ffcabea35cb5181902baec4afecf8448fb1b2e 8184036: Restore -XX:UseAVX=3 as product value Reviewed-by: dlong, roland diff -r b4ffcabea35c -r 9d032191f82f src/cpu/x86/vm/globals_x86.hpp --- a/src/cpu/x86/vm/globals_x86.hpp Thu Jul 06 20:29:02 2017 +0000 +++ b/src/cpu/x86/vm/globals_x86.hpp Mon Jul 10 14:28:40 2017 -0700 @@ -119,7 +119,6 @@ product(intx, UseAVX, 2, \ "Highest supported AVX instructions set on x86/x64") \ range(0, 99) \ - constraint(UseAVXConstraintFunc, AtParse) \ \ product(bool, UseCLMUL, false, \ "Control whether CLMUL instructions can be used on x86/x64") \ diff -r b4ffcabea35c -r 9d032191f82f src/share/vm/runtime/commandLineFlagConstraintsCompiler.cpp --- a/src/share/vm/runtime/commandLineFlagConstraintsCompiler.cpp Thu Jul 06 20:29:02 2017 +0000 +++ b/src/share/vm/runtime/commandLineFlagConstraintsCompiler.cpp Mon Jul 10 14:28:40 2017 -0700 @@ -332,17 +332,6 @@ } } -Flag::Error UseAVXConstraintFunc(intx value, bool verbose) { - if (value > 2 && !UnlockExperimentalVMOptions) { - CommandLineError::print(verbose, - "UseAVX (" UINTX_FORMAT ") is experimental and must be " - "enabled via -XX:+UnlockExperimentalVMOptions \n", value); - return Flag::VIOLATES_CONSTRAINT; - } else { - return Flag::SUCCESS; - } -} - #ifdef COMPILER2 Flag::Error InteriorEntryAlignmentConstraintFunc(intx value, bool verbose) { if (InteriorEntryAlignment > CodeEntryAlignment) { diff -r b4ffcabea35c -r 9d032191f82f src/share/vm/runtime/commandLineFlagConstraintsCompiler.hpp --- a/src/share/vm/runtime/commandLineFlagConstraintsCompiler.hpp Thu Jul 06 20:29:02 2017 +0000 +++ b/src/share/vm/runtime/commandLineFlagConstraintsCompiler.hpp Mon Jul 10 14:28:40 2017 -0700 @@ -64,8 +64,6 @@ Flag::Error InitArrayShortSizeConstraintFunc(intx value, bool verbose); -Flag::Error UseAVXConstraintFunc(intx value, bool verbose); - #ifdef COMPILER2 Flag::Error InteriorEntryAlignmentConstraintFunc(intx value, bool verbose);