Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:PriorTBB

1104   MachineBasicBlock *PriorTBB = nullptr, *PriorFBB = nullptr;
1107 TII->AnalyzeBranch(PrevBB, PriorTBB, PriorFBB, PriorCond, true);
1110 MadeChange |= PrevBB.CorrectExtraCFGEdges(PriorTBB, PriorFBB,
1116 if (PriorTBB && PriorTBB == PriorFBB) {
1120 if (PriorTBB != MBB)
1121 TII->InsertBranch(PrevBB, PriorTBB, nullptr, PriorCond, dl);
1134 if (PriorCond.empty() && !PriorTBB && MBB->pred_size() == 1 &&
1165 if (PriorTBB == MBB && !PriorFBB) {
1177 TII->InsertBranch(PrevBB, PriorTBB, nullptr, PriorCond, dl);
1186 if (PriorTBB == MBB) {
1207 MachineFunction::iterator(PriorTBB) == FallThrough &&
1217 !IsBetterFallthrough(PriorTBB, MBB))
1225 << "To make fallthrough to: " << *PriorTBB << "\n");
1305 PriorTBB != MBB && PriorFBB != MBB) {
1306 if (!PriorTBB) {
1309 PriorTBB = MBB;
1316 TII->InsertBranch(PrevBB, PriorTBB, PriorFBB, PriorCond, pdl);