Searched refs:viewGraph (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/
H A DScheduleDAGPrinter.cpp1 //===-- ScheduleDAGPrinter.cpp - Implement ScheduleDAG::viewGraph() -------===//
10 // This implements the ScheduleDAG::viewGraph method.
80 /// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
83 void ScheduleDAG::viewGraph(const Twine &Name, const Twine &Title) { function in class:ScheduleDAG
88 errs() << "ScheduleDAG::viewGraph is only available in debug builds on "
94 void ScheduleDAG::viewGraph() { function in class:ScheduleDAG
95 viewGraph(getDAGName(), "Scheduling-Units Graph for " + getDAGName());
H A DMachineScheduler.cpp473 if (ViewMISchedDAGs) viewGraph();
503 if (ViewMISchedDAGs) viewGraph();
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp1 //===-- SelectionDAGPrinter.cpp - Implement SelectionDAG::viewGraph() -----===//
10 // This implements the SelectionDAG::viewGraph method.
142 /// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
145 void SelectionDAG::viewGraph(const std::string &Title) { function in class:SelectionDAG
151 errs() << "SelectionDAG::viewGraph is only available in debug builds on "
158 void SelectionDAG::viewGraph() { function in class:SelectionDAG
159 viewGraph("");
H A DSelectionDAGISel.cpp568 if (ViewDAGCombine1) CurDAG->viewGraph("dag-combine1 input for " + BlockName);
581 if (ViewLegalizeTypesDAGs) CurDAG->viewGraph("legalize-types input for " +
595 CurDAG->viewGraph("dag-combine-lt input for " + BlockName);
620 CurDAG->viewGraph("dag-combine-lv input for " + BlockName);
633 if (ViewLegalizeDAGs) CurDAG->viewGraph("legalize input for " + BlockName);
643 if (ViewDAGCombine2) CurDAG->viewGraph("dag-combine2 input for " + BlockName);
657 if (ViewISelDAGs) CurDAG->viewGraph("isel input for " + BlockName);
669 if (ViewSchedDAGs) CurDAG->viewGraph("scheduler input for " + BlockName);
679 if (ViewSUnitDAGs) Scheduler->viewGraph();
/macosx-10.10/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DScheduleDAG.h548 /// viewGraph - Pop up a GraphViz/gv window with the ScheduleDAG rendered
551 void viewGraph(const Twine &Name, const Twine &Title);
552 void viewGraph();
H A DSelectionDAG.h248 /// viewGraph - Pop up a GraphViz/gv window with the DAG rendered using 'dot'.
250 void viewGraph(const std::string &Title);
251 void viewGraph();

Completed in 300 milliseconds