Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/VMCore/
DAutoUpgrade.cpp426 static void FindExnAndSelIntrinsics(BasicBlock *BB, CallInst *&Exn, in FindExnAndSelIntrinsics() argument
437 assert(!Exn && "Found more than one eh.exception call!"); in FindExnAndSelIntrinsics()
438 Exn = CI; in FindExnAndSelIntrinsics()
446 if (Exn && Sel) return; in FindExnAndSelIntrinsics()
450 if (Exn && Sel) return; in FindExnAndSelIntrinsics()
453 FindExnAndSelIntrinsics(*I, Exn, Sel, Visited); in FindExnAndSelIntrinsics()
454 if (Exn && Sel) return; in FindExnAndSelIntrinsics()
543 CallInst *Exn = 0; in UpgradeExceptionHandling() local
545 FindExnAndSelIntrinsics(UnwindDest, Exn, Sel, Visited); in UpgradeExceptionHandling()
546 assert(Exn && Sel && "Cannot find eh.exception and eh.selector calls!"); in UpgradeExceptionHandling()
[all …]
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.cpp1797 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn) { in LLVMBuildResume() argument
1798 return wrap(unwrap(B)->CreateResume(unwrap(Exn))); in LLVMBuildResume()
/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()
261 CGF.ObjCEHValueStack.push_back(Exn); in EmitTryCatchStmt()
DCGException.cpp1306 llvm::Value *Exn = nullptr; in getTerminateLandingPad() local
1308 Exn = Builder.CreateExtractValue(LPadInst, 0); in getTerminateLandingPad()
1310 CGM.getCXXABI().emitTerminateForUnexpectedException(*this, Exn); in getTerminateLandingPad()
1330 llvm::Value *Exn = nullptr; in getTerminateHandler() local
1340 Exn = getExceptionFromSlot(); in getTerminateHandler()
1343 CGM.getCXXABI().emitTerminateForUnexpectedException(*this, Exn); in getTerminateHandler()
1376 llvm::Value *Exn = getExceptionFromSlot(); in getEHResumeBlock() local
1379 llvm::Type *LPadType = llvm::StructType::get(Exn->getType(), in getEHResumeBlock()
1382 LPadVal = Builder.CreateInsertValue(LPadVal, Exn, 0, "lpad.val"); in getEHResumeBlock()
DItaniumCXXABI.cpp169 llvm::Value *Exn) override;
3588 llvm::Value *Exn, in CallBeginCatch() argument
3591 CGF.EmitNounwindRuntimeCall(getBeginCatchFn(CGF.CGM), Exn); in CallBeginCatch()
3605 llvm::Value *Exn = CGF.getExceptionFromSlot(); in InitCatchParam() local
3618 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, EndCatchMightThrow); in InitCatchParam()
3634 AdjustedExn = CGF.Builder.CreateConstGEP1_32(Exn, HeaderSize); in InitCatchParam()
3675 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, false); in InitCatchParam()
3734 llvm::Value *rawAdjustedExn = CallBeginCatch(CGF, Exn, true); in InitCatchParam()
3744 CGF.EmitNounwindRuntimeCall(getGetExceptionPtrFn(CGF.CGM), Exn); in InitCatchParam()
3773 CallBeginCatch(CGF, Exn, true); in InitCatchParam()
[all …]
DCGCXXABI.cpp321 llvm::Value *Exn) { in emitTerminateForUnexpectedException() argument
DCGCXXABI.h247 llvm::Value *Exn);
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DSjLjEHPrepare.cpp370 Value *Exn = new LoadInst(ExnAddr, "exn", false, in CreateLandingPadLoad() local
373 Exn = CastInst::Create(Instruction::IntToPtr, Exn, Ty, "", InsertPt); in CreateLandingPadLoad()
376 Ty = StructType::get(Exn->getType(), Sel->getType(), NULL); in CreateLandingPadLoad()
378 Exn, 0, in CreateLandingPadLoad()
/external/swiftshader/third_party/LLVM/include/llvm/
DInstructions.h2938 explicit ResumeInst(Value *Exn, Instruction *InsertBefore=0);
2939 ResumeInst(Value *Exn, BasicBlock *InsertAtEnd);
2943 static ResumeInst *Create(Value *Exn, Instruction *InsertBefore = 0) {
2944 return new(1) ResumeInst(Exn, InsertBefore);
2946 static ResumeInst *Create(Value *Exn, BasicBlock *InsertAtEnd) {
2947 return new(1) ResumeInst(Exn, InsertAtEnd);
/external/llvm/include/llvm/IR/
DInstructions.h3896 explicit ResumeInst(Value *Exn, Instruction *InsertBefore=nullptr);
3897 ResumeInst(Value *Exn, BasicBlock *InsertAtEnd);
3905 static ResumeInst *Create(Value *Exn, Instruction *InsertBefore = nullptr) {
3906 return new(1) ResumeInst(Exn, InsertBefore);
3908 static ResumeInst *Create(Value *Exn, BasicBlock *InsertAtEnd) {
3909 return new(1) ResumeInst(Exn, InsertAtEnd);
DIRBuilder.h717 ResumeInst *CreateResume(Value *Exn) { in CreateResume() argument
718 return Insert(ResumeInst::Create(Exn)); in CreateResume()
/external/llvm/lib/IR/
DInstructions.cpp862 ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore) in ResumeInst() argument
863 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume, in ResumeInst()
865 Op<0>() = Exn; in ResumeInst()
868 ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd) in ResumeInst() argument
869 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume, in ResumeInst()
871 Op<0>() = Exn; in ResumeInst()
DCore.cpp2494 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn) { in LLVMBuildResume() argument
2495 return wrap(unwrap(B)->CreateResume(unwrap(Exn))); in LLVMBuildResume()
/external/honggfuzz/examples/apache-httpd/corpus_http1/
De9545fe1c395c9f9dc517f01ea8fb331.00001dca.honggfuzz.cov49 ��p�8z�|!��Exn{�4��/&de�d���F�-}���
/external/honggfuzz/examples/apache-httpd/corpus_http2/
De9545fe1c395c9f9dc517f01ea8fb331.00001dca.honggfuzz.cov49 ��p�8z�|!��Exn{�4��/&de�d���F�-}���
/external/llvm/test/Transforms/InstSimplify/
Dcompare.ll1248 %Exn = icmp sge i32 %Cxn, %Ax
1289 call void @helper_i1(i1 %Exn)
1326 ; CHECK: call void @helper_i1(i1 %Exn)
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DIRBuilder.h478 ResumeInst *CreateResume(Value *Exn) { in CreateResume() argument
479 return Insert(ResumeInst::Create(Exn)); in CreateResume()
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
Dllvm_ocaml.c1477 CAMLprim LLVMValueRef llvm_build_resume(LLVMValueRef Exn, value B) in llvm_build_resume() argument
1479 return LLVMBuildResume(Builder_val(B), Exn); in llvm_build_resume()
/external/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c1835 CAMLprim LLVMValueRef llvm_build_resume(LLVMValueRef Exn, value B) in llvm_build_resume() argument
1837 return LLVMBuildResume(Builder_val(B), Exn); in llvm_build_resume()
/external/swiftshader/third_party/LLVM/lib/AsmParser/
DLLParser.cpp3261 Value *Exn; LocTy ExnLoc; in ParseResume() local
3262 if (ParseTypeAndValue(Exn, ExnLoc, PFS)) in ParseResume()
3265 ResumeInst *RI = ResumeInst::Create(Exn); in ParseResume()
/external/swiftshader/third_party/LLVM/include/llvm-c/
DCore.h866 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn);
/external/llvm/include/llvm-c/
DCore.h2907 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn);
/external/llvm/lib/AsmParser/
DLLParser.cpp5349 Value *Exn; LocTy ExnLoc; in ParseResume() local
5350 if (ParseTypeAndValue(Exn, ExnLoc, PFS)) in ParseResume()
5353 ResumeInst *RI = ResumeInst::Create(Exn); in ParseResume()