Home
last modified time | relevance | path

Searched refs:EntryEdges (Results 1 – 4 of 4) sorted by relevance

/external/llvm/include/llvm/Analysis/
DLazyCallGraph.h757 return edge_iterator(EntryEdges.begin(), EntryEdges.end()); in begin()
760 return edge_iterator(EntryEdges.end(), EntryEdges.end()); in end()
847 EdgeVectorT EntryEdges; variable
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DLazyCallGraph.h939 EdgeSequence::iterator begin() { return EntryEdges.begin(); } in begin()
940 EdgeSequence::iterator end() { return EntryEdges.end(); } in end()
945 if (!EntryEdges.empty()) in postorder_ref_scc_begin()
951 if (!EntryEdges.empty()) in postorder_ref_scc_end()
1117 EdgeSequence EntryEdges; variable
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DLazyCallGraph.cpp173 addEdge(EntryEdges.Edges, EntryEdges.EdgeIndexMap, get(F), Edge::Ref); in LazyCallGraph()
188 addEdge(EntryEdges.Edges, EntryEdges.EdgeIndexMap, get(F), in LazyCallGraph()
195 EntryEdges(std::move(G.EntryEdges)), SCCBPA(std::move(G.SCCBPA)), in LazyCallGraph()
204 EntryEdges = std::move(G.EntryEdges); in operator =()
1499 EntryEdges.removeEdgeInternal(N); in removeDeadFunction()
1688 if (EntryEdges.empty() || !PostOrderRefSCCs.empty()) in buildRefSCCs()
/external/llvm/lib/Analysis/
DLazyCallGraph.cpp131 if (EntryIndexMap.insert({&F, EntryEdges.size()}).second) { in LazyCallGraph()
134 EntryEdges.emplace_back(F, Edge::Ref); in LazyCallGraph()
147 findReferences(Worklist, Visited, EntryEdges, EntryIndexMap); in LazyCallGraph()
149 for (const Edge &E : EntryEdges) in LazyCallGraph()
155 EntryEdges(std::move(G.EntryEdges)), in LazyCallGraph()
167 EntryEdges = std::move(G.EntryEdges); in operator =()
1251 for (Edge &E : EntryEdges) in updateGraphPtrs()