HomeSort by relevance Sort by last modified time
    Searched refs:DOTGraphTraits (Results 1 - 18 of 18) sorted by null

  /external/llvm/lib/Analysis/
DomPrinter.cpp 29 struct DOTGraphTraits<DomTreeNode*> : public DefaultDOTGraphTraits {
31 DOTGraphTraits (bool isSimple=false)
43 return DOTGraphTraits<const Function*>
46 return DOTGraphTraits<const Function*>
52 struct DOTGraphTraits<DominatorTree*> : public DOTGraphTraits<DomTreeNode*> {
54 DOTGraphTraits (bool isSimple=false)
55 : DOTGraphTraits<DomTreeNode*>(isSimple) {}
62 return DOTGraphTraits<DomTreeNode*>::getNodeLabel(Node, G->getRootNode());
67 struct DOTGraphTraits<PostDominatorTree*
    [all...]
CallPrinter.cpp 25 template <> struct DOTGraphTraits<CallGraph *> : public DefaultDOTGraphTraits {
26 DOTGraphTraits(bool isSimple = false) : DefaultDOTGraphTraits(isSimple) {}
RegionPrinter.cpp 39 struct DOTGraphTraits<RegionNode*> : public DefaultDOTGraphTraits {
41 DOTGraphTraits (bool isSimple=false)
50 return DOTGraphTraits<const Function*>
53 return DOTGraphTraits<const Function*>
62 struct DOTGraphTraits<RegionInfo *> : public DOTGraphTraits<RegionNode *> {
64 DOTGraphTraits (bool isSimple = false)
65 : DOTGraphTraits<RegionNode*>(isSimple) {}
70 return DOTGraphTraits<RegionNode *>::getNodeLabel(
235 std::string GraphName = DOTGraphTraits<RegionInfo *>::getGraphName(RI)
    [all...]
BlockFrequencyInfo.cpp 75 struct DOTGraphTraits<BlockFrequencyInfo*> : public DefaultDOTGraphTraits {
76 explicit DOTGraphTraits(bool isSimple=false) :
  /external/clang/lib/AST/
StmtViz.cpp 32 struct DOTGraphTraits<const Stmt*> : public DefaultDOTGraphTraits {
33 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
  /external/llvm/lib/CodeGen/
ScheduleDAGPrinter.cpp 30 struct DOTGraphTraits<ScheduleDAG*> : public DefaultDOTGraphTraits {
32 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
80 std::string DOTGraphTraits<ScheduleDAG*>::getNodeLabel(const SUnit *SU,
MachineBlockFrequencyInfo.cpp 81 struct DOTGraphTraits<MachineBlockFrequencyInfo*> :
83 explicit DOTGraphTraits(bool isSimple=false) :
MachineFunction.cpp 409 struct DOTGraphTraits<const MachineFunction*> : public DefaultDOTGraphTraits {
411 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
    [all...]
MachineScheduler.cpp     [all...]
  /external/llvm/include/llvm/Support/
DOTGraphTraits.h 1 //===-- llvm/Support/DotGraphTraits.h - Customize .dot output ---*- C++ -*-===//
25 /// all of the DOTGraphTraits methods. If a specialization does not need to
156 /// DOTGraphTraits - Template class that can be specialized to customize how
161 struct DOTGraphTraits : public DefaultDOTGraphTraits {
162 DOTGraphTraits (bool simple=false) : DefaultDOTGraphTraits (simple) {}
GraphWriter.h 18 // of the DOTGraphTraits template if they want to customize the graphs output in
28 #include "llvm/Support/DOTGraphTraits.h"
60 typedef DOTGraphTraits<GraphType> DOTTraits;
107 DOTGraphTraits<GraphType>::addCustomGraphFeatures(G, *this);
  /external/llvm/include/llvm/Analysis/
DOTGraphTraitsPass.h 56 std::string GraphName = DOTGraphTraits<GraphT>::getGraphName(Graph);
104 std::string GraphName = DOTGraphTraits<GraphT>::getGraphName(Graph);
135 std::string Title = DOTGraphTraits<GraphT>::getGraphName(Graph);
167 std::string Title = DOTGraphTraits<GraphT>::getGraphName(Graph);
CFGPrinter.h 26 struct DOTGraphTraits<const Function*> : public DefaultDOTGraphTraits {
28 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGPrinter.cpp 34 struct DOTGraphTraits<SelectionDAG*> : public DefaultDOTGraphTraits {
36 explicit DOTGraphTraits(bool isSimple=false) :
144 std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node,
146 return DOTGraphTraits<SelectionDAG*>::getSimpleNodeLabel(Node, G);
286 O << DOTGraphTraits<SelectionDAG*>
  /external/clang/lib/Analysis/
CallGraph.cpp 212 struct DOTGraphTraits<const CallGraph*> : public DefaultDOTGraphTraits {
214 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
CFG.cpp     [all...]
  /external/clang/lib/Serialization/
ModuleManager.cpp 459 struct DOTGraphTraits<ModuleManager> : public DefaultDOTGraphTraits {
460 explicit DOTGraphTraits(bool IsSimple = false)
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]

Completed in 758 milliseconds