0N/A/*
3619N/A * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
1472N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1472N/A * or visit www.oracle.com if you need additional information or have any
1472N/A * questions.
0N/A *
0N/A */
0N/A
1879N/A#ifndef SHARE_VM_OPTO_PHASE_HPP
1879N/A#define SHARE_VM_OPTO_PHASE_HPP
1879N/A
1879N/A#include "libadt/port.hpp"
1879N/A#include "runtime/timer.hpp"
1879N/A
0N/Aclass Compile;
0N/A
0N/A//------------------------------Phase------------------------------------------
0N/A// Most optimizations are done in Phases. Creating a phase does any long
0N/A// running analysis required, and caches the analysis in internal data
0N/A// structures. Later the analysis is queried using transform() calls to
0N/A// guide transforming the program. When the Phase is deleted, so is any
0N/A// cached analysis info. This basic Phase class mostly contains timing and
0N/A// memory management code.
0N/Aclass Phase : public StackObj {
0N/Apublic:
0N/A enum PhaseNumber {
0N/A Compiler, // Top-level compiler phase
0N/A Parser, // Parse bytecodes
0N/A Remove_Useless, // Remove useless nodes
0N/A Optimistic, // Optimistic analysis phase
0N/A GVN, // Pessimistic global value numbering phase
0N/A Ins_Select, // Instruction selection phase
0N/A CFG, // Build a CFG
418N/A BlockLayout, // Linear ordering of blocks
0N/A Register_Allocation, // Register allocation, duh
0N/A LIVE, // Dragon-book LIVE range problem
1080N/A StringOpts, // StringBuilder related optimizations
0N/A Interference_Graph, // Building the IFG
0N/A Coalesce, // Coalescing copies
0N/A Ideal_Loop, // Find idealized trip-counted loops
0N/A Macro_Expand, // Expand macro nodes
0N/A Peephole, // Apply peephole optimizations
0N/A last_phase
0N/A };
0N/Aprotected:
0N/A enum PhaseNumber _pnum; // Phase number (for stat gathering)
0N/A
0N/A#ifndef PRODUCT
0N/A static int _total_bytes_compiled;
0N/A
0N/A // accumulated timers
0N/A static elapsedTimer _t_totalCompilation;
0N/A static elapsedTimer _t_methodCompilation;
0N/A static elapsedTimer _t_stubCompilation;
0N/A#endif
0N/A
0N/A// The next timers used for LogCompilation
0N/A static elapsedTimer _t_parser;
0N/A static elapsedTimer _t_optimizer;
3619N/Apublic:
3619N/A // ConnectionGraph can't be Phase since it is used after EA done.
3619N/A static elapsedTimer _t_escapeAnalysis;
3619N/A static elapsedTimer _t_connectionGraph;
3619N/Aprotected:
0N/A static elapsedTimer _t_idealLoop;
0N/A static elapsedTimer _t_ccp;
0N/A static elapsedTimer _t_matcher;
0N/A static elapsedTimer _t_registerAllocation;
0N/A static elapsedTimer _t_output;
0N/A
0N/A#ifndef PRODUCT
0N/A static elapsedTimer _t_graphReshaping;
0N/A static elapsedTimer _t_scheduler;
418N/A static elapsedTimer _t_blockOrdering;
3619N/A static elapsedTimer _t_macroEliminate;
0N/A static elapsedTimer _t_macroExpand;
0N/A static elapsedTimer _t_peephole;
0N/A static elapsedTimer _t_codeGeneration;
0N/A static elapsedTimer _t_registerMethod;
0N/A static elapsedTimer _t_temporaryTimer1;
0N/A static elapsedTimer _t_temporaryTimer2;
921N/A static elapsedTimer _t_idealLoopVerify;
0N/A
0N/A// Subtimers for _t_optimizer
0N/A static elapsedTimer _t_iterGVN;
0N/A static elapsedTimer _t_iterGVN2;
0N/A
0N/A// Subtimers for _t_registerAllocation
0N/A static elapsedTimer _t_ctorChaitin;
0N/A static elapsedTimer _t_buildIFGphysical;
0N/A static elapsedTimer _t_computeLive;
0N/A static elapsedTimer _t_regAllocSplit;
0N/A static elapsedTimer _t_postAllocCopyRemoval;
0N/A static elapsedTimer _t_fixupSpills;
0N/A
0N/A// Subtimers for _t_output
0N/A static elapsedTimer _t_instrSched;
0N/A static elapsedTimer _t_buildOopMaps;
0N/A#endif
0N/Apublic:
0N/A Compile * C;
0N/A Phase( PhaseNumber pnum );
0N/A#ifndef PRODUCT
0N/A static void print_timers();
0N/A#endif
0N/A};
1879N/A
1879N/A#endif // SHARE_VM_OPTO_PHASE_HPP