Lines Matching refs:print_cr

101   tty->print_cr ("Accumulated compiler times:");  in print_timers()
102 tty->print_cr ("---------------------------"); in print_timers()
103 tty->print_cr (" Total compilation: %3.3f sec.", Phase::_t_totalCompilation.seconds()); in print_timers()
106 …tty->print_cr (" (%3.0f bytes per sec) ", Phase::_total_bytes_compiled / Phase::_t_methodCompilati… in print_timers()
107 tty->print_cr (" stub compilation : %3.3f sec.", Phase::_t_stubCompilation.seconds()); in print_timers()
108 tty->print_cr (" Phases:"); in print_timers()
109 tty->print_cr (" parse : %3.3f sec", Phase::_t_parser.seconds()); in print_timers()
110 tty->print_cr (" optimizer : %3.3f sec", Phase::_t_optimizer.seconds()); in print_timers()
114 tty->print_cr (" escape analysis: %3.3f sec", Phase::_t_escapeAnalysis.seconds()); in print_timers()
115 tty->print_cr (" connection graph: %3.3f sec", Phase::_t_connectionGraph.seconds()); in print_timers()
116 tty->print_cr (" macroEliminate : %3.3f sec", Phase::_t_macroEliminate.seconds()); in print_timers()
118 tty->print_cr (" iterGVN : %3.3f sec", Phase::_t_iterGVN.seconds()); in print_timers()
119 tty->print_cr (" incrInline : %3.3f sec", Phase::_t_incrInline.seconds()); in print_timers()
120 tty->print_cr (" renumberLive : %3.3f sec", Phase::_t_renumberLive.seconds()); in print_timers()
121 tty->print_cr (" idealLoop : %3.3f sec", Phase::_t_idealLoop.seconds()); in print_timers()
122 tty->print_cr (" idealLoopVerify: %3.3f sec", Phase::_t_idealLoopVerify.seconds()); in print_timers()
123 tty->print_cr (" ccp : %3.3f sec", Phase::_t_ccp.seconds()); in print_timers()
124 tty->print_cr (" iterGVN2 : %3.3f sec", Phase::_t_iterGVN2.seconds()); in print_timers()
125 tty->print_cr (" macroExpand : %3.3f sec", Phase::_t_macroExpand.seconds()); in print_timers()
126 tty->print_cr (" graphReshape : %3.3f sec", Phase::_t_graphReshaping.seconds()); in print_timers()
132 …tty->print_cr (" subtotal : %3.3f sec, %3.2f %%", optimizer_subtotal, percent_of_optim… in print_timers()
134 tty->print_cr (" matcher : %3.3f sec", Phase::_t_matcher.seconds()); in print_timers()
135 tty->print_cr (" scheduler : %3.3f sec", Phase::_t_scheduler.seconds()); in print_timers()
136 tty->print_cr (" regalloc : %3.3f sec", Phase::_t_registerAllocation.seconds()); in print_timers()
138 tty->print_cr (" ctorChaitin : %3.3f sec", Phase::_t_ctorChaitin.seconds()); in print_timers()
139 tty->print_cr (" buildIFG : %3.3f sec", Phase::_t_buildIFGphysical.seconds()); in print_timers()
140 tty->print_cr (" computeLive : %3.3f sec", Phase::_t_computeLive.seconds()); in print_timers()
141 tty->print_cr (" regAllocSplit : %3.3f sec", Phase::_t_regAllocSplit.seconds()); in print_timers()
142 … tty->print_cr (" postAllocCopyRemoval: %3.3f sec", Phase::_t_postAllocCopyRemoval.seconds()); in print_timers()
143 tty->print_cr (" mergeMultidefs: %3.3f sec", Phase::_t_mergeMultidefs.seconds()); in print_timers()
144 tty->print_cr (" fixupSpills : %3.3f sec", Phase::_t_fixupSpills.seconds()); in print_timers()
150 …tty->print_cr (" subtotal : %3.3f sec, %3.2f %%", regalloc_subtotal, percent_of_regall… in print_timers()
152 tty->print_cr (" blockOrdering : %3.3f sec", Phase::_t_blockOrdering.seconds()); in print_timers()
153 tty->print_cr (" peephole : %3.3f sec", Phase::_t_peephole.seconds()); in print_timers()
155 tty->print_cr (" postalloc_expand: %3.3f sec", Phase::_t_postalloc_expand.seconds()); in print_timers()
157 tty->print_cr (" codeGen : %3.3f sec", Phase::_t_codeGeneration.seconds()); in print_timers()
158 tty->print_cr (" install_code : %3.3f sec", Phase::_t_registerMethod.seconds()); in print_timers()
159 tty->print_cr (" -------------- : ----------"); in print_timers()
168 …tty->print_cr (" total : %3.3f sec, %3.2f %%", phase_subtotal, percent_of_method_comp… in print_timers()
176 tty->print_cr (" temporaryTimer1: %3.3f sec", Phase::_t_temporaryTimer1.seconds()); in print_timers()
180 tty->print_cr (" temporaryTimer2: %3.3f sec", Phase::_t_temporaryTimer2.seconds()); in print_timers()
182 tty->print_cr (" output : %3.3f sec", Phase::_t_output.seconds()); in print_timers()
183 tty->print_cr (" isched : %3.3f sec", Phase::_t_instrSched.seconds()); in print_timers()
184 tty->print_cr (" bldOopMaps : %3.3f sec", Phase::_t_buildOopMaps.seconds()); in print_timers()