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.
83 /// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
86 void ScheduleDAG::viewGraph(const Twine &Name, const Twine &Title) {
89 ViewGraph(this, Name, false, Title);
91 errs() << "ScheduleDAG::viewGraph is only available in debug builds on "
97 void ScheduleDAG::viewGraph() {
98 viewGraph(getDAGName(), "Scheduling-Units Graph for " + getDAGName());
MachineScheduler.cpp 660 if (ViewMISchedDAGs) viewGraph();
    [all...]
  /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().getName(),
152 errs() << "SelectionDAG::viewGraph is only available in debug builds on "
159 void SelectionDAG::viewGraph() {
160 viewGraph("");
SelectionDAGISel.cpp 668 if (ViewDAGCombine1) CurDAG->viewGraph("dag-combine1 input for " + BlockName);
681 if (ViewLegalizeTypesDAGs) CurDAG->viewGraph("legalize-types input for " +
697 CurDAG->viewGraph("dag-combine-lt input for " + BlockName);
723 CurDAG->viewGraph("dag-combine-lv input for " + BlockName);
736 if (ViewLegalizeDAGs) CurDAG->viewGraph("legalize input for " + BlockName);
746 if (ViewDAGCombine2) CurDAG->viewGraph("dag-combine2 input for " + BlockName);
760 if (ViewISelDAGs) CurDAG->viewGraph("isel input for " + BlockName);
772 if (ViewSchedDAGs) CurDAG->viewGraph("scheduler input for " + BlockName);
782 if (ViewSUnitDAGs) Scheduler->viewGraph();
    [all...]
  /external/clang/include/clang/Serialization/
ModuleManager.h 280 void viewGraph();
  /external/clang/lib/StaticAnalyzer/Checkers/
DebugCheckers.cpp 126 CG.viewGraph();
203 Eng.ViewGraph(0);
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 583 /// viewGraph - Pop up a GraphViz/gv window with the ScheduleDAG rendered
586 virtual void viewGraph(const Twine &Name, const Twine &Title);
587 virtual void viewGraph();
MachineScheduler.h 311 void viewGraph(const Twine &Name, const Twine &Title) override;
312 void viewGraph() override;
SelectionDAG.h 282 /// viewGraph - Pop up a GraphViz/gv window with the DAG rendered using 'dot'.
284 void viewGraph(const std::string &Title);
285 void viewGraph();
    [all...]
  /external/clang/include/clang/Analysis/
CallGraph.h 91 void viewGraph() const;
  /external/clang/lib/Analysis/
CallGraph.cpp 198 void CallGraph::viewGraph() const {
199 llvm::ViewGraph(this, "CallGraph");
  /external/clang/lib/Serialization/
ModuleManager.cpp 460 void ModuleManager::viewGraph() {
461 llvm::ViewGraph(*this, "Modules");

Completed in 384 milliseconds