Lines Matching defs:Exn
1050 llvm::CallInst *Exn = CGF.Builder.CreateCall(GetExnFn, CPI);
1051 CGF.Builder.CreateStore(Exn, CGF.getExceptionSlot());
1553 llvm::Value *Exn = nullptr;
1555 Exn = Builder.CreateExtractValue(LPadInst, 0);
1557 CGM.getCXXABI().emitTerminateForUnexpectedException(*this, Exn);
1577 llvm::Value *Exn = nullptr;
1579 Exn = getExceptionFromSlot();
1581 CGM.getCXXABI().emitTerminateForUnexpectedException(*this, Exn);
1649 llvm::Value *Exn = getExceptionFromSlot();
1652 llvm::Type *LPadType = llvm::StructType::get(Exn->getType(), Sel->getType());
1654 LPadVal = Builder.CreateInsertValue(LPadVal, Exn, 0, "lpad.val");