Lines Matching defs:Cont
534 MachineBasicBlock *Cont = &*Iter;
641 // Decide where in Cont to put the END_TRY.
644 for (const auto &MI : *Cont) {
675 InsertPos = getEarliestInsertPos(Cont, BeforeSet, AfterSet);
676 MachineInstr *End = BuildMI(*Cont, InsertPos, Bottom->findBranchDebugLoc(),
691 for (auto *End : {&MBB, Cont})
727 MachineBasicBlock *Cont = &*Iter;
988 for (auto *End : {&MBB, Cont})
1009 // pad, the Cont (= continuation) BB is that EH pad's 'end' BB. For example,
1026 // code can be deleted. This is why we run 'while' until 'Cont' is not an EH
1036 MachineBasicBlock *Cont = &MBB;
1037 while (Cont->isEHPad()) {
1038 MachineInstr *Try = EHPadToTry[Cont];
1042 Cont = EndTry->getParent();
1048 // Cont.
1050 // branch, and the unconditional branch's destination is Cont.
1052 if (Analyzable && ((Cond.empty() && TBB && TBB == Cont) ||
1053 (!Cond.empty() && FBB && FBB == Cont))) {
1091 MachineBasicBlock *Cont = EndTry->getParent();
1094 B != TryBB->begin() && E != Cont->end() &&