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.
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/clang/lib/Analysis/
CallGraph.cpp 198 void CallGraph::viewGraph() const {
199 llvm::ViewGraph(this, "CallGraph");
  /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("");
  /external/clang/lib/Serialization/
ModuleManager.cpp 460 void ModuleManager::viewGraph() {
461 llvm::ViewGraph(*this, "Modules");

Completed in 176 milliseconds