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

  /external/clang/include/clang/Serialization/
ModuleManager.h 151 void viewGraph();
  /external/llvm/lib/CodeGen/
ScheduleDAGPrinter.cpp 1 //===-- ScheduleDAGPrinter.cpp - Implement ScheduleDAG::viewGraph() -------===//
10 // This implements the ScheduleDAG::viewGraph method.
82 /// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
85 void ScheduleDAG::viewGraph() {
89 ViewGraph(this, "dag." + MF.getFunction()->getNameStr(), false,
93 ViewGraph(this, "dag." + MF.getFunction()->getNameStr(), false,
96 errs() << "ScheduleDAG::viewGraph is only available in debug builds on "
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGPrinter.cpp 1 //===-- SelectionDAGPrinter.cpp - Implement SelectionDAG::viewGraph() -----===//
10 // This implements the SelectionDAG::viewGraph method.
145 /// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
148 void SelectionDAG::viewGraph(const std::string &Title) {
151 ViewGraph(this, "dag." + getMachineFunction().getFunction()->getNameStr(),
154 errs() << "SelectionDAG::viewGraph is only available in debug builds on "
161 void SelectionDAG::viewGraph() {
162 viewGraph("");
SelectionDAGISel.cpp 487 if (ViewDAGCombine1) CurDAG->viewGraph("dag-combine1 input for " + BlockName);
500 if (ViewLegalizeTypesDAGs) CurDAG->viewGraph("legalize-types input for " +
514 CurDAG->viewGraph("dag-combine-lt input for " + BlockName);
539 CurDAG->viewGraph("dag-combine-lv input for " + BlockName);
552 if (ViewLegalizeDAGs) CurDAG->viewGraph("legalize input for " + BlockName);
562 if (ViewDAGCombine2) CurDAG->viewGraph("dag-combine2 input for " + BlockName);
576 if (ViewISelDAGs) CurDAG->viewGraph("isel input for " + BlockName);
588 if (ViewSchedDAGs) CurDAG->viewGraph("scheduler input for " + BlockName);
598 if (ViewSUnitDAGs) Scheduler->viewGraph();
    [all...]
  /external/clang/lib/Serialization/
ModuleManager.cpp 250 void ModuleManager::viewGraph() {
251 llvm::ViewGraph(*this, "Modules");
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 517 /// viewGraph - Pop up a GraphViz/gv window with the ScheduleDAG rendered
520 void viewGraph();
SelectionDAG.h 208 /// viewGraph - Pop up a GraphViz/gv window with the DAG rendered using 'dot'.
210 void viewGraph(const std::string &Title);
211 void viewGraph();
    [all...]

Completed in 667 milliseconds