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

/external/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp234 llvm::Value *Exn = RawExn; local
236 Exn = CGF.Builder.CreateCall(beginCatchFn, RawExn, "exn.adjusted");
237 cast<llvm::CallInst>(Exn)->setDoesNotThrow();
254 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType);
277 CGF.ObjCEHValueStack.push_back(Exn);
H A DCGException.cpp934 llvm::Value *Exn,
937 CGF.EmitNounwindRuntimeCall(getBeginCatchFn(CGF.CGM), Exn);
950 llvm::Value *Exn = CGF.getExceptionFromSlot(); local
963 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, EndCatchMightThrow);
975 // Exn points to the struct _Unwind_Exception header, which
979 AdjustedExn = CGF.Builder.CreateConstGEP1_32(Exn, HeaderSize);
984 // the language/ABI contract here: we can't use Exn because it
1019 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, false);
1077 llvm::Value *rawAdjustedExn = CallBeginCatch(CGF, Exn, true);
1086 CGF.EmitNounwindRuntimeCall(getGetExceptionPtrFn(CGF.CGM), Exn);
933 CallBeginCatch(CodeGenFunction &CGF, llvm::Value *Exn, bool EndMightThrow) argument
1146 llvm::Value *Exn = CGF.getExceptionFromSlot(); local
1671 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.h3215 explicit ResumeInst(Value *Exn, Instruction *InsertBefore=0);
3216 ResumeInst(Value *Exn, BasicBlock *InsertAtEnd);
3220 static ResumeInst *Create(Value *Exn, Instruction *InsertBefore = 0) { argument
3221 return new(1) ResumeInst(Exn, InsertBefore);
3223 static ResumeInst *Create(Value *Exn, BasicBlock *InsertAtEnd) { argument
3224 return new(1) ResumeInst(Exn, InsertAtEnd);
H A DIRBuilder.h540 ResumeInst *CreateResume(Value *Exn) { argument
541 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.cpp1933 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn) { argument
1934 return wrap(unwrap(B)->CreateResume(unwrap(Exn)));
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c1479 CAMLprim LLVMValueRef llvm_build_resume(LLVMValueRef Exn, value B) argument
1481 return LLVMBuildResume(Builder_val(B), Exn);
/external/llvm/include/llvm-c/
H A DCore.h2394 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn);
/external/llvm/lib/AsmParser/
H A DLLParser.cpp3627 Value *Exn; LocTy ExnLoc;
3628 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
3631 ResumeInst *RI = ResumeInst::Create(Exn);

Completed in 715 milliseconds