HomeSort by relevance Sort by last modified time
    Searched refs:ViewGraph (Results 1 - 25 of 40) sorted by null

1 2

  /external/swiftshader/third_party/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 "
EdgeBundles.cpp 74 ViewGraph(*this, "EdgeBundles");
  /external/clang/lib/AST/
StmtViz.cpp 23 llvm::ViewGraph(this,"AST");
  /external/swiftshader/third_party/LLVM/lib/Analysis/
CFGPrinter.cpp 146 ViewGraph(this, "cfg" + getNameStr());
155 ViewGraph(this, "cfg" + getNameStr(), true);
  /external/llvm/lib/Analysis/
CFGPrinter.cpp 146 ViewGraph(this, "cfg" + getName());
155 ViewGraph(this, "cfg" + getName(), true);
BlockFrequencyInfo.cpp 175 ViewGraph(const_cast<BlockFrequencyInfo *>(this), "BlockFrequencyDAGs");
RegionPrinter.cpp 237 llvm::ViewGraph(RI, "reg", ShortNames,
  /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());
EdgeBundles.cpp 96 ViewGraph(*this, "EdgeBundles");
MachineBlockFrequencyInfo.cpp 159 ViewGraph(const_cast<MachineBlockFrequencyInfo *>(this),
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DOTGraphTraitsPass.h 35 ViewGraph(Graph, Name, Simple, Title);
  /external/swiftshader/third_party/llvm-7.0/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(const Twine &Name, const Twine &Title) {
88 ViewGraph(this, Name, false, Title);
90 errs() << "ScheduleDAG::viewGraph is only available in debug builds on "
96 void ScheduleDAG::viewGraph() {
97 viewGraph(getDAGName(), "Scheduling-Units Graph for " + getDAGName());
EdgeBundles.cpp 101 ViewGraph(*this, "EdgeBundles");
MachineBlockFrequencyInfo.cpp 217 ViewGraph(const_cast<MachineBlockFrequencyInfo *>(this), Name, isSimple);
  /external/llvm/include/llvm/Analysis/
DOTGraphTraitsPass.h 59 ViewGraph(Graph, Name, IsSimple, Title);
137 ViewGraph(Graph, Name, IsSimple, Title);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DOTGraphTraitsPass.h 59 ViewGraph(Graph, Name, IsSimple, Title);
137 ViewGraph(Graph, Name, IsSimple, Title);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
CFGPrinter.cpp 174 ViewGraph(this, "cfg" + getName());
185 ViewGraph(this, "cfg" + getName(), true);
DomPrinter.cpp 83 void DominatorTree::viewGraph(const Twine &Name, const Twine &Title) {
85 ViewGraph(this, Name, false, Title);
91 void DominatorTree::viewGraph() {
93 this->viewGraph("domtree", "Dominator Tree for function");
RegionPrinter.cpp 237 llvm::ViewGraph(RI, "reg", ShortNames,
  /external/clang/lib/Analysis/
CallGraph.cpp 195 void CallGraph::viewGraph() const {
196 llvm::ViewGraph(this, "CallGraph");
  /external/clang/lib/StaticAnalyzer/Checkers/
DebugCheckers.cpp 129 CG.viewGraph();
206 Eng.ViewGraph(0);
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGPrinter.cpp 1 //===-- SelectionDAGPrinter.cpp - Implement SelectionDAG::viewGraph() -----===//
10 // This implements the SelectionDAG::viewGraph method.
150 /// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
153 void SelectionDAG::viewGraph(const std::string &Title) {
156 ViewGraph(this, "dag." + getMachineFunction().getName(),
159 errs() << "SelectionDAG::viewGraph is only available in debug builds on "
166 void SelectionDAG::viewGraph() {
167 viewGraph("");
  /external/swiftshader/third_party/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("");
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGPrinter.cpp 1 //===-- SelectionDAGPrinter.cpp - Implement SelectionDAG::viewGraph() -----===//
10 // This implements the SelectionDAG::viewGraph method.
148 /// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
151 void SelectionDAG::viewGraph(const std::string &Title) {
154 ViewGraph(this, "dag." + getMachineFunction().getName(),
157 errs() << "SelectionDAG::viewGraph is only available in debug builds on "
164 void SelectionDAG::viewGraph() {
165 viewGraph("");
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 149 void ViewGraph(bool trim = false);
153 void ViewGraph(ArrayRef<const ExplodedNode*> Nodes);

Completed in 1540 milliseconds

1 2