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.cpp229 llvm::Value *Exn = RawExn; in EmitTryCatchStmt() local
231 Exn = CGF.Builder.CreateCall(beginCatchFn, RawExn, "exn.adjusted"); in EmitTryCatchStmt()
232 cast<llvm::CallInst>(Exn)->setDoesNotThrow(); in EmitTryCatchStmt()
249 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType); in EmitTryCatchStmt()
272 CGF.ObjCEHValueStack.push_back(Exn); in EmitTryCatchStmt()
DCGException.cpp923 llvm::Value *Exn, in CallBeginCatch() argument
925 llvm::CallInst *Call = CGF.Builder.CreateCall(getBeginCatchFn(CGF), Exn); in CallBeginCatch()
939 llvm::Value *Exn = CGF.getExceptionFromSlot(); in InitCatchParam() local
952 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, EndCatchMightThrow); in InitCatchParam()
968 AdjustedExn = CGF.Builder.CreateConstGEP1_32(Exn, HeaderSize); in InitCatchParam()
1009 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, false); in InitCatchParam()
1061 llvm::Value *rawAdjustedExn = CallBeginCatch(CGF, Exn, true); in InitCatchParam()
1070 CGF.Builder.CreateCall(getGetExceptionPtrFn(CGF), Exn); in InitCatchParam()
1100 CallBeginCatch(CGF, Exn, true); in InitCatchParam()
1131 llvm::Value *Exn = CGF.getExceptionFromSlot(); in BeginCatch() local
[all …]
/external/llvm/include/llvm/
DInstructions.h3203 explicit ResumeInst(Value *Exn, Instruction *InsertBefore=0);
3204 ResumeInst(Value *Exn, BasicBlock *InsertAtEnd);
3208 static ResumeInst *Create(Value *Exn, Instruction *InsertBefore = 0) {
3209 return new(1) ResumeInst(Exn, InsertBefore);
3211 static ResumeInst *Create(Value *Exn, BasicBlock *InsertAtEnd) {
3212 return new(1) ResumeInst(Exn, InsertAtEnd);
DIRBuilder.h508 ResumeInst *CreateResume(Value *Exn) { in CreateResume() argument
509 return Insert(ResumeInst::Create(Exn)); in CreateResume()
/external/llvm/lib/VMCore/
DInstructions.cpp649 ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore) in ResumeInst() argument
650 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume, in ResumeInst()
652 Op<0>() = Exn; in ResumeInst()
655 ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd) in ResumeInst() argument
656 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume, in ResumeInst()
658 Op<0>() = Exn; in ResumeInst()
DCore.cpp1827 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn) { in LLVMBuildResume() argument
1828 return wrap(unwrap(B)->CreateResume(unwrap(Exn))); in LLVMBuildResume()
/external/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c1479 CAMLprim LLVMValueRef llvm_build_resume(LLVMValueRef Exn, value B) in llvm_build_resume() argument
1481 return LLVMBuildResume(Builder_val(B), Exn); in llvm_build_resume()
/external/llvm/lib/AsmParser/
DLLParser.cpp3300 Value *Exn; LocTy ExnLoc; in ParseResume() local
3301 if (ParseTypeAndValue(Exn, ExnLoc, PFS)) in ParseResume()
3304 ResumeInst *RI = ResumeInst::Create(Exn); in ParseResume()
/external/llvm/include/llvm-c/
DCore.h2309 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn);