HomeSort by relevance Sort by last modified time
    Searched refs:Exn (Results 1 - 10 of 10) sorted by null

  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 229 llvm::Value *Exn = RawExn;
231 Exn = CGF.Builder.CreateCall(beginCatchFn, RawExn, "exn.adjusted");
232 cast<llvm::CallInst>(Exn)->setDoesNotThrow();
249 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType);
272 CGF.ObjCEHValueStack.push_back(Exn);
CGException.cpp 356 llvm::Value *exn; member in struct:__anon5134::FreeException
357 FreeException(llvm::Value *exn) : exn(exn) {}
359 CGF.Builder.CreateCall(getFreeExceptionFn(CGF), exn)
397 ExceptionSlot = CreateTempAlloca(Int8PtrTy, "exn.slot");
408 return Builder.CreateLoad(getExceptionSlot(), "exn");
546 llvm::Value *exn = CGF.getExceptionFromSlot(); local
547 CGF.Builder.CreateCall(getUnexpectedFn(CGF), exn)
1473 llvm::Value *exn = 0; local
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 44 void FindExnAndSelIntrinsics(BasicBlock *BB, CallInst *&Exn,
55 assert(!Exn && "Found more than one eh.exception call!");
56 Exn = CI;
64 if (Exn && Sel) return;
68 if (Exn && Sel) return;
71 FindExnAndSelIntrinsics(*I, Exn, Sel, Visited);
72 if (Exn && Sel) return;
164 CallInst *Exn = 0;
166 FindExnAndSelIntrinsics(UnwindDest, Exn, Sel, Visited);
167 assert(Exn && Sel && "Cannot find eh.exception and eh.selector calls!")
    [all...]
  /external/llvm/include/llvm/
Instructions.h     [all...]
IRBuilder.h 508 ResumeInst *CreateResume(Value *Exn) {
509 return Insert(ResumeInst::Create(Exn));
    [all...]
  /external/llvm/lib/VMCore/
Instructions.cpp 649 ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore)
650 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
652 Op<0>() = Exn;
655 ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd)
656 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
658 Op<0>() = Exn;
    [all...]
Core.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c     [all...]
  /external/llvm/include/llvm-c/
Core.h     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]

Completed in 615 milliseconds