Searched defs:GCOVEdge (Results 1 - 1 of 1) 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...]

Completed in 220 milliseconds