< prev index next >

src/share/vm/opto/compile.cpp

Print this page
rev 11416 : [mq]: With tiered C2 should not mark methods as not compilable with all tiers

*** 776,786 **** cg = CallGenerator::for_inline(method(), expected_uses); } } if (failing()) return; if (cg == NULL) { ! record_method_not_compilable_all_tiers("cannot parse method"); return; } JVMState* jvms = build_start_state(start(), tf()); if ((jvms = cg->generate(jvms)) == NULL) { if (!failure_reason_is(C2Compiler::retry_class_loading_during_parsing())) { --- 776,786 ---- cg = CallGenerator::for_inline(method(), expected_uses); } } if (failing()) return; if (cg == NULL) { ! record_method_not_compilable("cannot parse method"); return; } JVMState* jvms = build_start_state(start(), tf()); if ((jvms = cg->generate(jvms)) == NULL) { if (!failure_reason_is(C2Compiler::retry_class_loading_during_parsing())) {
< prev index next >