Home | History | Annotate | Download | only in Instrumentation

Lines Matching refs:EI

146     for (auto &Ei : AllEdges) {
147 if (Ei->Removed)
149 if (Ei->IsCritical) {
150 if (Ei->DestBB && Ei->DestBB->isLandingPad()) {
151 if (unionGroups(Ei->SrcBB, Ei->DestBB))
152 Ei->InMST = true;
157 for (auto &Ei : AllEdges) {
158 if (Ei->Removed)
160 if (unionGroups(Ei->SrcBB, Ei->DestBB))
161 Ei->InMST = true;
179 for (auto &EI : AllEdges)
180 OS << " Edge " << Count++ << ": " << getBBInfo(EI->SrcBB).Index << "-->"
181 << getBBInfo(EI->DestBB).Index << EI->infoString() << "\n";