Home | History | Annotate | Download | only in Utils

Lines Matching refs:Preds

54     BBInfo **Preds;    // Array[NumPreds] of predecessor blocks.
59 IDom(nullptr), NumPreds(0), Preds(nullptr), PHITag(nullptr) {}
114 SmallVector<BlkT*, 10> Preds;
117 Preds.clear();
118 Traits::FindPredecessorBlocks(Info->BB, &Preds);
119 Info->NumPreds = Preds.size();
121 Info->Preds = nullptr;
123 Info->Preds = static_cast<BBInfo **>(Allocator.Allocate(
127 BlkT *Pred = Preds[p];
132 Info->Preds[p] = BBMapBucket.second;
140 Info->Preds[p] = PredInfo;
240 BBInfo *Pred = Info->Preds[p];
298 if (IsDefInDomFrontier(Info->Preds[p], Info->IDom)) {
361 BBInfo *PredInfo = Info->Preds[p];