| /src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/ |
| eh_globals.cc | 85 __cxa_exception* exn = g->caughtExceptions; 87 while (exn) 89 next = exn->nextException; 90 _Unwind_DeleteException(&exn->unwindHeader); 91 exn = next;
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/ |
| eh_globals.cc | 85 __cxa_exception* exn = g->caughtExceptions; 87 while (exn) 89 next = exn->nextException; 90 _Unwind_DeleteException(&exn->unwindHeader); 91 exn = next;
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGObjCRuntime.cpp | 241 llvm::Value *Exn = RawExn; 243 Exn = CGF.EmitNounwindRuntimeCall(beginCatchFn, RawExn, "exn.adjusted"); 259 llvm::Value *CastExn = CGF.Builder.CreateBitCast(Exn, CatchType); 267 CGF.ObjCEHValueStack.push_back(Exn); 289 llvm::Value *exn, 296 exn = CGF.EmitARCRetainNonBlock(exn); 302 CGF.Builder.CreateStore(exn, paramAddr); 306 CGF.EmitARCInitWeak(paramAddr, exn); [all...] |
| CGException.cpp | 383 llvm::Value *exn; member in struct:__anon478::final 384 FreeException(llvm::Value *exn) : exn(exn) {} 386 CGF.EmitNounwindRuntimeCall(getFreeExceptionFn(CGF.CGM), exn); variable 423 ExceptionSlot = CreateTempAlloca(Int8PtrTy, "exn.slot"); 434 return Builder.CreateLoad(getExceptionSlot(), "exn"); 559 llvm::Value *exn = CGF.getExceptionFromSlot(); local 560 CGF.EmitRuntimeCall(getUnexpectedFn(CGF.CGM), exn) 1027 llvm::CallInst *Exn = CGF.Builder.CreateCall(GetExnFn, CPI) 1477 llvm::Value *exn = nullptr; local [all...] |
| CGObjCRuntime.h | 104 void EmitInitOfCatchParam(CodeGenFunction &CGF, llvm::Value *exn,
|
| ItaniumCXXABI.cpp | 169 llvm::Value *Exn) override; 520 llvm::Value *Exn) override; 4413 llvm::Value *Exn, 4416 CGF.EmitNounwindRuntimeCall(getBeginCatchFn(CGF.CGM), Exn); 4430 llvm::Value *Exn = CGF.getExceptionFromSlot(); 4443 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, EndCatchMightThrow); 4455 // Exn points to the struct _Unwind_Exception header, which 4459 AdjustedExn = CGF.Builder.CreateConstGEP1_32(Exn, HeaderSize); 4464 // the language/ABI contract here: we can't use Exn because it 4482 CGF.CreateTempAlloca(PtrTy, CGF.getPointerAlign(), "exn.byref.tmp") 4676 llvm::Value *exn = &*fn->arg_begin(); local [all...] |
| /src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/ |
| llvm.mli | 2172 (** [build_resume exn b] builds a [resume exn] instruction
|