/external/llvm-project/llvm/include/llvm/ADT/ |
D | GraphTraits.h | 34 template<class GraphType> 78 using NodeRef = typename GraphType::UnknownGraphTypeError; 94 template <class GraphType> 96 const GraphType &Graph; 98 inline Inverse(const GraphType &G) : Graph(G) {} in Inverse() 106 template <class GraphType> 107 iterator_range<typename GraphTraits<GraphType>::nodes_iterator> 108 nodes(const GraphType &G) { 109 return make_range(GraphTraits<GraphType>::nodes_begin(G), 110 GraphTraits<GraphType>::nodes_end(G)); [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | GraphTraits.h | 34 template<class GraphType> 78 using NodeRef = typename GraphType::UnknownGraphTypeError; 94 template <class GraphType> 96 const GraphType &Graph; 98 inline Inverse(const GraphType &G) : Graph(G) {} in Inverse() 106 template <class GraphType> 107 iterator_range<typename GraphTraits<GraphType>::nodes_iterator> 108 nodes(const GraphType &G) { 109 return make_range(GraphTraits<GraphType>::nodes_begin(G), 110 GraphTraits<GraphType>::nodes_end(G)); [all …]
|
/external/llvm/include/llvm/Support/ |
D | DOTGraphTraits.h | 44 template<typename GraphType> 45 static std::string getGraphName(const GraphType &) { return ""; } in getGraphName() 50 template<typename GraphType> 51 static std::string getGraphProperties(const GraphType &) { in getGraphProperties() 70 template<typename GraphType> 71 std::string getNodeLabel(const void *, const GraphType &) { in getNodeLabel() 78 template <typename GraphType> 79 static std::string getNodeIdentifierLabel(const void *, const GraphType &) { in getNodeIdentifierLabel() 83 template<typename GraphType> 84 static std::string getNodeDescription(const void *, const GraphType &) { in getNodeDescription() [all …]
|
D | GraphWriter.h | 55 template<typename GraphType> 58 const GraphType &G; 60 typedef DOTGraphTraits<GraphType> DOTTraits; 61 typedef GraphTraits<GraphType> GTraits; 95 GraphWriter(raw_ostream &o, const GraphType &g, bool SN) : O(o), G(g) { in GraphWriter() 107 DOTGraphTraits<GraphType>::addCustomGraphFeatures(G, *this); 310 template<typename GraphType> 311 raw_ostream &WriteGraph(raw_ostream &O, const GraphType &G, 315 GraphWriter<GraphType> W(O, G, ShortNames); 325 template <typename GraphType> [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | DOTGraphTraits.h | 43 template<typename GraphType> 44 static std::string getGraphName(const GraphType &) { return ""; } in getGraphName() 49 template<typename GraphType> 50 static std::string getGraphProperties(const GraphType &) { in getGraphProperties() 69 template<typename GraphType> 70 std::string getNodeLabel(const void *, const GraphType &) { in getNodeLabel() 77 template <typename GraphType> 78 static std::string getNodeIdentifierLabel(const void *, const GraphType &) { in getNodeIdentifierLabel() 82 template<typename GraphType> 83 static std::string getNodeDescription(const void *, const GraphType &) { in getNodeDescription() [all …]
|
D | GraphWriter.h | 65 template<typename GraphType> 68 const GraphType &G; 70 using DOTTraits = DOTGraphTraits<GraphType>; 71 using GTraits = GraphTraits<GraphType>; 110 GraphWriter(raw_ostream &o, const GraphType &g, bool SN) : O(o), G(g) { in GraphWriter() 122 DOTGraphTraits<GraphType>::addCustomGraphFeatures(G, *this); 156 for (const auto Node : nodes<GraphType>(G)) in writeNodes() 308 template<typename GraphType> 309 raw_ostream &WriteGraph(raw_ostream &O, const GraphType &G, 313 GraphWriter<GraphType> W(O, G, ShortNames); [all …]
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | DOTGraphTraits.h | 43 template<typename GraphType> 44 static std::string getGraphName(const GraphType &) { return ""; } in getGraphName() 49 template<typename GraphType> 50 static std::string getGraphProperties(const GraphType &) { in getGraphProperties() 69 template<typename GraphType> 70 std::string getNodeLabel(const void *, const GraphType &) { in getNodeLabel() 77 template <typename GraphType> 78 static std::string getNodeIdentifierLabel(const void *, const GraphType &) { in getNodeIdentifierLabel() 82 template<typename GraphType> 83 static std::string getNodeDescription(const void *, const GraphType &) { in getNodeDescription() [all …]
|
D | GraphWriter.h | 65 template<typename GraphType> 68 const GraphType &G; 70 using DOTTraits = DOTGraphTraits<GraphType>; 71 using GTraits = GraphTraits<GraphType>; 110 GraphWriter(raw_ostream &o, const GraphType &g, bool SN) : O(o), G(g) { in GraphWriter() 122 DOTGraphTraits<GraphType>::addCustomGraphFeatures(G, *this); 156 for (const auto Node : nodes<GraphType>(G)) in writeNodes() 308 template<typename GraphType> 309 raw_ostream &WriteGraph(raw_ostream &O, const GraphType &G, 313 GraphWriter<GraphType> W(O, G, ShortNames); [all …]
|
/external/llvm-project/mlir/include/mlir/IR/ |
D | RegionGraphTraits.h | 52 using GraphType = mlir::Region *; 55 static NodeRef getEntryNode(GraphType fn) { return &fn->front(); } 58 static nodes_iterator nodes_begin(GraphType fn) { 61 static nodes_iterator nodes_end(GraphType fn) { 69 using GraphType = Inverse<mlir::Region *>; 72 static NodeRef getEntryNode(GraphType fn) { return &fn.Graph->front(); } 75 static nodes_iterator nodes_begin(GraphType fn) { 78 static nodes_iterator nodes_end(GraphType fn) {
|
/external/llvm/include/llvm/ADT/ |
D | GraphTraits.h | 26 template<class GraphType> 60 typedef typename GraphType::UnknownGraphTypeError NodeType; 77 template <class GraphType> 79 const GraphType &Graph; 81 inline Inverse(const GraphType &G) : Graph(G) {} in Inverse()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | DependenceGraphBuilder.h | 28 template <class GraphType> class AbstractDependenceGraphBuilder { 33 using NodeType = typename GraphType::NodeType; 34 using EdgeType = typename GraphType::EdgeType; 40 AbstractDependenceGraphBuilder(GraphType &G, DependenceInfo &D, in AbstractDependenceGraphBuilder() 155 GraphType &Graph;
|
D | RegionInfo.h | 112 template <class GraphType>
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | DependenceGraphBuilder.h | 31 template <class GraphType> class AbstractDependenceGraphBuilder { 36 using NodeType = typename GraphType::NodeType; 37 using EdgeType = typename GraphType::EdgeType; 43 AbstractDependenceGraphBuilder(GraphType &G, DependenceInfo &D, in AbstractDependenceGraphBuilder() 180 GraphType &Graph;
|
D | RegionInfo.h | 111 template <class GraphType>
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | X86LoadValueInjectionLoadHardening.cpp | 194 using GraphType = MachineGadgetGraph; typedef 195 using Traits = llvm::GraphTraits<GraphType *>; 203 std::string getNodeLabel(NodeRef Node, GraphType *) { in getNodeLabel() 213 static std::string getNodeAttributes(NodeRef Node, GraphType *) { in getNodeAttributes() 223 GraphType *) { in getEdgeAttributes()
|
/external/llvm-project/mlir/lib/Transforms/ |
D | ViewOpGraph.cpp | 31 using GraphType = Block *; typedef
|
/external/llvm/include/llvm/IR/ |
D | Type.h | 35 template<class GraphType> struct GraphTraits;
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Type.h | 35 template<class GraphType> struct GraphTraits;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Type.h | 31 template<class GraphType> struct GraphTraits;
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | Type.h | 31 template<class GraphType> struct GraphTraits;
|
/external/llvm/include/llvm/Analysis/ |
D | RegionInfo.h | 105 template <class GraphType>
|