Lines Matching defs:Tail
1133 BasicBlock *Tail = BasicBlock::Create(C, "tail", &F);
1139 IRB.CreateCondBr(Or, Tail, RethrowLongjmpBB);
1140 IRB.SetInsertPoint(Tail);
1141 BB.replaceSuccessorsPhiUsesWith(&BB, Tail);
1305 BasicBlock *Tail = SplitBlock(BB, CI->getNextNode());
1309 IRB.SetInsertPoint(Tail, Tail->getFirstNonPHIIt());
1412 BasicBlock *Tail;
1445 Tail = SplitBlock(BB, ThrewResetSI->getNextNode());
1451 Tail = SplitBlock(BB, CI->getNextNode());
1496 IRB.CreateBr(Tail);
1501 // We need to replace the terminator in Tail - SplitBlock makes BB go
1502 // straight to Tail, we need to check if a longjmp occurred, and go to the
1520 SwitchInst *SI = IRB.CreateSwitch(Label, Tail, SetjmpRetPHIs.size());
1531 // in the block - which is now split. so continue to traverse in the Tail
1532 BBs.push_back(Tail);