HomeSort by relevance Sort by last modified time
    Searched refs:viewGraph (Results 1 - 12 of 12) sorted by null

  /external/llvm/lib/CodeGen/
ScheduleDAGPrinter.cpp 1 //===-- ScheduleDAGPrinter.cpp - Implement ScheduleDAG::viewGraph() -------===//
10 // This implements the ScheduleDAG::viewGraph method.
84 /// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
87 void ScheduleDAG::viewGraph(const Twine &Name, const Twine &Title) {
90 ViewGraph(this, Name, false, Title);
92 errs() << "ScheduleDAG::viewGraph is only available in debug builds on "
98 void ScheduleDAG::viewGraph() {
99 viewGraph(getDAGName(), "Scheduling-Units Graph for " + getDAGName());
MachineScheduler.cpp 536 if (ViewMISchedDAGs) viewGraph();
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGPrinter.cpp 1 //===-- 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) {
148 ViewGraph(this, "dag." + getMachineFunction().getName(),
151 errs() << "SelectionDAG::viewGraph is only available in debug builds on "
158 void SelectionDAG::viewGraph() {
159 viewGraph("");
SelectionDAGISel.cpp 585 if (ViewDAGCombine1) CurDAG->viewGraph("dag-combine1 input for " + BlockName);
598 if (ViewLegalizeTypesDAGs) CurDAG->viewGraph("legalize-types input for " +
612 CurDAG->viewGraph("dag-combine-lt input for " + BlockName);
637 CurDAG->viewGraph("dag-combine-lv input for " + BlockName);
650 if (ViewLegalizeDAGs) CurDAG->viewGraph("legalize input for " + BlockName);
660 if (ViewDAGCombine2) CurDAG->viewGraph("dag-combine2 input for " + BlockName);
674 if (ViewISelDAGs) CurDAG->viewGraph("isel input for " + BlockName);
686 if (ViewSchedDAGs) CurDAG->viewGraph("scheduler input for " + BlockName);
696 if (ViewSUnitDAGs) Scheduler->viewGraph();
    [all...]
  /external/clang/include/clang/Serialization/
ModuleManager.h 226 void viewGraph();
  /external/llvm/include/llvm/CodeGen/
MachineScheduler.h 328 void viewGraph(const Twine &Name, const Twine &Title) LLVM_OVERRIDE;
329 void viewGraph() LLVM_OVERRIDE;
ScheduleDAG.h 587 /// viewGraph - Pop up a GraphViz/gv window with the ScheduleDAG rendered
590 virtual void viewGraph(const Twine &Name, const Twine &Title);
591 virtual void viewGraph();
SelectionDAG.h 245 /// viewGraph - Pop up a GraphViz/gv window with the DAG rendered using 'dot'.
247 void viewGraph(const std::string &Title);
248 void viewGraph();
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DebugCheckers.cpp 119 CG.viewGraph();
  /external/clang/include/clang/Analysis/
CallGraph.h 91 void viewGraph() const;
  /external/clang/lib/Analysis/
CallGraph.cpp 204 void CallGraph::viewGraph() const {
205 llvm::ViewGraph(this, "CallGraph");
  /external/clang/lib/Serialization/
ModuleManager.cpp 397 void ModuleManager::viewGraph() {
398 llvm::ViewGraph(*this, "Modules");

Completed in 212 milliseconds