Home
last modified time | relevance | path

Searched refs:Exn (Results 1 – 10 of 10) 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.cpp235 llvm::Value *Exn = RawExn; in EmitTryCatchStmt() local
237 Exn = CGF.Builder.CreateCall(beginCatchFn, RawExn, "exn.adjusted"); in EmitTryCatchStmt()
238 cast<llvm::CallInst>(Exn)->setDoesNotThrow(); in EmitTryCatchStmt()
255 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType); in EmitTryCatchStmt()
278 CGF.ObjCEHValueStack.push_back(Exn); in EmitTryCatchStmt()
DCGException.cpp881 llvm::Value *Exn, in CallBeginCatch() argument
884 CGF.EmitNounwindRuntimeCall(getBeginCatchFn(CGF.CGM), Exn); in CallBeginCatch()
898 llvm::Value *Exn = CGF.getExceptionFromSlot(); in InitCatchParam() local
911 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, EndCatchMightThrow); in InitCatchParam()
927 AdjustedExn = CGF.Builder.CreateConstGEP1_32(Exn, HeaderSize); in InitCatchParam()
967 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, false); in InitCatchParam()
1025 llvm::Value *rawAdjustedExn = CallBeginCatch(CGF, Exn, true); in InitCatchParam()
1034 CGF.EmitNounwindRuntimeCall(getGetExceptionPtrFn(CGF.CGM), Exn); in InitCatchParam()
1063 CallBeginCatch(CGF, Exn, true); in InitCatchParam()
1094 llvm::Value *Exn = CGF.getExceptionFromSlot(); in BeginCatch() local
[all …]
/external/llvm/include/llvm/IR/
DInstructions.h3223 explicit ResumeInst(Value *Exn, Instruction *InsertBefore=nullptr);
3224 ResumeInst(Value *Exn, BasicBlock *InsertAtEnd);
3228 static ResumeInst *Create(Value *Exn, Instruction *InsertBefore = nullptr) {
3229 return new(1) ResumeInst(Exn, InsertBefore);
3231 static ResumeInst *Create(Value *Exn, BasicBlock *InsertAtEnd) {
3232 return new(1) ResumeInst(Exn, InsertAtEnd);
DIRBuilder.h599 ResumeInst *CreateResume(Value *Exn) { in CreateResume() argument
600 return Insert(ResumeInst::Create(Exn)); in CreateResume()
/external/llvm/lib/IR/
DInstructions.cpp671 ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore) in ResumeInst() argument
672 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume, in ResumeInst()
674 Op<0>() = Exn; in ResumeInst()
677 ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd) in ResumeInst() argument
678 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume, in ResumeInst()
680 Op<0>() = Exn; in ResumeInst()
DCore.cpp2073 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn) { in LLVMBuildResume() argument
2074 return wrap(unwrap(B)->CreateResume(unwrap(Exn))); in LLVMBuildResume()
/external/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c1642 CAMLprim LLVMValueRef llvm_build_resume(LLVMValueRef Exn, value B) in llvm_build_resume() argument
1644 return LLVMBuildResume(Builder_val(B), Exn); in llvm_build_resume()
/external/llvm/include/llvm-c/
DCore.h2535 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn);
/external/llvm/lib/AsmParser/
DLLParser.cpp3821 Value *Exn; LocTy ExnLoc; in ParseResume() local
3822 if (ParseTypeAndValue(Exn, ExnLoc, PFS)) in ParseResume()
3825 ResumeInst *RI = ResumeInst::Create(Exn); in ParseResume()