Searched refs:DOTGraphTraits (Results 1 - 17 of 17) sorted by relevance

/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DDomPrinter.cpp29 struct DOTGraphTraits<DomTreeNode*> : public DefaultDOTGraphTraits { struct in namespace:llvm
31 DOTGraphTraits (bool isSimple=false) function in struct:llvm::DOTGraphTraits
43 return DOTGraphTraits<const Function*>
46 return DOTGraphTraits<const Function*>
52 struct DOTGraphTraits<DominatorTree*> : public DOTGraphTraits<DomTreeNode*> { struct in namespace:llvm
54 DOTGraphTraits (bool isSimple=false) function in struct:llvm::DOTGraphTraits
55 : DOTGraphTraits<DomTreeNode*>(isSimple) {}
62 return DOTGraphTraits<DomTreeNode*>::getNodeLabel(Node, G->getRootNode());
67 struct DOTGraphTraits<PostDominatorTre struct in namespace:llvm
70 DOTGraphTraits (bool isSimple=false) function in struct:llvm::DOTGraphTraits
[all...]
H A DRegionPrinter.cpp36 struct DOTGraphTraits<RegionNode*> : public DefaultDOTGraphTraits { struct in namespace:llvm
38 DOTGraphTraits (bool isSimple=false) function in struct:llvm::DOTGraphTraits
47 return DOTGraphTraits<const Function*>
50 return DOTGraphTraits<const Function*>
59 struct DOTGraphTraits<RegionInfo*> : public DOTGraphTraits<RegionNode*> { struct in namespace:llvm
61 DOTGraphTraits (bool isSimple=false) function in struct:llvm::DOTGraphTraits
62 : DOTGraphTraits<RegionNode*>(isSimple) {}
69 return DOTGraphTraits<RegionNode*>::getNodeLabel(Node,
H A DBlockFrequencyInfo.cpp73 struct DOTGraphTraits<BlockFrequencyInfo*> : public DefaultDOTGraphTraits { struct in namespace:llvm
74 explicit DOTGraphTraits(bool isSimple=false) : function in struct:llvm::DOTGraphTraits
/freebsd-9.3-release/contrib/llvm/lib/Analysis/IPA/
H A DCallPrinter.cpp26 struct DOTGraphTraits<CallGraph*> : public DefaultDOTGraphTraits { struct in namespace:llvm
27 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} function in struct:llvm::DOTGraphTraits
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DStmtViz.cpp32 struct DOTGraphTraits<const Stmt*> : public DefaultDOTGraphTraits { struct in namespace:llvm
33 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} function in struct:llvm::DOTGraphTraits
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DScheduleDAGPrinter.cpp32 struct DOTGraphTraits<ScheduleDAG*> : public DefaultDOTGraphTraits { struct in namespace:llvm
34 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} function in struct:llvm::DOTGraphTraits
79 std::string DOTGraphTraits<ScheduleDAG*>::getNodeLabel(const SUnit *SU,
H A DMachineFunction.cpp366 struct DOTGraphTraits<const MachineFunction*> : public DefaultDOTGraphTraits { struct in namespace:llvm
368 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} function in struct:llvm::DOTGraphTraits
H A DMachineScheduler.cpp3062 struct DOTGraphTraits<ScheduleDAGMI*> : public DefaultDOTGraphTraits { struct in namespace:llvm
3064 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} function in struct:llvm::DOTGraphTraits
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DDOTGraphTraits.h25 /// all of the DOTGraphTraits methods. If a specialization does not need to
155 /// DOTGraphTraits - Template class that can be specialized to customize how
160 struct DOTGraphTraits : public DefaultDOTGraphTraits { struct in namespace:llvm
161 DOTGraphTraits (bool simple=false) : DefaultDOTGraphTraits (simple) {} function in struct:llvm::DOTGraphTraits
H A DGraphWriter.h18 // of the DOTGraphTraits template if they want to customize the graphs output in
27 #include "llvm/Support/DOTGraphTraits.h"
61 typedef DOTGraphTraits<GraphType> DOTTraits;
108 DOTGraphTraits<GraphType>::addCustomGraphFeatures(G, *this);
/freebsd-9.3-release/contrib/llvm/include/llvm/Analysis/
H A DDOTGraphTraitsPass.h30 std::string GraphName = DOTGraphTraits<Analysis*>::getGraphName(Graph);
61 std::string GraphName = DOTGraphTraits<Analysis*>::getGraphName(Graph);
90 std::string Title = DOTGraphTraits<Analysis*>::getGraphName(Graph);
120 std::string Title = DOTGraphTraits<Analysis*>::getGraphName(Graph);
H A DCFGPrinter.h27 struct DOTGraphTraits<const Function*> : public DefaultDOTGraphTraits { struct in namespace:llvm
29 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} function in struct:llvm::DOTGraphTraits
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp33 struct DOTGraphTraits<SelectionDAG*> : public DefaultDOTGraphTraits { struct in namespace:llvm
35 explicit DOTGraphTraits(bool isSimple=false) : function in struct:llvm::DOTGraphTraits
136 std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node,
138 return DOTGraphTraits<SelectionDAG*>::getSimpleNodeLabel(Node, G);
278 O << DOTGraphTraits<SelectionDAG*>
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Analysis/
H A DCallGraph.cpp221 struct DOTGraphTraits<const CallGraph*> : public DefaultDOTGraphTraits { struct in namespace:llvm
223 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} function in struct:llvm::DOTGraphTraits
H A DCFG.cpp4108 struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits { struct in namespace:llvm
4110 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} function in struct:llvm::DOTGraphTraits
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DModuleManager.cpp428 struct DOTGraphTraits<ModuleManager> : public DefaultDOTGraphTraits { struct in namespace:llvm
429 explicit DOTGraphTraits(bool IsSimple = false) function in struct:llvm::DOTGraphTraits
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp2223 struct DOTGraphTraits<ExplodedNode*> : struct in namespace:llvm
2226 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} function in struct:llvm::DOTGraphTraits

Completed in 231 milliseconds