Home | History | Annotate | Download | only in IR

Lines Matching defs:Edge

159       GCOVEdge *Edge = Edges.back().get();
160 Blocks[BlockNo]->addDstEdge(Edge);
161 Blocks[Dst]->addSrcEdge(Edge);
162 if (!Buff.readInt(Dummy)) return false; // Edge flag
263 // required to combine the edge counts that are contained in the GCDA file.
329 /// addCount - Add to block counter while storing the edge count. If the
362 const GCOVEdge *Edge = *I;
363 dbgs() << Edge->Src.Number << " (" << Edge->Count << "), ";
370 const GCOVEdge *Edge = *I;
371 dbgs() << Edge->Dst.Number << " (" << Edge->Count << "), ";
696 const GCOVEdge *Edge = *I;
697 BranchCounts.push_back(Edge->Count);
698 TotalCounts += Edge->Count;
700 if (Edge->Count) ++Coverage.BranchesTaken;
707 if (Edge->Count) ++FuncCoverage.BranchesTaken;