HomeSort by relevance Sort by last modified time
    Searched defs:Exn (Results 1 - 3 of 3) 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...]

Completed in 35 milliseconds