Home
last modified time | relevance | path

Searched refs:SetjmpRetPHIs (Results 1 – 1 of 1) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerEmscriptenEHSjLj.cpp1039 std::vector<PHINode *> SetjmpRetPHIs; in runSjLjOnFunction() local
1064 SetjmpRetPHIs.push_back(SetjmpRet); in runSjLjOnFunction()
1070 Value *Args[] = {CI->getArgOperand(0), IRB.getInt32(SetjmpRetPHIs.size()), in runSjLjOnFunction()
1211 SwitchInst *SI = IRB.CreateSwitch(Label, Tail, SetjmpRetPHIs.size()); in runSjLjOnFunction()
1216 for (unsigned I = 0; I < SetjmpRetPHIs.size(); I++) { in runSjLjOnFunction()
1217 SI->addCase(IRB.getInt32(I + 1), SetjmpRetPHIs[I]->getParent()); in runSjLjOnFunction()
1218 SetjmpRetPHIs[I]->addIncoming(LongjmpResult, EndBB); in runSjLjOnFunction()