Home
last modified time | relevance | path

Searched defs:DOTGraphTraits (Results 1 – 13 of 13) sorted by relevance

/external/llvm/lib/CodeGen/
DScheduleDAGPrinter.cpp32 struct DOTGraphTraits<ScheduleDAG*> : public DefaultDOTGraphTraits { struct
34 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} in DOTGraphTraits() function
36 static std::string getGraphName(const ScheduleDAG *G) { in getGraphName()
40 static bool renderGraphFromBottomUp() { in renderGraphFromBottomUp()
44 static bool isNodeHidden(const SUnit *Node) { in isNodeHidden()
48 static bool hasNodeAddressLabel(const SUnit *Node, in hasNodeAddressLabel()
55 static std::string getEdgeAttributes(const SUnit *Node, in getEdgeAttributes()
67 static std::string getNodeAttributes(const SUnit *N, in getNodeAttributes()
72 static void addCustomGraphFeatures(ScheduleDAG *G, in addCustomGraphFeatures()
DMachineFunction.cpp360 struct DOTGraphTraits<const MachineFunction*> : public DefaultDOTGraphTraits { struct
362 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} in DOTGraphTraits() argument
364 static std::string getGraphName(const MachineFunction *F) { in getGraphName()
368 std::string getNodeLabel(const MachineBasicBlock *Node, in getNodeLabel()
DMachineScheduler.cpp2329 struct DOTGraphTraits<ScheduleDAGMI*> : public DefaultDOTGraphTraits { struct
2331 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} in DOTGraphTraits() argument
2333 static std::string getGraphName(const ScheduleDAG *G) { in getGraphName()
2337 static bool renderGraphFromBottomUp() { in renderGraphFromBottomUp()
2341 static bool isNodeHidden(const SUnit *Node) { in isNodeHidden()
2345 static bool hasNodeAddressLabel(const SUnit *Node, in hasNodeAddressLabel()
2352 static std::string getEdgeAttributes(const SUnit *Node, in getEdgeAttributes()
2362 static std::string getNodeLabel(const SUnit *SU, const ScheduleDAG *G) { in getNodeLabel()
2368 static std::string getNodeDescription(const SUnit *SU, const ScheduleDAG *G) { in getNodeDescription()
2372 static std::string getNodeAttributes(const SUnit *N, in getNodeAttributes()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGPrinter.cpp33 struct DOTGraphTraits<SelectionDAG*> : public DefaultDOTGraphTraits { struct
35 explicit DOTGraphTraits(bool isSimple=false) : in DOTGraphTraits() function
38 static bool hasEdgeDestLabels() { in hasEdgeDestLabels()
42 static unsigned numEdgeDestLabels(const void *Node) { in numEdgeDestLabels()
46 static std::string getEdgeDestLabel(const void *Node, unsigned i) { in getEdgeDestLabel()
51 static std::string getEdgeSourceLabel(const void *Node, EdgeIter I) { in getEdgeSourceLabel()
59 static bool edgeTargetsEdgeSource(const void *Node, EdgeIter I) { in edgeTargetsEdgeSource()
67 static EdgeIter getEdgeTarget(const void *Node, EdgeIter I) { in getEdgeTarget()
74 static std::string getGraphName(const SelectionDAG *G) { in getGraphName()
78 static bool renderGraphFromBottomUp() { in renderGraphFromBottomUp()
[all …]
/external/llvm/lib/Analysis/
DDomPrinter.cpp29 struct DOTGraphTraits<DomTreeNode*> : public DefaultDOTGraphTraits { struct
31 DOTGraphTraits (bool isSimple=false) in DOTGraphTraits() function
34 std::string getNodeLabel(DomTreeNode *Node, DomTreeNode *Graph) { in getNodeLabel()
52 struct DOTGraphTraits<DominatorTree*> : public DOTGraphTraits<DomTreeNode*> { struct
54 DOTGraphTraits (bool isSimple=false) in DOTGraphTraits() function
57 static std::string getGraphName(DominatorTree *DT) { in getGraphName()
61 std::string getNodeLabel(DomTreeNode *Node, DominatorTree *G) { in getNodeLabel()
67 struct DOTGraphTraits<PostDominatorTree*> struct
70 DOTGraphTraits (bool isSimple=false) in DOTGraphTraits() argument
73 static std::string getGraphName(PostDominatorTree *DT) { in getGraphName()
[all …]
DRegionPrinter.cpp36 struct DOTGraphTraits<RegionNode*> : public DefaultDOTGraphTraits { struct
38 DOTGraphTraits (bool isSimple=false) in DOTGraphTraits() argument
41 std::string getNodeLabel(RegionNode *Node, RegionNode *Graph) { in getNodeLabel()
59 struct DOTGraphTraits<RegionInfo*> : public DOTGraphTraits<RegionNode*> { struct
61 DOTGraphTraits (bool isSimple=false) in DOTGraphTraits() argument
64 static std::string getGraphName(RegionInfo *DT) { in getGraphName()
68 std::string getNodeLabel(RegionNode *Node, RegionInfo *G) { in getNodeLabel()
73 std::string getEdgeAttributes(RegionNode *srcNode, in getEdgeAttributes()
101 static void printRegionCluster(const Region *R, GraphWriter<RegionInfo*> &GW, in printRegionCluster()
134 static void addCustomGraphFeatures(const RegionInfo* RI, in addCustomGraphFeatures()
/external/clang/lib/AST/
DStmtViz.cpp32 struct DOTGraphTraits<const Stmt*> : public DefaultDOTGraphTraits { struct
33 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} in DOTGraphTraits() argument
35 static std::string getNodeLabel(const Stmt* Node, const Stmt* Graph) { in getNodeLabel()
/external/llvm/lib/Analysis/IPA/
DCallPrinter.cpp26 struct DOTGraphTraits<CallGraph*> : public DefaultDOTGraphTraits { struct
27 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} in DOTGraphTraits() argument
29 static std::string getGraphName(CallGraph *Graph) { in getGraphName()
33 std::string getNodeLabel(CallGraphNode *Node, CallGraph *Graph) { in getNodeLabel()
/external/clang/lib/Analysis/
DCallGraph.cpp221 struct DOTGraphTraits<const CallGraph*> : public DefaultDOTGraphTraits { struct
223 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} in DOTGraphTraits() argument
225 static std::string getNodeLabel(const CallGraphNode *Node, in getNodeLabel()
DCFG.cpp4105 struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits { struct
4107 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} in DOTGraphTraits() argument
4109 static std::string getNodeLabel(const CFGBlock *Node, const CFG* Graph) { in getNodeLabel()
/external/clang/lib/Serialization/
DModuleManager.cpp383 struct DOTGraphTraits<ModuleManager> : public DefaultDOTGraphTraits { struct
384 explicit DOTGraphTraits(bool IsSimple = false) in DOTGraphTraits() function
387 static bool renderGraphFromBottomUp() { in renderGraphFromBottomUp()
391 std::string getNodeLabel(ModuleFile *M, const ModuleManager&) { in getNodeLabel()
/external/llvm/include/llvm/Support/
DDOTGraphTraits.h160 struct DOTGraphTraits : public DefaultDOTGraphTraits { struct
161 DOTGraphTraits (bool simple=false) : DefaultDOTGraphTraits (simple) {} in DefaultDOTGraphTraits() argument
/external/clang/lib/StaticAnalyzer/Core/
DExprEngine.cpp2057 struct DOTGraphTraits<ExplodedNode*> : struct
2060 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} in DOTGraphTraits() argument
2064 static std::string getNodeAttributes(const ExplodedNode *N, void*) { in getNodeAttributes()
2085 static void printLocation(raw_ostream &Out, SourceLocation SLoc) { in printLocation()
2095 static std::string getNodeLabel(const ExplodedNode *N, void*){ in getNodeLabel()