HomeSort by relevance Sort by last modified time
    Searched defs:viewGraph (Results 1 - 5 of 5) 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 559 if (ViewMISchedDAGs) viewGraph();
    [all...]
  /external/clang/lib/Analysis/
CallGraph.cpp 204 void CallGraph::viewGraph() const {
205 llvm::ViewGraph(this, "CallGraph");
  /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("");
  /external/clang/lib/Serialization/
ModuleManager.cpp 441 void ModuleManager::viewGraph() {
442 llvm::ViewGraph(*this, "Modules");

Completed in 235 milliseconds