hotspot/src/share/vm/runtime/arguments.cpp
changeset 11426 7dd181af6a26
parent 11187 8bf3c2a2b5e4
child 11442 770f7b89bb6b
child 11445 3c768dca60f5
--- a/hotspot/src/share/vm/runtime/arguments.cpp	Tue Dec 13 10:54:47 2011 +0100
+++ b/hotspot/src/share/vm/runtime/arguments.cpp	Tue Dec 13 17:10:52 2011 -0800
@@ -1000,6 +1000,13 @@
     UseInterpreter           = false;
     BackgroundCompilation    = false;
     ClipInlining             = false;
+    // Be much more aggressive in tiered mode with -Xcomp and exercise C2 more.
+    // We will first compile a level 3 version (C1 with full profiling), then do one invocation of it and
+    // compile a level 4 (C2) and then continue executing it.
+    if (TieredCompilation) {
+      Tier3InvokeNotifyFreqLog = 0;
+      Tier4InvocationThreshold = 0;
+    }
     break;
   }
 }