Searched refs:Exn (Results 1 - 10 of 10) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp235 llvm::Value *Exn = RawExn; local
237 Exn = CGF.Builder.CreateCall(beginCatchFn, RawExn, "exn.adjusted");
238 cast<llvm::CallInst>(Exn)->setDoesNotThrow();
255 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType);
278 CGF.ObjCEHValueStack.push_back(Exn);
H A DCGException.cpp881 llvm::Value *Exn,
884 CGF.EmitNounwindRuntimeCall(getBeginCatchFn(CGF.CGM), Exn);
898 llvm::Value *Exn = CGF.getExceptionFromSlot(); local
911 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, EndCatchMightThrow);
923 // Exn points to the struct _Unwind_Exception header, which
927 AdjustedExn = CGF.Builder.CreateConstGEP1_32(Exn, HeaderSize);
932 // the language/ABI contract here: we can't use Exn because it
967 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, false);
1025 llvm::Value *rawAdjustedExn = CallBeginCatch(CGF, Exn, true);
1034 CGF.EmitNounwindRuntimeCall(getGetExceptionPtrFn(CGF.CGM), Exn);
880 CallBeginCatch(CodeGenFunction &CGF, llvm::Value *Exn, bool EndMightThrow) argument
1094 llvm::Value *Exn = CGF.getExceptionFromSlot(); local
1618 llvm::Value *Exn = getExceptionFromSlot(); local
[all...]
/external/robolectric/lib/main/
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...
/external/llvm/include/llvm/IR/
H A DInstructions.h3223 explicit ResumeInst(Value *Exn, Instruction *InsertBefore=nullptr);
3224 ResumeInst(Value *Exn, BasicBlock *InsertAtEnd);
3228 static ResumeInst *Create(Value *Exn, Instruction *InsertBefore = nullptr) { argument
3229 return new(1) ResumeInst(Exn, InsertBefore);
3231 static ResumeInst *Create(Value *Exn, BasicBlock *InsertAtEnd) { argument
3232 return new(1) ResumeInst(Exn, InsertAtEnd);
H A DIRBuilder.h599 ResumeInst *CreateResume(Value *Exn) { argument
600 return Insert(ResumeInst::Create(Exn));
/external/llvm/lib/IR/
H A DInstructions.cpp671 ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore) argument
672 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
674 Op<0>() = Exn;
677 ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd) argument
678 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
680 Op<0>() = Exn;
H A DCore.cpp2073 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn) { argument
2074 return wrap(unwrap(B)->CreateResume(unwrap(Exn)));
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c1642 CAMLprim LLVMValueRef llvm_build_resume(LLVMValueRef Exn, value B) argument
1644 return LLVMBuildResume(Builder_val(B), Exn);
/external/llvm/include/llvm-c/
H A DCore.h2535 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn);
/external/llvm/lib/AsmParser/
H A DLLParser.cpp3821 Value *Exn; LocTy ExnLoc;
3822 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
3825 ResumeInst *RI = ResumeInst::Create(Exn);

Completed in 1410 milliseconds