Searched refs:Phase (Results 1 - 25 of 31) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/opto/
H A Dphase.cpp33 int Phase::_total_bytes_compiled = 0;
35 elapsedTimer Phase::_t_totalCompilation;
36 elapsedTimer Phase::_t_methodCompilation;
37 elapsedTimer Phase::_t_stubCompilation;
41 elapsedTimer Phase::_t_parser;
42 elapsedTimer Phase::_t_optimizer;
43 elapsedTimer Phase::_t_escapeAnalysis;
44 elapsedTimer Phase::_t_connectionGraph;
45 elapsedTimer Phase::_t_idealLoop;
46 elapsedTimer Phase
82 Phase::Phase( PhaseNumber pnum ) : _pnum(pnum), C( pnum == Compiler ? NULL : Compile::current()) { function in class:Phase
[all...]
H A Dphase.hpp33 //------------------------------Phase------------------------------------------
37 // guide transforming the program. When the Phase is deleted, so is any
38 // cached analysis info. This basic Phase class mostly contains timing and
40 class Phase : public StackObj { class in inherits:StackObj
62 enum PhaseNumber _pnum; // Phase number (for stat gathering)
77 // ConnectionGraph can't be Phase since it is used after EA done.
118 Phase( PhaseNumber pnum );
H A Dlive.hpp43 class PhaseLive : public Phase {
H A Dstringopts.hpp33 class PhaseStringOpts : public Phase {
H A Dcoalesce.hpp38 class PhaseCoalesce : public Phase {
44 PhaseCoalesce( PhaseChaitin &chaitin ) : Phase(Coalesce), _phc(chaitin) { }
H A Dmacro.hpp36 class PhaseMacroExpand : public Phase {
120 PhaseMacroExpand(PhaseIterGVN &igvn) : Phase(Macro_Expand), _igvn(igvn) {
H A Dregalloc.cpp40 Phase(Register_Allocation), _cfg(cfg), _matcher(matcher),
H A Dregalloc.hpp41 class PhaseRegAlloc : public Phase {
H A DphaseX.hpp145 class PhaseRemoveUseless : public Phase {
157 // Phases that analyze, then transform. Constructing the Phase object does any
159 // transformation pass. When the Phase object is deleted the cached analysis
161 class PhaseTransform : public Phase {
337 // Phase infrastructure to support values
378 // Phase for performing local, pessimistic GVN-style optimizations.
400 // Phase for iteratively performing local, pessimistic GVN-style optimizations.
515 // Phase for performing global Conditional Constant Propagation.
554 // Phase for performing peephole optimizations on register allocated basic blocks.
H A Dblock.hpp349 class PhaseCFG : public Phase {
713 class PhaseBlockLayout : public Phase {
H A Dchaitin.hpp224 class PhaseIFG : public Phase {
H A Dlive.cpp47 PhaseLive::PhaseLive( const PhaseCFG &cfg, LRG_List &names, Arena *arena ) : Phase(LIVE), _cfg(cfg), _names(names), _arena(arena), _live(0) {
H A DphaseX.cpp384 PhaseRemoveUseless::PhaseRemoveUseless( PhaseGVN *gvn, Unique_Node_List *worklist ) : Phase(Remove_Useless),
424 PhaseTransform::PhaseTransform( PhaseNumber pnum ) : Phase(pnum),
440 PhaseTransform::PhaseTransform( Arena *arena, PhaseNumber pnum ) : Phase(pnum),
457 PhaseTransform::PhaseTransform( PhaseTransform *pt, PhaseNumber pnum ) : Phase(pnum),
H A Dblock.cpp366 Phase(CFG),
1383 Phase(BlockLayout),
H A Dcompile.hpp88 class Compile : public Phase {
1037 // Phase control:
H A DgraphKit.cpp46 : Phase(Phase::Parser),
57 : Phase(Phase::Parser),
H A DgraphKit.hpp56 class GraphKit : public Phase {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DPhase.java33 public class Phase extends VMObject { class in inherits:VMObject
43 Type type = db.lookupType("Phase");
47 public Phase(Address addr) { method in class:Phase
H A DPhaseRegAlloc.java33 public class PhaseRegAlloc extends Phase {
H A DPhaseCFG.java34 public class PhaseCFG extends Phase {
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DPhase.java29 public class Phase extends BasicLogEvent { class in inherits:BasicLogEvent
36 Phase(String n, double s, int nodes, int live) { method in class:Phase
H A DCompilation.java45 private ArrayList<Phase> phases = new ArrayList<Phase>(4);
52 Phase getPhase(String s) {
53 for (Phase p : getPhases()) {
211 public ArrayList<Phase> getPhases() {
215 public void setPhases(ArrayList<Phase> phases) {
H A DLogParser.java147 private Stack<Phase> phaseStack = new Stack<Phase>();
268 Phase p = new Phase(search(atts, "name"),
274 Phase p = phaseStack.pop();
H A DLogCompilation.java128 for (Phase phase : c.getPhases()) {
166 out.println("Phase times:");
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmslut.c1289 int Phase = 0, NextPhase; local
1291 From16ToFloat(In, &Storage[Phase][0], lut ->InputChannels);
1297 NextPhase = Phase ^ 1;
1298 mpe ->EvalPtr(&Storage[Phase][0], &Storage[NextPhase][0], mpe);
1299 Phase = NextPhase;
1303 FromFloatTo16(&Storage[Phase][0], Out, lut ->OutputChannels);
1315 int Phase = 0, NextPhase; local
1317 memmove(&Storage[Phase][0], In, lut ->InputChannels * sizeof(cmsFloat32Number));
1323 NextPhase = Phase ^ 1;
1324 mpe ->EvalPtr(&Storage[Phase][
[all...]

Completed in 1490 milliseconds

12