Home | History | Annotate | Download | only in Utils

Lines Matching defs:NumPreds

53     unsigned NumPreds; // Number of predecessor blocks.
54 BBInfo **Preds; // Array[NumPreds] of predecessor blocks.
59 IDom(nullptr), NumPreds(0), Preds(nullptr), PHITag(nullptr) {}
119 Info->NumPreds = Preds.size();
120 if (Info->NumPreds == 0)
124 Info->NumPreds * sizeof(BBInfo *), alignof(BBInfo *)));
126 for (unsigned p = 0; p != Info->NumPreds; ++p) {
239 for (unsigned p = 0; p != Info->NumPreds; ++p) {
297 for (unsigned p = 0; p != Info->NumPreds; ++p) {
335 ValT PHI = Traits::CreateEmptyPHI(Info->BB, Info->NumPreds, Updater);
349 if (Info->NumPreds > 1)
360 for (unsigned p = 0; p != Info->NumPreds; ++p) {