/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGObjCRuntime.cpp | 244 llvm::Value *Exn = RawExn; in EmitTryCatchStmt() local 246 Exn = CGF.EmitNounwindRuntimeCall(beginCatchFn, RawExn, "exn.adjusted"); in EmitTryCatchStmt() 260 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType); in EmitTryCatchStmt() 266 CGF.ObjCEHValueStack.push_back(Exn); in EmitTryCatchStmt()
|
H A D | CGException.cpp | 1051 llvm::CallInst *Exn = CGF.Builder.CreateCall(GetExnFn, CPI); in emitWasmCatchPadBlock() local 1052 CGF.Builder.CreateStore(Exn, CGF.getExceptionSlot()); in emitWasmCatchPadBlock() 1553 llvm::Value *Exn = nullptr; in getTerminateLandingPad() local 1555 Exn = Builder.CreateExtractValue(LPadInst, 0); in getTerminateLandingPad() 1557 CGM.getCXXABI().emitTerminateForUnexpectedException(*this, Exn); in getTerminateLandingPad() 1577 llvm::Value *Exn = nullptr; in getTerminateHandler() local 1579 Exn = getExceptionFromSlot(); in getTerminateHandler() 1581 CGM.getCXXABI().emitTerminateForUnexpectedException(*this, Exn); in getTerminateHandler() 1649 llvm::Value *Exn = getExceptionFromSlot(); in getEHResumeBlock() local 1652 llvm::Type *LPadType = llvm::StructType::get(Exn->getType(), Sel->getType()); in getEHResumeBlock() [all …]
|
H A D | ItaniumCXXABI.cpp | 172 llvm::Value *Exn) override; 529 llvm::Value *Exn) override; 4797 llvm::Value *Exn, in CallBeginCatch() argument 4800 CGF.EmitNounwindRuntimeCall(getBeginCatchFn(CGF.CGM), Exn); in CallBeginCatch() 4816 llvm::Value *Exn = CGF.getExceptionFromSlot(); in InitCatchParam() local 4829 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, EndCatchMightThrow); in InitCatchParam() 4846 CGF.Builder.CreateConstGEP1_32(CGF.Int8Ty, Exn, HeaderSize); in InitCatchParam() 4886 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, false); in InitCatchParam() 4942 llvm::Value *rawAdjustedExn = CallBeginCatch(CGF, Exn, true); in InitCatchParam() 4954 CGF.EmitNounwindRuntimeCall(getGetExceptionPtrFn(CGF.CGM), Exn); in InitCatchParam() [all …]
|
H A D | CGCXXABI.cpp | 333 llvm::Value *Exn) { in emitTerminateForUnexpectedException() argument
|
H A D | CGCXXABI.h | 270 llvm::Value *Exn);
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyLowerEmscriptenEHSjLj.cpp | 1483 CallInst *Exn = in handleLongjmpableCallsForEmscriptenSjLj() local 1485 IRB.CreateCall(ResumeF, {Exn}); in handleLongjmpableCallsForEmscriptenSjLj()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Instructions.h | 3903 explicit ResumeInst(Value *Exn, InsertPosition InsertBefore = nullptr); 3912 static ResumeInst *Create(Value *Exn, InsertPosition InsertBefore = nullptr) { 3913 return new(1) ResumeInst(Exn, InsertBefore);
|
H A D | IRBuilder.h | 1237 ResumeInst *CreateResume(Value *Exn) { in CreateResume() argument 1238 return Insert(ResumeInst::Create(Exn)); in CreateResume()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Instructions.cpp | 949 ResumeInst::ResumeInst(Value *Exn, InsertPosition InsertBefore) in ResumeInst() argument 950 : Instruction(Type::getVoidTy(Exn->getContext()), Instruction::Resume, in ResumeInst() 952 Op<0>() = Exn; in ResumeInst()
|
H A D | Core.cpp | 3440 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn) { in LLVMBuildResume() argument 3441 return wrap(unwrap(B)->CreateResume(unwrap(Exn))); in LLVMBuildResume()
|
/freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
H A D | Core.h | 4197 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn);
|
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 7369 Value *Exn; LocTy ExnLoc; in parseResume() local 7370 if (parseTypeAndValue(Exn, ExnLoc, PFS)) in parseResume() 7373 ResumeInst *RI = ResumeInst::Create(Exn); in parseResume()
|