hotspot/src/share/vm/c1/c1_Compilation.cpp
changeset 7389 93110864f81e
parent 6453 970dc585ab63
child 7397 5b173b4ca846
--- a/hotspot/src/share/vm/c1/c1_Compilation.cpp	Fri Nov 12 09:51:43 2010 -0800
+++ b/hotspot/src/share/vm/c1/c1_Compilation.cpp	Tue Nov 16 15:57:16 2010 -0800
@@ -471,7 +471,14 @@
   _exception_info_list = new ExceptionInfoList();
   _implicit_exception_table.set_size(0);
   compile_method();
-  if (is_profiling() && _would_profile) {
+  if (bailed_out()) {
+    _env->record_method_not_compilable(bailout_msg(), !TieredCompilation);
+    if (is_profiling()) {
+      // Compilation failed, create MDO, which would signal the interpreter
+      // to start profiling on its own.
+      _method->build_method_data();
+    }
+  } else if (is_profiling() && _would_profile) {
     ciMethodData *md = method->method_data();
     assert (md != NULL, "Should have MDO");
     md->set_would_profile(_would_profile);