/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | AutoUpgrade.cpp | 426 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 …]
|
D | Instructions.cpp | 671 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()
|
D | Core.cpp | 1797 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn) { in LLVMBuildResume() argument 1798 return wrap(unwrap(B)->CreateResume(unwrap(Exn))); in LLVMBuildResume()
|
/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 | 235 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()
|
D | CGException.cpp | 1306 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()
|
D | ItaniumCXXABI.cpp | 169 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 …]
|
D | CGCXXABI.cpp | 321 llvm::Value *Exn) { in emitTerminateForUnexpectedException() argument
|
D | CGCXXABI.h | 247 llvm::Value *Exn);
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | SjLjEHPrepare.cpp | 370 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/ |
D | Instructions.h | 2938 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/ |
D | Instructions.h | 3896 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);
|
D | IRBuilder.h | 717 ResumeInst *CreateResume(Value *Exn) { in CreateResume() argument 718 return Insert(ResumeInst::Create(Exn)); in CreateResume()
|
/external/llvm/lib/IR/ |
D | Instructions.cpp | 862 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()
|
D | Core.cpp | 2494 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/ |
D | e9545fe1c395c9f9dc517f01ea8fb331.00001dca.honggfuzz.cov | 49 ��p�8z�|!��Exn{�4��/&de�d���F�-}���
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
D | e9545fe1c395c9f9dc517f01ea8fb331.00001dca.honggfuzz.cov | 49 ��p�8z�|!��Exn{�4��/&de�d���F�-}���
|
/external/llvm/test/Transforms/InstSimplify/ |
D | compare.ll | 1248 %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/ |
D | IRBuilder.h | 478 ResumeInst *CreateResume(Value *Exn) { in CreateResume() argument 479 return Insert(ResumeInst::Create(Exn)); in CreateResume()
|
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/ |
D | llvm_ocaml.c | 1477 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/ |
D | llvm_ocaml.c | 1835 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/ |
D | LLParser.cpp | 3261 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/ |
D | Core.h | 866 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn);
|
/external/llvm/include/llvm-c/ |
D | Core.h | 2907 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn);
|
/external/llvm/lib/AsmParser/ |
D | LLParser.cpp | 5349 Value *Exn; LocTy ExnLoc; in ParseResume() local 5350 if (ParseTypeAndValue(Exn, ExnLoc, PFS)) in ParseResume() 5353 ResumeInst *RI = ResumeInst::Create(Exn); in ParseResume()
|