Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerEmscriptenEHSjLj.cpp985 std::vector<PHINode *> SetjmpRetPHIs; in runSjLjOnFunction() local
1010 SetjmpRetPHIs.push_back(SetjmpRet); in runSjLjOnFunction()
1016 Value *Args[] = {CI->getArgOperand(0), IRB.getInt32(SetjmpRetPHIs.size()), in runSjLjOnFunction()
1117 SwitchInst *SI = IRB.CreateSwitch(Label, Tail, SetjmpRetPHIs.size()); in runSjLjOnFunction()
1122 for (unsigned I = 0; I < SetjmpRetPHIs.size(); I++) { in runSjLjOnFunction()
1123 SI->addCase(IRB.getInt32(I + 1), SetjmpRetPHIs[I]->getParent()); in runSjLjOnFunction()
1124 SetjmpRetPHIs[I]->addIncoming(LongjmpResult, EndBB); in runSjLjOnFunction()