1 /*
  2  * Copyright (c) 1999, 2024, Oracle and/or its affiliates. All rights reserved.
  3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4  *
  5  * This code is free software; you can redistribute it and/or modify it
  6  * under the terms of the GNU General Public License version 2 only, as
  7  * published by the Free Software Foundation.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #include "precompiled.hpp"
 26 #include "c1/c1_CFGPrinter.hpp"
 27 #include "c1/c1_Compilation.hpp"
 28 #include "c1/c1_IR.hpp"
 29 #include "c1/c1_LIRAssembler.hpp"
 30 #include "c1/c1_LinearScan.hpp"
 31 #include "c1/c1_MacroAssembler.hpp"
 32 #include "c1/c1_RangeCheckElimination.hpp"
 33 #include "c1/c1_ValueMap.hpp"
 34 #include "c1/c1_ValueStack.hpp"
 35 #include "code/debugInfoRec.hpp"
 36 #include "compiler/compilationFailureInfo.hpp"
 37 #include "compiler/compilationMemoryStatistic.hpp"
 38 #include "compiler/compilerDirectives.hpp"
 39 #include "compiler/compileLog.hpp"
 40 #include "compiler/compileTask.hpp"
 41 #include "compiler/compiler_globals.hpp"
 42 #include "compiler/compilerDirectives.hpp"
 43 #include "memory/resourceArea.hpp"
 44 #include "runtime/sharedRuntime.hpp"
 45 #include "runtime/timerTrace.hpp"
 46 
 47 typedef enum {
 48   _t_compile,
 49     _t_setup,
 50     _t_buildIR,
 51       _t_hir_parse,
 52       _t_gvn,
 53       _t_optimize_blocks,
 54       _t_optimize_null_checks,
 55       _t_rangeCheckElimination,
 56     _t_emit_lir,
 57       _t_linearScan,
 58       _t_lirGeneration,
 59     _t_codeemit,
 60     _t_codeinstall,
 61   max_phase_timers
 62 } TimerId;
 63 
 64 static const char * timer_name[] = {
 65   "compile",
 66   "setup",
 67   "buildIR",
 68   "parse_hir",
 69   "gvn",
 70   "optimize_blocks",
 71   "optimize_null_checks",
 72   "rangeCheckElimination",
 73   "emit_lir",
 74   "linearScan",
 75   "lirGeneration",
 76   "codeemit",
 77   "codeinstall"
 78 };
 79 
 80 static elapsedTimer timers[max_phase_timers];
 81 
 82 class PhaseTraceTime: public TraceTime {
 83  private:
 84   CompileLog* _log;
 85   TimerId _timer_id;
 86   bool _dolog;
 87 
 88  public:
 89   PhaseTraceTime(TimerId timer_id)
 90   : TraceTime(timer_name[timer_id], &timers[timer_id], CITime, CITimeVerbose),
 91     _log(nullptr), _timer_id(timer_id), _dolog(CITimeVerbose)
 92   {
 93     if (_dolog) {
 94       assert(Compilation::current() != nullptr, "sanity check");
 95       _log = Compilation::current()->log();
 96     }
 97 
 98     if (_log != nullptr) {
 99       _log->begin_head("phase name='%s'", timer_name[_timer_id]);
100       _log->stamp();
101       _log->end_head();
102     }
103   }
104 
105   ~PhaseTraceTime() {
106     if (_log != nullptr)
107       _log->done("phase name='%s'", timer_name[_timer_id]);
108   }
109 };
110 
111 // Implementation of Compilation
112 
113 
114 #ifndef PRODUCT
115 
116 void Compilation::maybe_print_current_instruction() {
117   if (_current_instruction != nullptr && _last_instruction_printed != _current_instruction) {
118     _last_instruction_printed = _current_instruction;
119     _current_instruction->print_line();
120   }
121 }
122 #endif // PRODUCT
123 
124 
125 DebugInformationRecorder* Compilation::debug_info_recorder() const {
126   return _env->debug_info();
127 }
128 
129 
130 Dependencies* Compilation::dependency_recorder() const {
131   return _env->dependencies();
132 }
133 
134 
135 void Compilation::initialize() {
136   // Use an oop recorder bound to the CI environment.
137   // (The default oop recorder is ignorant of the CI.)
138   OopRecorder* ooprec = new OopRecorder(_env->arena());
139   _env->set_oop_recorder(ooprec);
140   _env->set_debug_info(new DebugInformationRecorder(ooprec));
141   debug_info_recorder()->set_oopmaps(new OopMapSet());
142   _env->set_dependencies(new Dependencies(_env));
143 }
144 
145 
146 void Compilation::build_hir() {
147   CHECK_BAILOUT();
148 
149   // setup ir
150   CompileLog* log = this->log();
151   if (log != nullptr) {
152     log->begin_head("parse method='%d' ",
153                     log->identify(_method));
154     log->stamp();
155     log->end_head();
156   }
157   {
158     PhaseTraceTime timeit(_t_hir_parse);
159     _hir = new IR(this, method(), osr_bci());
160   }
161   if (log)  log->done("parse");
162   if (!_hir->is_valid()) {
163     bailout("invalid parsing");
164     return;
165   }
166 
167 #ifndef PRODUCT
168   if (PrintCFGToFile) {
169     CFGPrinter::print_cfg(_hir, "After Generation of HIR", true, false);
170   }
171 #endif
172 
173 #ifndef PRODUCT
174   if (PrintCFG || PrintCFG0) { tty->print_cr("CFG after parsing"); _hir->print(true); }
175   if (PrintIR  || PrintIR0 ) { tty->print_cr("IR after parsing"); _hir->print(false); }
176 #endif
177 
178   _hir->verify();
179 
180   if (UseC1Optimizations) {
181     NEEDS_CLEANUP
182     // optimization
183     PhaseTraceTime timeit(_t_optimize_blocks);
184 
185     _hir->optimize_blocks();
186   }
187 
188   _hir->verify();
189 
190   _hir->split_critical_edges();
191 
192 #ifndef PRODUCT
193   if (PrintCFG || PrintCFG1) { tty->print_cr("CFG after optimizations"); _hir->print(true); }
194   if (PrintIR  || PrintIR1 ) { tty->print_cr("IR after optimizations"); _hir->print(false); }
195 #endif
196 
197   _hir->verify();
198 
199   // compute block ordering for code generation
200   // the control flow must not be changed from here on
201   _hir->compute_code();
202 
203   if (UseGlobalValueNumbering) {
204     // No resource mark here! LoopInvariantCodeMotion can allocate ValueStack objects.
205     PhaseTraceTime timeit(_t_gvn);
206     int instructions = Instruction::number_of_instructions();
207     GlobalValueNumbering gvn(_hir);
208     assert(instructions == Instruction::number_of_instructions(),
209            "shouldn't have created an instructions");
210   }
211 
212   _hir->verify();
213 
214 #ifndef PRODUCT
215   if (PrintCFGToFile) {
216     CFGPrinter::print_cfg(_hir, "Before RangeCheckElimination", true, false);
217   }
218 #endif
219 
220   if (RangeCheckElimination) {
221     if (_hir->osr_entry() == nullptr) {
222       PhaseTraceTime timeit(_t_rangeCheckElimination);
223       RangeCheckElimination::eliminate(_hir);
224     }
225   }
226 
227 #ifndef PRODUCT
228   if (PrintCFGToFile) {
229     CFGPrinter::print_cfg(_hir, "After RangeCheckElimination", true, false);
230   }
231 #endif
232 
233   if (UseC1Optimizations) {
234     // loop invariant code motion reorders instructions and range
235     // check elimination adds new instructions so do null check
236     // elimination after.
237     NEEDS_CLEANUP
238     // optimization
239     PhaseTraceTime timeit(_t_optimize_null_checks);
240 
241     _hir->eliminate_null_checks();
242   }
243 
244   _hir->verify();
245 
246   // compute use counts after global value numbering
247   _hir->compute_use_counts();
248 
249 #ifndef PRODUCT
250   if (PrintCFG || PrintCFG2) { tty->print_cr("CFG before code generation"); _hir->code()->print(true); }
251   if (PrintIR  || PrintIR2 ) { tty->print_cr("IR before code generation"); _hir->code()->print(false, true); }
252 #endif
253 
254   _hir->verify();
255 }
256 
257 
258 void Compilation::emit_lir() {
259   CHECK_BAILOUT();
260 
261   LIRGenerator gen(this, method());
262   {
263     PhaseTraceTime timeit(_t_lirGeneration);
264     hir()->iterate_linear_scan_order(&gen);
265   }
266 
267   CHECK_BAILOUT();
268 
269   {
270     PhaseTraceTime timeit(_t_linearScan);
271 
272     LinearScan* allocator = new LinearScan(hir(), &gen, frame_map());
273     set_allocator(allocator);
274     // Assign physical registers to LIR operands using a linear scan algorithm.
275     allocator->do_linear_scan();
276     CHECK_BAILOUT();
277   }
278 
279   if (BailoutAfterLIR) {
280     if (PrintLIR && !bailed_out()) {
281       print_LIR(hir()->code());
282     }
283     bailout("Bailing out because of -XX:+BailoutAfterLIR");
284   }
285 }
286 
287 
288 void Compilation::emit_code_epilog(LIR_Assembler* assembler) {
289   CHECK_BAILOUT();
290 
291   CodeOffsets* code_offsets = assembler->offsets();
292 
293   if (!code()->finalize_stubs()) {
294     bailout("CodeCache is full");
295     return;
296   }
297 
298   // generate code or slow cases
299   assembler->emit_slow_case_stubs();
300   CHECK_BAILOUT();
301 
302   // generate exception adapters
303   assembler->emit_exception_entries(exception_info_list());
304   CHECK_BAILOUT();
305 
306   // Generate code for exception handler.
307   code_offsets->set_value(CodeOffsets::Exceptions, assembler->emit_exception_handler());
308   CHECK_BAILOUT();
309 
310   // Generate code for deopt handler.
311   code_offsets->set_value(CodeOffsets::Deopt, assembler->emit_deopt_handler());
312   CHECK_BAILOUT();
313 
314   // Emit the MethodHandle deopt handler code (if required).
315   if (has_method_handle_invokes()) {
316     // We can use the same code as for the normal deopt handler, we
317     // just need a different entry point address.
318     code_offsets->set_value(CodeOffsets::DeoptMH, assembler->emit_deopt_handler());
319     CHECK_BAILOUT();
320   }
321 
322   // Emit the handler to remove the activation from the stack and
323   // dispatch to the caller.
324   offsets()->set_value(CodeOffsets::UnwindHandler, assembler->emit_unwind_handler());
325 }
326 
327 
328 bool Compilation::setup_code_buffer(CodeBuffer* code, int call_stub_estimate) {
329   // Preinitialize the consts section to some large size:
330   int locs_buffer_size = 20 * (relocInfo::length_limit + sizeof(relocInfo));
331   char* locs_buffer = NEW_RESOURCE_ARRAY(char, locs_buffer_size);
332   code->insts()->initialize_shared_locs((relocInfo*)locs_buffer,
333                                         locs_buffer_size / sizeof(relocInfo));
334   code->initialize_consts_size(Compilation::desired_max_constant_size());
335   // Call stubs + two deopt handlers (regular and MH) + exception handler
336   int stub_size = (call_stub_estimate * LIR_Assembler::call_stub_size()) +
337                    LIR_Assembler::exception_handler_size() +
338                    (2 * LIR_Assembler::deopt_handler_size());
339   if (stub_size >= code->insts_capacity()) return false;
340   code->initialize_stubs_size(stub_size);
341   return true;
342 }
343 
344 
345 int Compilation::emit_code_body() {
346   // emit code
347   if (!setup_code_buffer(code(), allocator()->num_calls())) {
348     BAILOUT_("size requested greater than avail code buffer size", 0);
349   }
350   code()->initialize_oop_recorder(env()->oop_recorder());
351 
352   _masm = new C1_MacroAssembler(code());
353   _masm->set_oop_recorder(env()->oop_recorder());
354 
355   LIR_Assembler lir_asm(this);
356 
357   lir_asm.emit_code(hir()->code());
358   CHECK_BAILOUT_(0);
359 
360   emit_code_epilog(&lir_asm);
361   CHECK_BAILOUT_(0);
362 
363   generate_exception_handler_table();
364 
365 #ifndef PRODUCT
366   if (PrintExceptionHandlers && Verbose) {
367     exception_handler_table()->print();
368   }
369 #endif /* PRODUCT */
370 
371   _immediate_oops_patched = lir_asm.nr_immediate_oops_patched();
372   return frame_map()->framesize();
373 }
374 
375 
376 int Compilation::compile_java_method() {
377   assert(!method()->is_native(), "should not reach here");
378 
379   if (BailoutOnExceptionHandlers) {
380     if (method()->has_exception_handlers()) {
381       bailout("linear scan can't handle exception handlers");
382     }
383   }
384 
385   CHECK_BAILOUT_(no_frame_size);
386 
387   if (is_profiling() && !method()->ensure_method_data()) {
388     BAILOUT_("mdo allocation failed", no_frame_size);
389   }
390 
391   {
392     PhaseTraceTime timeit(_t_buildIR);
393     build_hir();
394   }
395   CHECK_BAILOUT_(no_frame_size);
396   if (BailoutAfterHIR) {
397     BAILOUT_("Bailing out because of -XX:+BailoutAfterHIR", no_frame_size);
398   }
399 
400 
401   {
402     PhaseTraceTime timeit(_t_emit_lir);
403 
404     _frame_map = new FrameMap(method(), hir()->number_of_locks(), hir()->max_stack());
405     emit_lir();
406   }
407   CHECK_BAILOUT_(no_frame_size);
408 
409   // Dump compilation data to replay it.
410   if (_directive->DumpReplayOption) {
411     env()->dump_replay_data(env()->compile_id());
412   }
413 
414   {
415     PhaseTraceTime timeit(_t_codeemit);
416     return emit_code_body();
417   }
418 }
419 
420 void Compilation::install_code(int frame_size) {
421   // frame_size is in 32-bit words so adjust it intptr_t words
422   assert(frame_size == frame_map()->framesize(), "must match");
423   assert(in_bytes(frame_map()->framesize_in_bytes()) % sizeof(intptr_t) == 0, "must be at least pointer aligned");
424   _env->register_method(
425     method(),
426     osr_bci(),
427     &_offsets,
428     in_bytes(_frame_map->sp_offset_for_orig_pc()),
429     code(),
430     in_bytes(frame_map()->framesize_in_bytes()) / sizeof(intptr_t),
431     debug_info_recorder()->_oopmaps,
432     exception_handler_table(),
433     implicit_exception_table(),
434     compiler(),
435     false, // has_clinit_barriers
436     false, // for_preload
437     has_unsafe_access(),
438     SharedRuntime::is_wide_vector(max_vector_size()),
439     has_monitors(),
440     has_scoped_access(),
441     _immediate_oops_patched,
442     should_install_code()
443   );
444 }
445 
446 
447 void Compilation::compile_method() {
448 
449   {
450     PhaseTraceTime timeit(_t_setup);
451 
452     // setup compilation
453     initialize();
454     CHECK_BAILOUT();
455 
456   }
457 
458   if (!method()->can_be_compiled()) {
459     // Prevent race condition 6328518.
460     // This can happen if the method is obsolete or breakpointed.
461     bailout("Bailing out because method is not compilable");
462     return;
463   }
464 
465   if (_env->jvmti_can_hotswap_or_post_breakpoint()) {
466     // We can assert evol_method because method->can_be_compiled is true.
467     dependency_recorder()->assert_evol_method(method());
468   }
469 
470   if (env()->break_at_compile()) {
471     BREAKPOINT;
472   }
473 
474 #ifndef PRODUCT
475   if (PrintCFGToFile) {
476     CFGPrinter::print_compilation(this);
477   }
478 #endif
479 
480   // compile method
481   int frame_size = compile_java_method();
482 
483   // bailout if method couldn't be compiled
484   // Note: make sure we mark the method as not compilable!
485   CHECK_BAILOUT();
486 
487   { // install code
488     PhaseTraceTime timeit(_t_codeinstall);
489     install_code(frame_size);
490   }
491 
492   if (log() != nullptr) // Print code cache state into compiler log
493     log()->code_cache_state();
494 
495 }
496 
497 
498 void Compilation::generate_exception_handler_table() {
499   // Generate an ExceptionHandlerTable from the exception handler
500   // information accumulated during the compilation.
501   ExceptionInfoList* info_list = exception_info_list();
502 
503   if (info_list->length() == 0) {
504     return;
505   }
506 
507   // allocate some arrays for use by the collection code.
508   const int num_handlers = 5;
509   GrowableArray<intptr_t>* bcis = new GrowableArray<intptr_t>(num_handlers);
510   GrowableArray<intptr_t>* scope_depths = new GrowableArray<intptr_t>(num_handlers);
511   GrowableArray<intptr_t>* pcos = new GrowableArray<intptr_t>(num_handlers);
512 
513   for (int i = 0; i < info_list->length(); i++) {
514     ExceptionInfo* info = info_list->at(i);
515     XHandlers* handlers = info->exception_handlers();
516 
517     // empty the arrays
518     bcis->trunc_to(0);
519     scope_depths->trunc_to(0);
520     pcos->trunc_to(0);
521 
522     int prev_scope = 0;
523     for (int i = 0; i < handlers->length(); i++) {
524       XHandler* handler = handlers->handler_at(i);
525       assert(handler->entry_pco() != -1, "must have been generated");
526       assert(handler->scope_count() >= prev_scope, "handlers should be sorted by scope");
527 
528       if (handler->scope_count() == prev_scope) {
529         int e = bcis->find_from_end(handler->handler_bci());
530         if (e >= 0 && scope_depths->at(e) == handler->scope_count()) {
531           // two different handlers are declared to dispatch to the same
532           // catch bci.  During parsing we created edges for each
533           // handler but we really only need one.  The exception handler
534           // table will also get unhappy if we try to declare both since
535           // it's nonsensical.  Just skip this handler.
536           continue;
537         }
538       }
539 
540       bcis->append(handler->handler_bci());
541       if (handler->handler_bci() == -1) {
542         // insert a wildcard handler at scope depth 0 so that the
543         // exception lookup logic with find it.
544         scope_depths->append(0);
545       } else {
546         scope_depths->append(handler->scope_count());
547       }
548       pcos->append(handler->entry_pco());
549 
550       // stop processing once we hit a catch any
551       if (handler->is_catch_all()) {
552         assert(i == handlers->length() - 1, "catch all must be last handler");
553       }
554       prev_scope = handler->scope_count();
555     }
556     exception_handler_table()->add_subtable(info->pco(), bcis, scope_depths, pcos);
557   }
558 }
559 
560 Compilation::Compilation(AbstractCompiler* compiler, ciEnv* env, ciMethod* method,
561                          int osr_bci, BufferBlob* buffer_blob, bool install_code, DirectiveSet* directive)
562 : _next_id(0)
563 , _next_block_id(0)
564 , _compiler(compiler)
565 , _directive(directive)
566 , _env(env)
567 , _log(env->log())
568 , _method(method)
569 , _osr_bci(osr_bci)
570 , _hir(nullptr)
571 , _frame_map(nullptr)
572 , _masm(nullptr)
573 , _has_exception_handlers(false)
574 , _has_fpu_code(true)   // pessimistic assumption
575 , _has_unsafe_access(false)
576 , _has_irreducible_loops(false)
577 , _would_profile(false)
578 , _has_method_handle_invokes(false)
579 , _has_reserved_stack_access(method->has_reserved_stack_access())
580 , _has_monitors(method->is_synchronized() || method->has_monitor_bytecodes())
581 , _has_scoped_access(method->is_scoped())
582 , _install_code(install_code)
583 , _bailout_msg(nullptr)
584 , _first_failure_details(nullptr)
585 , _exception_info_list(nullptr)
586 , _allocator(nullptr)
587 , _code(buffer_blob)
588 , _has_access_indexed(false)
589 , _interpreter_frame_size(0)
590 , _immediate_oops_patched(0)
591 , _current_instruction(nullptr)
592 #ifndef PRODUCT
593 , _last_instruction_printed(nullptr)
594 , _cfg_printer_output(nullptr)
595 #endif // PRODUCT
596 {
597   _arena = Thread::current()->resource_area();
598   _env->set_compiler_data(this);
599   _exception_info_list = new ExceptionInfoList();
600   _implicit_exception_table.set_size(0);
601   PhaseTraceTime timeit(_t_compile);
602 #ifndef PRODUCT
603   if (PrintCFGToFile) {
604     _cfg_printer_output = new CFGPrinterOutput(this);
605   }
606 #endif
607 
608   CompilationMemoryStatisticMark cmsm(directive);
609 
610   compile_method();
611   if (bailed_out()) {
612     _env->record_method_not_compilable(bailout_msg());
613     if (is_profiling()) {
614       // Compilation failed, create MDO, which would signal the interpreter
615       // to start profiling on its own.
616       _method->ensure_method_data();
617     }
618   } else if (is_profiling()) {
619     ciMethodData *md = method->method_data_or_null();
620     if (md != nullptr) {
621       md->set_would_profile(_would_profile);
622     }
623   }
624 }
625 
626 Compilation::~Compilation() {
627   // simulate crash during compilation
628   assert(CICrashAt < 0 || (uintx)_env->compile_id() != (uintx)CICrashAt, "just as planned");
629   delete _first_failure_details;
630   _env->set_compiler_data(nullptr);
631 }
632 
633 void Compilation::add_exception_handlers_for_pco(int pco, XHandlers* exception_handlers) {
634 #ifndef PRODUCT
635   if (PrintExceptionHandlers && Verbose) {
636     tty->print_cr("  added exception scope for pco %d", pco);
637   }
638 #endif
639   // Note: we do not have program counters for these exception handlers yet
640   exception_info_list()->push(new ExceptionInfo(pco, exception_handlers));
641 }
642 
643 
644 void Compilation::notice_inlined_method(ciMethod* method) {
645   _env->notice_inlined_method(method);
646 }
647 
648 
649 void Compilation::bailout(const char* msg) {
650   assert(msg != nullptr, "bailout message must exist");
651   if (!bailed_out()) {
652     // keep first bailout message
653     if (PrintCompilation || PrintBailouts) tty->print_cr("compilation bailout: %s", msg);
654     _bailout_msg = msg;
655     if (CaptureBailoutInformation) {
656       _first_failure_details = new CompilationFailureInfo(msg);
657     }
658   }
659 }
660 
661 ciKlass* Compilation::cha_exact_type(ciType* type) {
662   if (type != nullptr && type->is_loaded() && type->is_instance_klass()) {
663     ciInstanceKlass* ik = type->as_instance_klass();
664     assert(ik->exact_klass() == nullptr, "no cha for final klass");
665     if (DeoptC1 && UseCHA && !(ik->has_subklass() || ik->is_interface())) {
666       dependency_recorder()->assert_leaf_type(ik);
667       return ik;
668     }
669   }
670   return nullptr;
671 }
672 
673 void Compilation::print_timers() {
674   tty->print_cr("    C1 Compile Time:      %7.3f s",      timers[_t_compile].seconds());
675   tty->print_cr("       Setup time:          %7.3f s",    timers[_t_setup].seconds());
676 
677   {
678     tty->print_cr("       Build HIR:           %7.3f s",    timers[_t_buildIR].seconds());
679     tty->print_cr("         Parse:               %7.3f s", timers[_t_hir_parse].seconds());
680     tty->print_cr("         Optimize blocks:     %7.3f s", timers[_t_optimize_blocks].seconds());
681     tty->print_cr("         GVN:                 %7.3f s", timers[_t_gvn].seconds());
682     tty->print_cr("         Null checks elim:    %7.3f s", timers[_t_optimize_null_checks].seconds());
683     tty->print_cr("         Range checks elim:   %7.3f s", timers[_t_rangeCheckElimination].seconds());
684 
685     double other = timers[_t_buildIR].seconds() -
686       (timers[_t_hir_parse].seconds() +
687        timers[_t_optimize_blocks].seconds() +
688        timers[_t_gvn].seconds() +
689        timers[_t_optimize_null_checks].seconds() +
690        timers[_t_rangeCheckElimination].seconds());
691     if (other > 0) {
692       tty->print_cr("         Other:               %7.3f s", other);
693     }
694   }
695 
696   {
697     tty->print_cr("       Emit LIR:            %7.3f s",    timers[_t_emit_lir].seconds());
698     tty->print_cr("         LIR Gen:             %7.3f s",   timers[_t_lirGeneration].seconds());
699     tty->print_cr("         Linear Scan:         %7.3f s",   timers[_t_linearScan].seconds());
700     NOT_PRODUCT(LinearScan::print_timers(timers[_t_linearScan].seconds()));
701 
702     double other = timers[_t_emit_lir].seconds() -
703       (timers[_t_lirGeneration].seconds() +
704        timers[_t_linearScan].seconds());
705     if (other > 0) {
706       tty->print_cr("         Other:               %7.3f s", other);
707     }
708   }
709 
710   tty->print_cr("       Code Emission:       %7.3f s",    timers[_t_codeemit].seconds());
711   tty->print_cr("       Code Installation:   %7.3f s",    timers[_t_codeinstall].seconds());
712 
713   double other = timers[_t_compile].seconds() -
714       (timers[_t_setup].seconds() +
715        timers[_t_buildIR].seconds() +
716        timers[_t_emit_lir].seconds() +
717        timers[_t_codeemit].seconds() +
718        timers[_t_codeinstall].seconds());
719   if (other > 0) {
720     tty->print_cr("       Other:               %7.3f s", other);
721   }
722 
723   NOT_PRODUCT(LinearScan::print_statistics());
724 }
725 
726 
727 #ifndef PRODUCT
728 void CompilationResourceObj::print() const       { print_on(tty); }
729 
730 void CompilationResourceObj::print_on(outputStream* st) const {
731   st->print_cr("CompilationResourceObj(" INTPTR_FORMAT ")", p2i(this));
732 }
733 
734 // Called from debugger to get the interval with 'reg_num' during register allocation.
735 Interval* find_interval(int reg_num) {
736   return Compilation::current()->allocator()->find_interval_at(reg_num);
737 }
738 
739 #endif // NOT PRODUCT