diff src/share/vm/oops/methodDataOop.cpp @ 5039:f3d2447db2d9

added detection for endless recompilation separated C1 and Graal specific globals fixed jump branch probability
author Christian Haeubl <christian.haeubl@oracle.com>
date Tue, 06 Mar 2012 11:11:27 -0800
parents 8e6db1a5c537
children e5d42eccfb29
line wrap: on
line diff
--- a/src/share/vm/oops/methodDataOop.cpp	Mon Mar 05 12:40:54 2012 -0800
+++ b/src/share/vm/oops/methodDataOop.cpp	Tue Mar 06 11:11:27 2012 -0800
@@ -868,7 +868,7 @@
     // TODO (ch) enable this in the fastdebug build only once we are more stable
     ResourceMark m;
     tty->print_cr("WARN: endless recompilation of %s. Method was set to not compilable.", method()->name_and_sig_as_C_string());
-    vm_exit(1);
+    ShouldNotReachHere();
 #endif
     method()->set_not_compilable(CompLevel_full_optimization);
   }