src/share/vm/opto/phase.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/opto/phase.hpp	Fri Nov 27 10:24:19 2015
--- new/src/share/vm/opto/phase.hpp	Fri Nov 27 10:24:19 2015

*** 41,50 **** --- 41,51 ---- public: enum PhaseNumber { Compiler, // Top-level compiler phase Parser, // Parse bytecodes Remove_Useless, // Remove useless nodes + Remove_Useless_And_Renumber_Live, // First, remove useless nodes from the graph. Then, renumber live nodes. Optimistic, // Optimistic analysis phase GVN, // Pessimistic global value numbering phase Ins_Select, // Instruction selection phase CFG, // Build a CFG BlockLayout, // Linear ordering of blocks
*** 100,109 **** --- 101,111 ---- // Subtimers for _t_optimizer static elapsedTimer _t_iterGVN; static elapsedTimer _t_iterGVN2; static elapsedTimer _t_incrInline; + static elapsedTimer _t_renumberLive; // Subtimers for _t_registerAllocation static elapsedTimer _t_ctorChaitin; static elapsedTimer _t_buildIFGphysical; static elapsedTimer _t_computeLive;

src/share/vm/opto/phase.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File