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

  /external/llvm/lib/CodeGen/
ScheduleDAGPrinter.cpp 1 //===-- ScheduleDAGPrinter.cpp - Implement ScheduleDAG::viewGraph() -------===//
10 // This implements the ScheduleDAG::viewGraph method.
81 /// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
84 void ScheduleDAG::viewGraph(const Twine &Name, const Twine &Title) {
87 ViewGraph(this, Name, false, Title);
89 errs() << "ScheduleDAG::viewGraph is only available in debug builds on "
95 void ScheduleDAG::viewGraph() {
96 viewGraph(getDAGName(), "Scheduling-Units Graph for " + getDAGName());
MachineScheduler.cpp 404 if (ViewMISchedDAGs) viewGraph();
  /external/clang/include/clang/Serialization/
ModuleManager.h 153 void viewGraph();
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGPrinter.cpp 1 //===-- SelectionDAGPrinter.cpp - Implement SelectionDAG::viewGraph() -----===//
10 // This implements the SelectionDAG::viewGraph method.
143 /// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
146 void SelectionDAG::viewGraph(const std::string &Title) {
149 ViewGraph(this, "dag." + getMachineFunction().getFunction()->getName(),
152 errs() << "SelectionDAG::viewGraph is only available in debug builds on "
159 void SelectionDAG::viewGraph() {
160 viewGraph("");
SelectionDAGISel.cpp 566 if (ViewDAGCombine1) CurDAG->viewGraph("dag-combine1 input for " + BlockName);
579 if (ViewLegalizeTypesDAGs) CurDAG->viewGraph("legalize-types input for " +
593 CurDAG->viewGraph("dag-combine-lt input for " + BlockName);
618 CurDAG->viewGraph("dag-combine-lv input for " + BlockName);
631 if (ViewLegalizeDAGs) CurDAG->viewGraph("legalize input for " + BlockName);
641 if (ViewDAGCombine2) CurDAG->viewGraph("dag-combine2 input for " + BlockName);
655 if (ViewISelDAGs) CurDAG->viewGraph("isel input for " + BlockName);
667 if (ViewSchedDAGs) CurDAG->viewGraph("scheduler input for " + BlockName);
677 if (ViewSUnitDAGs) Scheduler->viewGraph();
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DebugCheckers.cpp 119 CG.viewGraph();
  /external/clang/lib/Analysis/
CallGraph.cpp 149 void CallGraph::viewGraph() const {
150 llvm::ViewGraph(this, "CallGraph");
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 525 /// viewGraph - Pop up a GraphViz/gv window with the ScheduleDAG rendered
528 void viewGraph(const Twine &Name, const Twine &Title);
529 void viewGraph();
SelectionDAG.h 210 /// viewGraph - Pop up a GraphViz/gv window with the DAG rendered using 'dot'.
212 void viewGraph(const std::string &Title);
213 void viewGraph();
    [all...]
  /external/clang/include/clang/Analysis/
CallGraph.h 103 void viewGraph() const;
  /external/clang/lib/Serialization/
ModuleManager.cpp 251 void ModuleManager::viewGraph() {
252 llvm::ViewGraph(*this, "Modules");

Completed in 877 milliseconds