Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:FallThrough

843   //   fallthrough to QBB
895 if (IBB != PredNextBB) // fallthrough
995 // into a fallthrough to the return.
1022 MachineFunction::iterator FallThrough = MBB;
1023 ++FallThrough;
1033 if (FallThrough == MF.end()) {
1036 // Rewrite all predecessors of the old block to go to the fallthrough
1040 Pred->ReplaceUsesOfBlockWith(MBB, FallThrough);
1043 // fallthrough instead.
1045 MJTI->ReplaceMBBInJumpTables(MBB, FallThrough);
1155 MachineFunction::iterator(PriorTBB) == FallThrough &&
1164 if (FallThrough == --MF.end() &&
1173 << "To make fallthrough to: " << *PriorTBB << "\n");
1366 // fallthrough to happen.
1381 if (FallThrough != MF.end() &&
1383 PrevBB.isSuccessor(FallThrough)) {
1410 /// findFalseBlock - BB has a fallthrough. Find its 'false' successor given