Searched refs:GCOVEdge (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/Support/
H A DGCOV.h251 /// GCOVEdge - Collects edge information.
252 struct GCOVEdge { struct in namespace:llvm
253 GCOVEdge(GCOVBlock &S, GCOVBlock &D) : Src(S), Dst(D), Count(0) {} function in struct:llvm::GCOVEdge
288 SmallVector<std::unique_ptr<GCOVEdge>, 16> Edges;
301 bool operator()(const GCOVEdge *E1, const GCOVEdge *E2) {
306 typedef SmallVectorImpl<GCOVEdge *>::const_iterator EdgeIterator;
317 void addSrcEdge(GCOVEdge *Edge) {
321 void addDstEdge(GCOVEdge *Edge) {
344 SmallVector<GCOVEdge *, 1
[all...]
/external/llvm/lib/IR/
H A DGCOV.cpp158 Edges.push_back(make_unique<GCOVEdge>(*Blocks[BlockNo], *Blocks[Dst]));
159 GCOVEdge *Edge = Edges.back().get();
362 const GCOVEdge *Edge = *I;
370 const GCOVEdge *Edge = *I;
696 const GCOVEdge *Edge = *I;

Completed in 160 milliseconds