changeset 985:4ebd3f8407eb

6909480: Disable Escape Analysis in jdk 6u18 Summary: Disable Escape Analysis in jdk 6u18. Reviewed-by: never, ysr
author kvn
date Thu, 10 Dec 2009 17:04:28 -0800
parents 62926c7f67a3
children 58ff7544194e
files src/share/vm/runtime/arguments.cpp
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/runtime/arguments.cpp	Tue Dec 08 15:12:17 2009 -0800
+++ b/src/share/vm/runtime/arguments.cpp	Thu Dec 10 17:04:28 2009 -0800
@@ -2744,6 +2744,12 @@
   if (!UseBiasedLocking || EmitSync != 0) {
     UseOptoBiasInlining = false;
   }
+  if (DoEscapeAnalysis) {
+    if (FLAG_IS_CMDLINE(DoEscapeAnalysis)) {
+      warning("Escape Analysis is disabled in this release.");
+    }
+    FLAG_SET_DEFAULT(DoEscapeAnalysis, false);
+  }
 #endif
 
   if (PrintCommandLineFlags) {