/external/llvm/test/CodeGen/ARM/ |
D | gv-stubs-crash.ll | 4 @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/ |
D | CGObjCRuntime.cpp | 226 llvm::Value *Exn = RawExn; in EmitTryCatchStmt() local 228 Exn = CGF.Builder.CreateCall(beginCatchFn, RawExn, "exn.adjusted"); in EmitTryCatchStmt() 229 cast<llvm::CallInst>(Exn)->setDoesNotThrow(); in EmitTryCatchStmt() 246 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType); in EmitTryCatchStmt() 269 CGF.ObjCEHValueStack.push_back(Exn); in EmitTryCatchStmt()
|
D | CGException.cpp | 911 llvm::Value *Exn, in CallBeginCatch() argument 913 llvm::CallInst *Call = CGF.Builder.CreateCall(getBeginCatchFn(CGF), Exn); in CallBeginCatch() 927 llvm::Value *Exn = CGF.getExceptionFromSlot(); in InitCatchParam() local 940 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, EndCatchMightThrow); in InitCatchParam() 956 AdjustedExn = CGF.Builder.CreateConstGEP1_32(Exn, HeaderSize); in InitCatchParam() 997 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, false); in InitCatchParam() 1049 llvm::Value *rawAdjustedExn = CallBeginCatch(CGF, Exn, true); in InitCatchParam() 1058 CGF.Builder.CreateCall(getGetExceptionPtrFn(CGF), Exn); in InitCatchParam() 1088 CallBeginCatch(CGF, Exn, true); in InitCatchParam() 1119 llvm::Value *Exn = CGF.getExceptionFromSlot(); in BeginCatch() local [all …]
|
/external/llvm/include/llvm/ |
D | Instructions.h | 3074 explicit ResumeInst(Value *Exn, Instruction *InsertBefore=0); 3075 ResumeInst(Value *Exn, BasicBlock *InsertAtEnd); 3079 static ResumeInst *Create(Value *Exn, Instruction *InsertBefore = 0) { 3080 return new(1) ResumeInst(Exn, InsertBefore); 3082 static ResumeInst *Create(Value *Exn, BasicBlock *InsertAtEnd) { 3083 return new(1) ResumeInst(Exn, InsertAtEnd);
|
/external/llvm/lib/VMCore/ |
D | Instructions.cpp | 643 ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore) in ResumeInst() argument 644 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume, in ResumeInst() 646 Op<0>() = Exn; in ResumeInst() 649 ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd) in ResumeInst() argument 650 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume, in ResumeInst() 652 Op<0>() = Exn; in ResumeInst()
|
D | Core.cpp | 1808 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn) { in LLVMBuildResume() argument 1809 return wrap(unwrap(B)->CreateResume(unwrap(Exn))); in LLVMBuildResume()
|
/external/llvm/include/llvm/Support/ |
D | IRBuilder.h | 493 ResumeInst *CreateResume(Value *Exn) { in CreateResume() argument 494 return Insert(ResumeInst::Create(Exn)); in CreateResume()
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm_ocaml.c | 1476 CAMLprim LLVMValueRef llvm_build_resume(LLVMValueRef Exn, value B) in llvm_build_resume() argument 1478 return LLVMBuildResume(Builder_val(B), Exn); in llvm_build_resume()
|
/external/llvm/lib/AsmParser/ |
D | LLParser.cpp | 3254 Value *Exn; LocTy ExnLoc; in ParseResume() local 3255 if (ParseTypeAndValue(Exn, ExnLoc, PFS)) in ParseResume() 3258 ResumeInst *RI = ResumeInst::Create(Exn); in ParseResume()
|
/external/llvm/include/llvm-c/ |
D | Core.h | 2300 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn);
|