Home | History | Annotate | Download | only in Utils

Lines Matching defs:NumPreds

42     unsigned NumPreds; // Number of predecessor blocks.
43 BBInfo **Preds; // Array[NumPreds] of predecessor blocks.
48 NumPreds(0), Preds(0), PHITag(0) { }
108 Info->NumPreds = Preds.size();
109 if (Info->NumPreds == 0)
113 (Allocator.Allocate(Info->NumPreds * sizeof(BBInfo*),
116 for (unsigned p = 0; p != Info->NumPreds; ++p) {
229 for (unsigned p = 0; p != Info->NumPreds; ++p) {
287 for (unsigned p = 0; p != Info->NumPreds; ++p) {
325 ValT PHI = Traits::CreateEmptyPHI(Info->BB, Info->NumPreds, Updater);
339 if (Info->NumPreds > 1)
350 for (unsigned p = 0; p != Info->NumPreds; ++p) {