Lines Matching refs:SetjmpRetPHIs

334       SmallVectorImpl<PHINode *> &SetjmpRetPHIs);
338 SmallVectorImpl<PHINode *> &SetjmpRetPHIs);
1280 SmallVector<PHINode *, 4> SetjmpRetPHIs; in runSjLjOnFunction() local
1317 SetjmpRetPHIs.push_back(SetjmpRet); in runSjLjOnFunction()
1323 Value *Args[] = {CI->getArgOperand(0), IRB.getInt32(SetjmpRetPHIs.size()), in runSjLjOnFunction()
1332 SetjmpRetPHIs); in runSjLjOnFunction()
1334 handleLongjmpableCallsForWasmSjLj(F, FunctionInvocationId, SetjmpRetPHIs); in runSjLjOnFunction()
1359 SmallVectorImpl<PHINode *> &SetjmpRetPHIs) { in handleLongjmpableCallsForEmscriptenSjLj() argument
1520 SwitchInst *SI = IRB.CreateSwitch(Label, Tail, SetjmpRetPHIs.size()); in handleLongjmpableCallsForEmscriptenSjLj()
1525 for (unsigned I = 0; I < SetjmpRetPHIs.size(); I++) { in handleLongjmpableCallsForEmscriptenSjLj()
1526 SI->addCase(IRB.getInt32(I + 1), SetjmpRetPHIs[I]->getParent()); in handleLongjmpableCallsForEmscriptenSjLj()
1527 SetjmpRetPHIs[I]->addIncoming(LongjmpResult, EndBB); in handleLongjmpableCallsForEmscriptenSjLj()
1554 SmallVectorImpl<PHINode *> &SetjmpRetPHIs) { in handleLongjmpableCallsForWasmSjLj() argument
1654 SwitchInst *SI = IRB.CreateSwitch(LabelPHI, OrigEntry, SetjmpRetPHIs.size()); in handleLongjmpableCallsForWasmSjLj()
1659 for (unsigned I = 0; I < SetjmpRetPHIs.size(); I++) { in handleLongjmpableCallsForWasmSjLj()
1660 SI->addCase(IRB.getInt32(I + 1), SetjmpRetPHIs[I]->getParent()); in handleLongjmpableCallsForWasmSjLj()
1661 SetjmpRetPHIs[I]->addIncoming(Val, SetjmpDispatchBB); in handleLongjmpableCallsForWasmSjLj()