Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp244 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 DCGException.cpp1051 llvm::CallInst *Exn = CGF.Builder.CreateCall(GetExnFn, CPI); in emitWasmCatchPadBlock() local
1052 CGF.Builder.CreateStore(Exn, CGF.getExceptionSlot()); in emitWasmCatchPadBlock()
1552 llvm::Value *Exn = nullptr; in getTerminateLandingPad() local
1554 Exn = Builder.CreateExtractValue(LPadInst, 0); in getTerminateLandingPad()
1556 CGM.getCXXABI().emitTerminateForUnexpectedException(*this, Exn); in getTerminateLandingPad()
1576 llvm::Value *Exn = nullptr; in getTerminateHandler() local
1578 Exn = getExceptionFromSlot(); in getTerminateHandler()
1580 CGM.getCXXABI().emitTerminateForUnexpectedException(*this, Exn); in getTerminateHandler()
1648 llvm::Value *Exn = getExceptionFromSlot(); in getEHResumeBlock() local
1651 llvm::Type *LPadType = llvm::StructType::get(Exn->getType(), Sel->getType()); in getEHResumeBlock()
[all …]
H A DItaniumCXXABI.cpp171 llvm::Value *Exn) override;
524 llvm::Value *Exn) override;
4522 llvm::Value *Exn, in CallBeginCatch() argument
4525 CGF.EmitNounwindRuntimeCall(getBeginCatchFn(CGF.CGM), Exn); in CallBeginCatch()
4541 llvm::Value *Exn = CGF.getExceptionFromSlot(); in InitCatchParam() local
4611 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, false); in InitCatchParam()
4667 llvm::Value *rawAdjustedExn = CallBeginCatch(CGF, Exn, true); in InitCatchParam()
4709 CallBeginCatch(CGF, Exn, true); in InitCatchParam()
4741 llvm::Value *Exn = CGF.getExceptionFromSlot(); in emitBeginCatch() local
4742 CallBeginCatch(CGF, Exn, true); in emitBeginCatch()
[all …]
H A DCGCXXABI.cpp324 llvm::Value *Exn) { in emitTerminateForUnexpectedException() argument
H A DCGCXXABI.h274 llvm::Value *Exn);
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h4273 explicit ResumeInst(Value *Exn, Instruction *InsertBefore=nullptr);
4274 ResumeInst(Value *Exn, BasicBlock *InsertAtEnd);
4283 static ResumeInst *Create(Value *Exn, Instruction *InsertBefore = nullptr) {
4284 return new(1) ResumeInst(Exn, InsertBefore);
4287 static ResumeInst *Create(Value *Exn, BasicBlock *InsertAtEnd) {
4288 return new(1) ResumeInst(Exn, InsertAtEnd);
H A DIRBuilder.h1226 ResumeInst *CreateResume(Value *Exn) { in CreateResume() argument
1227 return Insert(ResumeInst::Create(Exn)); in CreateResume()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerEmscriptenEHSjLj.cpp1590 CallInst *Exn = in handleLongjmpableCallsForEmscriptenSjLj() local
1592 IRB.CreateCall(ResumeF, {Exn}); in handleLongjmpableCallsForEmscriptenSjLj()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp993 ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore) in ResumeInst() argument
994 : Instruction(Type::getVoidTy(Exn->getContext()), Instruction::Resume, in ResumeInst()
996 Op<0>() = Exn; in ResumeInst()
999 ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd) in ResumeInst() argument
1000 : Instruction(Type::getVoidTy(Exn->getContext()), Instruction::Resume, in ResumeInst()
1002 Op<0>() = Exn; in ResumeInst()
H A DCore.cpp3227 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn) { in LLVMBuildResume() argument
3228 return wrap(unwrap(B)->CreateResume(unwrap(Exn))); in LLVMBuildResume()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h3934 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn);
/freebsd-14.2/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp6934 Value *Exn; LocTy ExnLoc; in parseResume() local
6935 if (parseTypeAndValue(Exn, ExnLoc, PFS)) in parseResume()
6938 ResumeInst *RI = ResumeInst::Create(Exn); in parseResume()