reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/CodeGen/CGException.cpp
 1418   EHCatchScope &catchScope = cast<EHCatchScope>(*CGF.EHStack.begin());
 1421   CGF.popCatchScope();
 1427     CGBuilderTy::InsertPoint savedIP = CGF.Builder.saveAndClearIP();
 1428     CGF.EmitBlock(catchBB);
 1434       exn = CGF.getExceptionFromSlot();
 1435       CGF.EmitNounwindRuntimeCall(BeginCatchFn, exn);
 1440       if (!exn) exn = CGF.getExceptionFromSlot();
 1441       CGF.Builder.CreateAlignedStore(exn, SavedExnVar, CGF.getPointerAlign());
 1441       CGF.Builder.CreateAlignedStore(exn, SavedExnVar, CGF.getPointerAlign());
 1445     CGF.Builder.CreateFlagStore(true, ForEHVar);
 1448     CGF.EmitBranchThroughCleanup(RethrowDest);
 1450     CGF.Builder.restoreIP(savedIP);
 1454   CGF.PopCleanupBlock();