1 //===-- WasmEHPrepare - Prepare excepton handling for WebAssembly --------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This transformation is designed for use by code generators which use 10 // WebAssembly exception handling scheme. This currently supports C++ 11 // exceptions. 12 // 13 // WebAssembly exception handling uses Windows exception IR for the middle level 14 // representation. This pass does the following transformation for every 15 // catchpad block: 16 // (In C-style pseudocode) 17 // 18 // - Before: 19 // catchpad ... 20 // exn = wasm.get.exception(); 21 // selector = wasm.get.selector(); 22 // ... 23 // 24 // - After: 25 // catchpad ... 26 // exn = wasm.catch(WebAssembly::CPP_EXCEPTION); 27 // // Only add below in case it's not a single catch (...) 28 // wasm.landingpad.index(index); 29 // __wasm_lpad_context.lpad_index = index; 30 // __wasm_lpad_context.lsda = wasm.lsda(); 31 // _Unwind_CallPersonality(exn); 32 // selector = __wasm_lpad_context.selector; 33 // ... 34 // 35 // 36 // * Background: Direct personality function call 37 // In WebAssembly EH, the VM is responsible for unwinding the stack once an 38 // exception is thrown. After the stack is unwound, the control flow is 39 // transfered to WebAssembly 'catch' instruction. 40 // 41 // Unwinding the stack is not done by libunwind but the VM, so the personality 42 // function in libcxxabi cannot be called from libunwind during the unwinding 43 // process. So after a catch instruction, we insert a call to a wrapper function 44 // in libunwind that in turn calls the real personality function. 45 // 46 // In Itanium EH, if the personality function decides there is no matching catch 47 // clause in a call frame and no cleanup action to perform, the unwinder doesn't 48 // stop there and continues unwinding. But in Wasm EH, the unwinder stops at 49 // every call frame with a catch intruction, after which the personality 50 // function is called from the compiler-generated user code here. 51 // 52 // In libunwind, we have this struct that serves as a communincation channel 53 // between the compiler-generated user code and the personality function in 54 // libcxxabi. 55 // 56 // struct _Unwind_LandingPadContext { 57 // uintptr_t lpad_index; 58 // uintptr_t lsda; 59 // uintptr_t selector; 60 // }; 61 // struct _Unwind_LandingPadContext __wasm_lpad_context = ...; 62 // 63 // And this wrapper in libunwind calls the personality function. 64 // 65 // _Unwind_Reason_Code _Unwind_CallPersonality(void *exception_ptr) { 66 // struct _Unwind_Exception *exception_obj = 67 // (struct _Unwind_Exception *)exception_ptr; 68 // _Unwind_Reason_Code ret = __gxx_personality_v0( 69 // 1, _UA_CLEANUP_PHASE, exception_obj->exception_class, exception_obj, 70 // (struct _Unwind_Context *)__wasm_lpad_context); 71 // return ret; 72 // } 73 // 74 // We pass a landing pad index, and the address of LSDA for the current function 75 // to the wrapper function _Unwind_CallPersonality in libunwind, and we retrieve 76 // the selector after it returns. 77 // 78 //===----------------------------------------------------------------------===// 79 80 #include "llvm/CodeGen/WasmEHPrepare.h" 81 #include "llvm/CodeGen/MachineBasicBlock.h" 82 #include "llvm/CodeGen/Passes.h" 83 #include "llvm/CodeGen/WasmEHFuncInfo.h" 84 #include "llvm/IR/EHPersonalities.h" 85 #include "llvm/IR/IRBuilder.h" 86 #include "llvm/IR/IntrinsicsWebAssembly.h" 87 #include "llvm/IR/Module.h" 88 #include "llvm/InitializePasses.h" 89 #include "llvm/Transforms/Utils/BasicBlockUtils.h" 90 91 using namespace llvm; 92 93 #define DEBUG_TYPE "wasm-eh-prepare" 94 95 namespace { 96 class WasmEHPrepareImpl { 97 friend class WasmEHPrepare; 98 99 Type *LPadContextTy = nullptr; // type of 'struct _Unwind_LandingPadContext' 100 GlobalVariable *LPadContextGV = nullptr; // __wasm_lpad_context 101 102 // Field addresses of struct _Unwind_LandingPadContext 103 Value *LPadIndexField = nullptr; // lpad_index field 104 Value *LSDAField = nullptr; // lsda field 105 Value *SelectorField = nullptr; // selector 106 107 Function *ThrowF = nullptr; // wasm.throw() intrinsic 108 Function *LPadIndexF = nullptr; // wasm.landingpad.index() intrinsic 109 Function *LSDAF = nullptr; // wasm.lsda() intrinsic 110 Function *GetExnF = nullptr; // wasm.get.exception() intrinsic 111 Function *CatchF = nullptr; // wasm.catch() intrinsic 112 Function *GetSelectorF = nullptr; // wasm.get.ehselector() intrinsic 113 FunctionCallee CallPersonalityF = 114 nullptr; // _Unwind_CallPersonality() wrapper 115 116 bool prepareThrows(Function &F); 117 bool prepareEHPads(Function &F); 118 void prepareEHPad(BasicBlock *BB, bool NeedPersonality, unsigned Index = 0); 119 120 public: 121 WasmEHPrepareImpl() = default; 122 WasmEHPrepareImpl(Type *LPadContextTy_) : LPadContextTy(LPadContextTy_) {} 123 bool runOnFunction(Function &F); 124 }; 125 126 class WasmEHPrepare : public FunctionPass { 127 WasmEHPrepareImpl P; 128 129 public: 130 static char ID; // Pass identification, replacement for typeid 131 132 WasmEHPrepare() : FunctionPass(ID) {} 133 bool doInitialization(Module &M) override; 134 bool runOnFunction(Function &F) override { return P.runOnFunction(F); } 135 136 StringRef getPassName() const override { 137 return "WebAssembly Exception handling preparation"; 138 } 139 }; 140 141 } // end anonymous namespace 142 143 PreservedAnalyses WasmEHPreparePass::run(Function &F, 144 FunctionAnalysisManager &) { 145 auto &Context = F.getContext(); 146 auto *I32Ty = Type::getInt32Ty(Context); 147 auto *PtrTy = PointerType::get(Context, 0); 148 auto *LPadContextTy = 149 StructType::get(I32Ty /*lpad_index*/, PtrTy /*lsda*/, I32Ty /*selector*/); 150 WasmEHPrepareImpl P(LPadContextTy); 151 bool Changed = P.runOnFunction(F); 152 return Changed ? PreservedAnalyses::none() : PreservedAnalyses ::all(); 153 } 154 155 char WasmEHPrepare::ID = 0; 156 INITIALIZE_PASS_BEGIN(WasmEHPrepare, DEBUG_TYPE, 157 "Prepare WebAssembly exceptions", false, false) 158 INITIALIZE_PASS_END(WasmEHPrepare, DEBUG_TYPE, "Prepare WebAssembly exceptions", 159 false, false) 160 161 FunctionPass *llvm::createWasmEHPass() { return new WasmEHPrepare(); } 162 163 bool WasmEHPrepare::doInitialization(Module &M) { 164 IRBuilder<> IRB(M.getContext()); 165 P.LPadContextTy = StructType::get(IRB.getInt32Ty(), // lpad_index 166 IRB.getPtrTy(), // lsda 167 IRB.getInt32Ty() // selector 168 ); 169 return false; 170 } 171 172 // Erase the specified BBs if the BB does not have any remaining predecessors, 173 // and also all its dead children. 174 template <typename Container> 175 static void eraseDeadBBsAndChildren(const Container &BBs) { 176 SmallVector<BasicBlock *, 8> WL(BBs.begin(), BBs.end()); 177 while (!WL.empty()) { 178 auto *BB = WL.pop_back_val(); 179 if (!pred_empty(BB)) 180 continue; 181 WL.append(succ_begin(BB), succ_end(BB)); 182 DeleteDeadBlock(BB); 183 } 184 } 185 186 bool WasmEHPrepareImpl::runOnFunction(Function &F) { 187 bool Changed = false; 188 Changed |= prepareThrows(F); 189 Changed |= prepareEHPads(F); 190 return Changed; 191 } 192 193 bool WasmEHPrepareImpl::prepareThrows(Function &F) { 194 Module &M = *F.getParent(); 195 IRBuilder<> IRB(F.getContext()); 196 bool Changed = false; 197 198 // wasm.throw() intinsic, which will be lowered to wasm 'throw' instruction. 199 ThrowF = Intrinsic::getOrInsertDeclaration(&M, Intrinsic::wasm_throw); 200 // Insert an unreachable instruction after a call to @llvm.wasm.throw and 201 // delete all following instructions within the BB, and delete all the dead 202 // children of the BB as well. 203 for (User *U : ThrowF->users()) { 204 // A call to @llvm.wasm.throw() is only generated from __cxa_throw() 205 // builtin call within libcxxabi, and cannot be an InvokeInst. 206 auto *ThrowI = cast<CallInst>(U); 207 if (ThrowI->getFunction() != &F) 208 continue; 209 Changed = true; 210 auto *BB = ThrowI->getParent(); 211 SmallVector<BasicBlock *, 4> Succs(successors(BB)); 212 BB->erase(std::next(BasicBlock::iterator(ThrowI)), BB->end()); 213 IRB.SetInsertPoint(BB); 214 IRB.CreateUnreachable(); 215 eraseDeadBBsAndChildren(Succs); 216 } 217 218 return Changed; 219 } 220 221 bool WasmEHPrepareImpl::prepareEHPads(Function &F) { 222 Module &M = *F.getParent(); 223 IRBuilder<> IRB(F.getContext()); 224 225 SmallVector<BasicBlock *, 16> CatchPads; 226 SmallVector<BasicBlock *, 16> CleanupPads; 227 for (BasicBlock &BB : F) { 228 if (!BB.isEHPad()) 229 continue; 230 BasicBlock::iterator Pad = BB.getFirstNonPHIIt(); 231 if (isa<CatchPadInst>(Pad)) 232 CatchPads.push_back(&BB); 233 else if (isa<CleanupPadInst>(Pad)) 234 CleanupPads.push_back(&BB); 235 } 236 if (CatchPads.empty() && CleanupPads.empty()) 237 return false; 238 239 if (!F.hasPersonalityFn() || 240 !isScopedEHPersonality(classifyEHPersonality(F.getPersonalityFn()))) { 241 report_fatal_error("Function '" + F.getName() + 242 "' does not have a correct Wasm personality function " 243 "'__gxx_wasm_personality_v0'"); 244 } 245 assert(F.hasPersonalityFn() && "Personality function not found"); 246 247 // __wasm_lpad_context global variable. 248 // This variable should be thread local. If the target does not support TLS, 249 // we depend on CoalesceFeaturesAndStripAtomics to downgrade it to 250 // non-thread-local ones, in which case we don't allow this object to be 251 // linked with other objects using shared memory. 252 LPadContextGV = cast<GlobalVariable>( 253 M.getOrInsertGlobal("__wasm_lpad_context", LPadContextTy)); 254 LPadContextGV->setThreadLocalMode(GlobalValue::GeneralDynamicTLSModel); 255 256 LPadIndexField = LPadContextGV; 257 LSDAField = IRB.CreateConstInBoundsGEP2_32(LPadContextTy, LPadContextGV, 0, 1, 258 "lsda_gep"); 259 SelectorField = IRB.CreateConstInBoundsGEP2_32(LPadContextTy, LPadContextGV, 260 0, 2, "selector_gep"); 261 262 // wasm.landingpad.index() intrinsic, which is to specify landingpad index 263 LPadIndexF = 264 Intrinsic::getOrInsertDeclaration(&M, Intrinsic::wasm_landingpad_index); 265 // wasm.lsda() intrinsic. Returns the address of LSDA table for the current 266 // function. 267 LSDAF = Intrinsic::getOrInsertDeclaration(&M, Intrinsic::wasm_lsda); 268 // wasm.get.exception() and wasm.get.ehselector() intrinsics. Calls to these 269 // are generated in clang. 270 GetExnF = 271 Intrinsic::getOrInsertDeclaration(&M, Intrinsic::wasm_get_exception); 272 GetSelectorF = 273 Intrinsic::getOrInsertDeclaration(&M, Intrinsic::wasm_get_ehselector); 274 275 // wasm.catch() will be lowered down to wasm 'catch' instruction in 276 // instruction selection. 277 CatchF = Intrinsic::getOrInsertDeclaration(&M, Intrinsic::wasm_catch); 278 279 // _Unwind_CallPersonality() wrapper function, which calls the personality 280 CallPersonalityF = M.getOrInsertFunction("_Unwind_CallPersonality", 281 IRB.getInt32Ty(), IRB.getPtrTy()); 282 if (Function *F = dyn_cast<Function>(CallPersonalityF.getCallee())) 283 F->setDoesNotThrow(); 284 285 unsigned Index = 0; 286 for (auto *BB : CatchPads) { 287 auto *CPI = cast<CatchPadInst>(BB->getFirstNonPHIIt()); 288 // In case of a single catch (...), we don't need to emit a personalify 289 // function call 290 if (CPI->arg_size() == 1 && 291 cast<Constant>(CPI->getArgOperand(0))->isNullValue()) 292 prepareEHPad(BB, false); 293 else 294 prepareEHPad(BB, true, Index++); 295 } 296 297 // Cleanup pads don't need a personality function call. 298 for (auto *BB : CleanupPads) 299 prepareEHPad(BB, false); 300 301 return true; 302 } 303 304 // Prepare an EH pad for Wasm EH handling. If NeedPersonality is false, Index is 305 // ignored. 306 void WasmEHPrepareImpl::prepareEHPad(BasicBlock *BB, bool NeedPersonality, 307 unsigned Index) { 308 assert(BB->isEHPad() && "BB is not an EHPad!"); 309 IRBuilder<> IRB(BB->getContext()); 310 IRB.SetInsertPoint(BB, BB->getFirstInsertionPt()); 311 312 auto *FPI = cast<FuncletPadInst>(BB->getFirstNonPHIIt()); 313 Instruction *GetExnCI = nullptr, *GetSelectorCI = nullptr; 314 for (auto &U : FPI->uses()) { 315 if (auto *CI = dyn_cast<CallInst>(U.getUser())) { 316 if (CI->getCalledOperand() == GetExnF) 317 GetExnCI = CI; 318 if (CI->getCalledOperand() == GetSelectorF) 319 GetSelectorCI = CI; 320 } 321 } 322 323 // Cleanup pads do not have any of wasm.get.exception() or 324 // wasm.get.ehselector() calls. We need to do nothing. 325 if (!GetExnCI) { 326 assert(!GetSelectorCI && 327 "wasm.get.ehselector() cannot exist w/o wasm.get.exception()"); 328 return; 329 } 330 331 // Replace wasm.get.exception intrinsic with wasm.catch intrinsic, which will 332 // be lowered to wasm 'catch' instruction. We do this mainly because 333 // instruction selection cannot handle wasm.get.exception intrinsic's token 334 // argument. 335 Instruction *CatchCI = 336 IRB.CreateCall(CatchF, {IRB.getInt32(WebAssembly::CPP_EXCEPTION)}, "exn"); 337 GetExnCI->replaceAllUsesWith(CatchCI); 338 GetExnCI->eraseFromParent(); 339 340 // In case it is a catchpad with single catch (...) or a cleanuppad, we don't 341 // need to call personality function because we don't need a selector. 342 if (!NeedPersonality) { 343 if (GetSelectorCI) { 344 assert(GetSelectorCI->use_empty() && 345 "wasm.get.ehselector() still has uses!"); 346 GetSelectorCI->eraseFromParent(); 347 } 348 return; 349 } 350 IRB.SetInsertPoint(CatchCI->getNextNode()); 351 352 // This is to create a map of <landingpad EH label, landingpad index> in 353 // SelectionDAGISel, which is to be used in EHStreamer to emit LSDA tables. 354 // Pseudocode: wasm.landingpad.index(Index); 355 IRB.CreateCall(LPadIndexF, {FPI, IRB.getInt32(Index)}); 356 357 // Pseudocode: __wasm_lpad_context.lpad_index = index; 358 IRB.CreateStore(IRB.getInt32(Index), LPadIndexField); 359 360 auto *CPI = cast<CatchPadInst>(FPI); 361 // TODO Sometimes storing the LSDA address every time is not necessary, in 362 // case it is already set in a dominating EH pad and there is no function call 363 // between from that EH pad to here. Consider optimizing those cases. 364 // Pseudocode: __wasm_lpad_context.lsda = wasm.lsda(); 365 IRB.CreateStore(IRB.CreateCall(LSDAF), LSDAField); 366 367 // Pseudocode: _Unwind_CallPersonality(exn); 368 CallInst *PersCI = IRB.CreateCall(CallPersonalityF, CatchCI, 369 OperandBundleDef("funclet", CPI)); 370 PersCI->setDoesNotThrow(); 371 372 // Pseudocode: int selector = __wasm_lpad_context.selector; 373 Instruction *Selector = 374 IRB.CreateLoad(IRB.getInt32Ty(), SelectorField, "selector"); 375 376 // Replace the return value from wasm.get.ehselector() with the selector value 377 // loaded from __wasm_lpad_context.selector. 378 assert(GetSelectorCI && "wasm.get.ehselector() call does not exist"); 379 GetSelectorCI->replaceAllUsesWith(Selector); 380 GetSelectorCI->eraseFromParent(); 381 } 382 383 void llvm::calculateWasmEHInfo(const Function *F, WasmEHFuncInfo &EHInfo) { 384 // If an exception is not caught by a catchpad (i.e., it is a foreign 385 // exception), it will unwind to its parent catchswitch's unwind destination. 386 // We don't record an unwind destination for cleanuppads because every 387 // exception should be caught by it. 388 for (const auto &BB : *F) { 389 if (!BB.isEHPad()) 390 continue; 391 const Instruction *Pad = &*BB.getFirstNonPHIIt(); 392 393 if (const auto *CatchPad = dyn_cast<CatchPadInst>(Pad)) { 394 const auto *UnwindBB = CatchPad->getCatchSwitch()->getUnwindDest(); 395 if (!UnwindBB) 396 continue; 397 const Instruction *UnwindPad = &*UnwindBB->getFirstNonPHIIt(); 398 if (const auto *CatchSwitch = dyn_cast<CatchSwitchInst>(UnwindPad)) 399 // Currently there should be only one handler per a catchswitch. 400 EHInfo.setUnwindDest(&BB, *CatchSwitch->handlers().begin()); 401 else // cleanuppad 402 EHInfo.setUnwindDest(&BB, UnwindBB); 403 } 404 } 405 } 406