Home | History | Annotate | Download | only in IR

Lines Matching defs:Edge

184       GCOVEdge *Edge = Edges.back().get();
185 Blocks[BlockNo]->addDstEdge(Edge);
186 Blocks[Dst]->addSrcEdge(Edge);
188 return false; // Edge flag
303 // required to combine the edge counts that are contained in the GCDA file.
373 /// addCount - Add to block counter while storing the edge count. If the
404 for (const GCOVEdge *Edge : SrcEdges)
405 dbgs() << Edge->Src.Number << " (" << Edge->Count << "), ";
410 for (const GCOVEdge *Edge : DstEdges)
411 dbgs() << Edge->Dst.Number << " (" << Edge->Count << "), ";
721 for (const GCOVEdge *Edge : Block.dsts()) {
722 BranchCounts.push_back(Edge->Count);
723 TotalCounts += Edge->Count;
726 if (Edge->Count)
735 if (Edge->Count)