HomeSort by relevance Sort by last modified time
    Searched defs:viewGraph (Results 1 - 4 of 4) 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());
  /external/clang/lib/Analysis/
CallGraph.cpp 149 void CallGraph::viewGraph() const {
150 llvm::ViewGraph(this, "CallGraph");
  /external/clang/lib/Serialization/
ModuleManager.cpp 251 void ModuleManager::viewGraph() {
252 llvm::ViewGraph(*this, "Modules");
  /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("");

Completed in 98 milliseconds