Home
last modified time | relevance | path

Searched refs:EHScopeStack (Results 1 – 24 of 24) sorted by relevance

/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGCleanup.h165 friend class EHScopeStack;
236 EHScopeStack::stable_iterator EnclosingEH;
354 EHScopeStack::Cleanup *getCleanup() { in getCleanup()
491 class EHScopeStack::iterator {
494 friend class EHScopeStack; variable
551 inline EHScopeStack::iterator EHScopeStack::begin() const { in begin()
555 inline EHScopeStack::iterator EHScopeStack::end() const { in end()
559 inline void EHScopeStack::popCatch() { in popCatch()
567 inline void EHScopeStack::popTerminate() { in popTerminate()
575 inline EHScopeStack::iterator EHScopeStack::find(stable_iterator sp) const { in find()
[all …]
H A DCGCleanup.cpp169 EHScopeStack::stable_iterator
217 void EHScopeStack::popCleanup() { in popCleanup()
250 void EHScopeStack::popFilter() { in popFilter()
267 void EHScopeStack::pushTerminate() { in pushTerminate()
278 void EHScopeStack::popNullFixups() { in popNullFixups()
317 void EHScopeStack::Cleanup::anchor() {} in anchor()
433 EHScopeStack::stable_iterator Old, in PopCleanupBlocks()
762 EHScopeStack::Cleanup *Fn; in PopCleanupBlock()
1098 EHScopeStack::stable_iterator in EmitBranchThroughCleanup()
1170 for (EHScopeStack::stable_iterator in IsUsedAsNormalCleanup()
[all …]
H A DEHScopeStack.h94 class EHScopeStack {
102 friend class EHScopeStack;
269 EHScopeStack()
273 ~EHScopeStack() { delete[] StartOfBuffer; }
H A DCGBlocks.h166 EHScopeStack::stable_iterator Cleanup;
186 EHScopeStack::stable_iterator getCleanup() const { in getCleanup()
190 void setCleanup(EHScopeStack::stable_iterator cleanup) { in setCleanup()
H A DCGCall.h276 EHScopeStack::stable_iterator Cleanup;
318 void addArgCleanupDeactivation(EHScopeStack::stable_iterator Cleanup, in addArgCleanupDeactivation()
H A DCodeGenFunction.h251 void setScopeDepth(EHScopeStack::stable_iterator depth) {
257 EHScopeStack::stable_iterator ScopeDepth;
349 EHScopeStack::stable_iterator PrologueCleanupDepth;
619 EHScopeStack EHStack;
625 class CallLifetimeEnd final : public EHScopeStack::Cleanup {
780 typedef EHScopeStack::ConditionalCleanup<T, As...> CleanupType;
800 typedef EHScopeStack::ConditionalCleanup<T, As...> CleanupType;
867 void ActivateCleanupBlock(EHScopeStack::stable_iterator Cleanup,
928 EHScopeStack::stable_iterator CurrentCleanupScopeDepth =
929 EHScopeStack::stable_end();
[all …]
H A DCGException.cpp382 struct FreeException final : EHScopeStack::Cleanup {
399 EHScopeStack::stable_iterator cleanup = EHStack.stable_begin(); in EmitAnyExprToExn()
655 CodeGenFunction::getEHDispatchBlock(EHScopeStack::stable_iterator si) { in getEHDispatchBlock()
702 CodeGenFunction::getFuncletEHDispatchBlock(EHScopeStack::stable_iterator SI) { in getFuncletEHDispatchBlock()
799 for (EHScopeStack::iterator ir = EHStack.begin(); true; ++ir) { in getInvokeDestImpl()
851 for (EHScopeStack::iterator I = EHStack.begin(), E = EHStack.end(); I != E; in EmitLandingPad()
1321 struct CallEndCatchForFinally final : EHScopeStack::Cleanup {
1342 struct PerformFinally final : EHScopeStack::Cleanup {
1703 struct PerformSEHFinally final : EHScopeStack::Cleanup {
H A DCGClass.cpp508 struct CallBaseDtor final : EHScopeStack::Cleanup {
1575 struct CallDtorDelete final : EHScopeStack::Cleanup {
1613 struct CallDtorDeleteConditional final : EHScopeStack::Cleanup {
1628 class DestroyField final : public EHScopeStack::Cleanup {
1670 struct SanitizeDtorTrivialBase final : EHScopeStack::Cleanup {
1697 class SanitizeDtorFieldRange final : public EHScopeStack::Cleanup {
1745 class SanitizeDtorVTable final : public EHScopeStack::Cleanup {
1769 EHScopeStack &EHStack;
1774 SanitizeDtorCleanupBuilder(ASTContext &Context, EHScopeStack &EHStack, in SanitizeDtorCleanupBuilder()
2416 struct CallDelegatingCtorDtor final : EHScopeStack::Cleanup {
[all …]
H A DCGObjCRuntime.cpp128 struct CallObjCEndCatch final : EHScopeStack::Cleanup {
312 struct CallSyncExit final : EHScopeStack::Cleanup {
H A DCGDecl.cpp487 struct DestroyObject final : EHScopeStack::Cleanup {
509 struct DestroyNRVOVariable : EHScopeStack::Cleanup {
566 struct CallStackRestore final : EHScopeStack::Cleanup {
577 struct ExtendGCLifetime final : EHScopeStack::Cleanup {
592 struct CallCleanupFunction final : EHScopeStack::Cleanup {
2163 EHScopeStack::ConditionalCleanup<DestroyObject, Address, QualType, in pushLifetimeExtendedDestroy()
2323 class RegularPartialArrayDestroy final : public EHScopeStack::Cleanup {
2346 class IrregularPartialArrayDestroy final : public EHScopeStack::Cleanup {
2427 struct ConsumeARCParameter final : EHScopeStack::Cleanup {
H A DCGCoroutine.cpp396 struct CallCoroEnd final : public EHScopeStack::Cleanup {
419 struct CallCoroDelete final : public EHScopeStack::Cleanup {
H A DCGExprAgg.cpp274 EHScopeStack::stable_iterator LifetimeEndBlock; in withReturnValueSlot()
527 EHScopeStack::stable_iterator cleanup; in EmitArrayInit()
1336 SmallVector<EHScopeStack::stable_iterator, 16> Cleanups; in VisitLambdaExpr()
1637 SmallVector<EHScopeStack::stable_iterator, 16> cleanups; in VisitInitListExpr()
1639 auto addCleanup = [&](const EHScopeStack::stable_iterator &cleanup) { in VisitInitListExpr()
1819 EHScopeStack::stable_iterator cleanup; in VisitArrayInitLoopExpr()
H A DCGExprCXX.cpp1001 EHScopeStack::stable_iterator Cleanup; in EmitNewArrayInitializer()
1393 class CallDeleteDuringNew final : public EHScopeStack::Cleanup {
1696 EHScopeStack::stable_iterator operatorDeleteCleanup; in EmitCXXNewExpr()
1848 struct CallObjectDelete final : EHScopeStack::Cleanup {
1989 struct CallArrayDelete final : EHScopeStack::Cleanup {
H A DCGCXXABI.h661 struct CatchRetScope final : EHScopeStack::Cleanup {
H A DCGObjC.cpp721 struct FinishARCDealloc final : EHScopeStack::Cleanup {
1596 struct DestroyIvar final : EHScopeStack::Cleanup {
2052 struct CallObjCRelease final : EHScopeStack::Cleanup {
2824 struct CallObjCAutoreleasePoolObject final : EHScopeStack::Cleanup {
2833 struct CallObjCMRRAutoreleasePoolObject final : EHScopeStack::Cleanup {
H A DCGStmt.cpp621 EHScopeStack::stable_iterator::invalid(), in getJumpDestForLabel()
665 EHScopeStack::stable_iterator innermostScope in rescopeLabels()
679 if (innermostScope != EHScopeStack::stable_end() && ParentScope) { in rescopeLabels()
H A DCGBlocks.cpp1682 struct CallBlockRelease final : EHScopeStack::Cleanup {
2297 EHScopeStack::stable_iterator cleanupDepth = CGF.EHStack.stable_begin(); in emitDispose()
2327 EHScopeStack::stable_iterator cleanupDepth = CGF.EHStack.stable_begin(); in emitDispose()
H A DCGCall.cpp2661 struct CopyBackSwiftError final : EHScopeStack::Cleanup {
3810 EHScopeStack::stable_iterator cleanup = in EmitDelegateCallArg()
4292 struct DestroyUnpassedArg final : EHScopeStack::Cleanup {
H A DMicrosoftCXXABI.cpp2551 struct ResetGuardBit final : EHScopeStack::Cleanup {
2568 struct CallInitThreadAbort final : EHScopeStack::Cleanup {
H A DItaniumCXXABI.cpp2328 struct CallGuardAbort final : EHScopeStack::Cleanup {
4398 struct CallEndCatch final : EHScopeStack::Cleanup {
H A DCGOpenMPRuntimeGPU.cpp3674 struct GlobalizationScope final : EHScopeStack::Cleanup { in emitFunctionProlog()
H A DCGOpenMPRuntime.cpp582 class CleanupTy final : public EHScopeStack::Cleanup {
11951 class DoacrossCleanupTy final : public EHScopeStack::Cleanup {
12200 class OMPAllocateCleanupTy final : public EHScopeStack::Cleanup { in getAddressOfLocalVariable()
H A DCGObjCMac.cpp4242 struct PerformFragileFinally final : EHScopeStack::Cleanup {
H A DCGBuiltin.cpp1681 struct CallObjCArcUse final : EHScopeStack::Cleanup {