Home
last modified time | relevance | path

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

/external/llvm/test/CodeGen/ARM/
Dgv-stubs-crash.ll4 @Exn = external hidden unnamed_addr constant { i8*, i8* }
16 catch i8* bitcast ({ i8*, i8* }* @Exn to i8*)
21 …call void @__cxa_throw(i8* %exn, i8* bitcast ({ i8*, i8* }* @Exn to i8*), i8* bitcast (void (i32*)…
/external/clang/lib/CodeGen/
DCGObjCRuntime.cpp236 llvm::Value *Exn = RawExn; in EmitTryCatchStmt() local
238 Exn = CGF.Builder.CreateCall(beginCatchFn, RawExn, "exn.adjusted"); in EmitTryCatchStmt()
239 cast<llvm::CallInst>(Exn)->setDoesNotThrow(); in EmitTryCatchStmt()
256 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType); in EmitTryCatchStmt()
262 CGF.ObjCEHValueStack.push_back(Exn); in EmitTryCatchStmt()
DCGException.cpp1304 llvm::Value *Exn = nullptr; in getTerminateLandingPad() local
1306 Exn = Builder.CreateExtractValue(LPadInst, 0); in getTerminateLandingPad()
1308 CGM.getCXXABI().emitTerminateForUnexpectedException(*this, Exn); in getTerminateLandingPad()
1328 llvm::Value *Exn = nullptr; in getTerminateHandler() local
1336 Exn = getExceptionFromSlot(); in getTerminateHandler()
1339 CGM.getCXXABI().emitTerminateForUnexpectedException(*this, Exn); in getTerminateHandler()
1372 llvm::Value *Exn = getExceptionFromSlot(); in getEHResumeBlock() local
1375 llvm::Type *LPadType = llvm::StructType::get(Exn->getType(), in getEHResumeBlock()
1378 LPadVal = Builder.CreateInsertValue(LPadVal, Exn, 0, "lpad.val"); in getEHResumeBlock()
DItaniumCXXABI.cpp177 llvm::Value *Exn) override;
3550 llvm::Value *Exn, in CallBeginCatch() argument
3553 CGF.EmitNounwindRuntimeCall(getBeginCatchFn(CGF.CGM), Exn); in CallBeginCatch()
3567 llvm::Value *Exn = CGF.getExceptionFromSlot(); in InitCatchParam() local
3580 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, EndCatchMightThrow); in InitCatchParam()
3596 AdjustedExn = CGF.Builder.CreateConstGEP1_32(Exn, HeaderSize); in InitCatchParam()
3637 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, false); in InitCatchParam()
3696 llvm::Value *rawAdjustedExn = CallBeginCatch(CGF, Exn, true); in InitCatchParam()
3706 CGF.EmitNounwindRuntimeCall(getGetExceptionPtrFn(CGF.CGM), Exn); in InitCatchParam()
3735 CallBeginCatch(CGF, Exn, true); in InitCatchParam()
[all …]
DCGCXXABI.cpp321 llvm::Value *Exn) { in emitTerminateForUnexpectedException() argument
DCGCXXABI.h237 llvm::Value *Exn);
/external/robolectric/v1/lib/main/
Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META- ...
/external/llvm/include/llvm/IR/
DInstructions.h3783 explicit ResumeInst(Value *Exn, Instruction *InsertBefore=nullptr);
3784 ResumeInst(Value *Exn, BasicBlock *InsertAtEnd);
3792 static ResumeInst *Create(Value *Exn, Instruction *InsertBefore = nullptr) {
3793 return new(1) ResumeInst(Exn, InsertBefore);
3795 static ResumeInst *Create(Value *Exn, BasicBlock *InsertAtEnd) {
3796 return new(1) ResumeInst(Exn, InsertAtEnd);
DIRBuilder.h702 ResumeInst *CreateResume(Value *Exn) { in CreateResume() argument
703 return Insert(ResumeInst::Create(Exn)); in CreateResume()
/external/llvm/lib/IR/
DInstructions.cpp744 ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore) in ResumeInst() argument
745 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume, in ResumeInst()
747 Op<0>() = Exn; in ResumeInst()
750 ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd) in ResumeInst() argument
751 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume, in ResumeInst()
753 Op<0>() = Exn; in ResumeInst()
DCore.cpp2277 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn) { in LLVMBuildResume() argument
2278 return wrap(unwrap(B)->CreateResume(unwrap(Exn))); in LLVMBuildResume()
/external/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c1779 CAMLprim LLVMValueRef llvm_build_resume(LLVMValueRef Exn, value B) in llvm_build_resume() argument
1781 return LLVMBuildResume(Builder_val(B), Exn); in llvm_build_resume()
/external/llvm/include/llvm-c/
DCore.h2591 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn);
/external/llvm/lib/AsmParser/
DLLParser.cpp5130 Value *Exn; LocTy ExnLoc; in ParseResume() local
5131 if (ParseTypeAndValue(Exn, ExnLoc, PFS)) in ParseResume()
5134 ResumeInst *RI = ResumeInst::Create(Exn); in ParseResume()