equal
deleted
inserted
replaced
4304 log->inline_fail(msg); |
4304 log->inline_fail(msg); |
4305 else |
4305 else |
4306 log->inline_fail("reason unknown"); |
4306 log->inline_fail("reason unknown"); |
4307 } |
4307 } |
4308 } |
4308 } |
4309 |
4309 #if INCLUDE_TRACE |
|
4310 EventCompilerInlining event; |
|
4311 if (event.should_commit()) { |
|
4312 event.set_compileID(compilation()->env()->task()->compile_id()); |
|
4313 event.set_message(msg); |
|
4314 event.set_succeeded(success); |
|
4315 event.set_bci(bci()); |
|
4316 event.set_caller(method()->get_Method()); |
|
4317 event.set_callee(callee->to_trace_struct()); |
|
4318 event.commit(); |
|
4319 } |
|
4320 #endif // INCLUDE_TRACE |
4310 if (!PrintInlining && !compilation()->method()->has_option("PrintInlining")) { |
4321 if (!PrintInlining && !compilation()->method()->has_option("PrintInlining")) { |
4311 return; |
4322 return; |
4312 } |
4323 } |
4313 CompileTask::print_inlining(callee, scope()->level(), bci(), msg); |
4324 CompileTask::print_inlining(callee, scope()->level(), bci(), msg); |
4314 if (success && CIPrintMethodCodes) { |
4325 if (success && CIPrintMethodCodes) { |