@@ -118,9 +118,9 @@ JVMState* LibraryIntrinsic::generate(JVMState* jvms) {
118118 kit.try_to_inline (_last_predicate)) {
119119 const char *inline_msg = is_virtual () ? " (intrinsic, virtual)"
120120 : " (intrinsic)" ;
121- CompileTask::print_inlining_ul (callee, jvms->depth () - 1 , bci, inline_msg);
121+ CompileTask::print_inlining_ul (callee, jvms->depth () - 1 , bci, InliningResult::SUCCESS, inline_msg);
122122 if (C->print_intrinsics () || C->print_inlining ()) {
123- C->print_inlining (callee, jvms->depth () - 1 , bci, inline_msg);
123+ C->print_inlining (callee, jvms->depth () - 1 , bci, InliningResult::SUCCESS, inline_msg);
124124 }
125125 C->gather_intrinsic_statistics (intrinsic_id (), is_virtual (), Compile::_intrinsic_worked);
126126 if (C->log ()) {
@@ -146,9 +146,9 @@ JVMState* LibraryIntrinsic::generate(JVMState* jvms) {
146146 msg = is_virtual () ? " failed to inline (intrinsic, virtual), method not annotated"
147147 : " failed to inline (intrinsic), method not annotated" ;
148148 }
149- CompileTask::print_inlining_ul (callee, jvms->depth () - 1 , bci, msg);
149+ CompileTask::print_inlining_ul (callee, jvms->depth () - 1 , bci, InliningResult::FAILURE, msg);
150150 if (C->print_intrinsics () || C->print_inlining ()) {
151- C->print_inlining (callee, jvms->depth () - 1 , bci, msg);
151+ C->print_inlining (callee, jvms->depth () - 1 , bci, InliningResult::FAILURE, msg);
152152 }
153153 } else {
154154 // Root compile
@@ -189,9 +189,9 @@ Node* LibraryIntrinsic::generate_predicate(JVMState* jvms, int predicate) {
189189 if (!kit.failing ()) {
190190 const char *inline_msg = is_virtual () ? " (intrinsic, virtual, predicate)"
191191 : " (intrinsic, predicate)" ;
192- CompileTask::print_inlining_ul (callee, jvms->depth () - 1 , bci, inline_msg);
192+ CompileTask::print_inlining_ul (callee, jvms->depth () - 1 , bci, InliningResult::SUCCESS, inline_msg);
193193 if (C->print_intrinsics () || C->print_inlining ()) {
194- C->print_inlining (callee, jvms->depth () - 1 , bci, inline_msg);
194+ C->print_inlining (callee, jvms->depth () - 1 , bci, InliningResult::SUCCESS, inline_msg);
195195 }
196196 C->gather_intrinsic_statistics (intrinsic_id (), is_virtual (), Compile::_intrinsic_worked);
197197 if (C->log ()) {
@@ -207,9 +207,9 @@ Node* LibraryIntrinsic::generate_predicate(JVMState* jvms, int predicate) {
207207 if (jvms->has_method ()) {
208208 // Not a root compile.
209209 const char * msg = " failed to generate predicate for intrinsic" ;
210- CompileTask::print_inlining_ul (kit.callee (), jvms->depth () - 1 , bci, msg);
210+ CompileTask::print_inlining_ul (kit.callee (), jvms->depth () - 1 , bci, InliningResult::FAILURE, msg);
211211 if (C->print_intrinsics () || C->print_inlining ()) {
212- C->print_inlining (kit.callee (), jvms->depth () - 1 , bci, msg);
212+ C->print_inlining (kit.callee (), jvms->depth () - 1 , bci, InliningResult::FAILURE, msg);
213213 }
214214 } else {
215215 // Root compile
0 commit comments