changeset 12813:9d032191f82f jdk-9+178

8184036: Restore -XX:UseAVX=3 as product value Reviewed-by: dlong, roland
author kvn
date Mon, 10 Jul 2017 14:28:40 -0700
parents b4ffcabea35c
children 791a8c45a354
files src/cpu/x86/vm/globals_x86.hpp src/share/vm/runtime/commandLineFlagConstraintsCompiler.cpp src/share/vm/runtime/commandLineFlagConstraintsCompiler.hpp
diffstat 3 files changed, 0 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- 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")      \
--- 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) {
--- 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);