diff src/share/vm/c1/c1_Compilation.cpp @ 1964:22ef3370343b

7000349: Tiered reacts incorrectly to C1 compilation failures Summary: Fix policy reaction to C1 comilation failures, make C1 properly report errors. Reviewed-by: kvn
author iveresov
date Tue, 16 Nov 2010 15:57:16 -0800
parents d5d065957597
children f95d63e2154a
line wrap: on
line diff
--- a/src/share/vm/c1/c1_Compilation.cpp	Fri Nov 12 09:51:43 2010 -0800
+++ b/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);