Home
last modified time | relevance | path

Searched refs:EHCleanupScope (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/CodeGen/
DCGCleanup.cpp152 EHCleanupScope *cleanup = dyn_cast<EHCleanupScope>(&*it); in containsOnlyLifetimeMarkers()
163 if (auto *cleanup = dyn_cast<EHCleanupScope>(&*find(si))) in requiresLandingPad()
178 EHCleanupScope &cleanup = cast<EHCleanupScope>(*find(si)); in getInnermostActiveNormalCleanup()
187 char *Buffer = allocate(EHCleanupScope::getSizeForCleanupSize(Size)); in pushCleanup()
192 EHCleanupScope *Scope = in pushCleanup()
193 new (Buffer) EHCleanupScope(IsNormalCleanup, in pushCleanup()
213 assert(isa<EHCleanupScope>(*begin())); in popCleanup()
214 EHCleanupScope &Cleanup = cast<EHCleanupScope>(*begin()); in popCleanup()
277 unsigned MinSize = cast<EHCleanupScope>(*it).getFixupDepth(); in popNullFixups()
298 EHCleanupScope &cleanup = cast<EHCleanupScope>(*EHStack.begin()); in initFullExprCleanup()
[all …]
DCGCleanup.h65 friend class EHCleanupScope; variable
233 class LLVM_ALIGNAS(/*alignof(uint64_t)*/ 8) EHCleanupScope : public EHScope {
281 return sizeof(EHCleanupScope) + Size; in getSizeForCleanupSize()
285 return sizeof(EHCleanupScope) + CleanupBits.CleanupSize; in getAllocatedSize()
288 EHCleanupScope(bool isNormal, bool isEH, bool isActive, in EHCleanupScope() function
310 ~EHCleanupScope() = delete;
430 static_assert(llvm::AlignOf<EHCleanupScope>::Alignment ==
534 Size = static_cast<const EHCleanupScope *>(get())->getAllocatedSize();
DCGException.cpp674 return !cast<EHCleanupScope>(S).isEHCleanup(); in isNonEHScope()
782 hasCleanup = (hasCleanup || cast<EHCleanupScope>(*I).isEHCleanup()); in EmitLandingPad()