Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGCleanup.cpp400 E = LifetimeExtendedCleanupStack.size(); I != E; /**/) { in PopCleanupBlocks()
407 LifetimeExtendedCleanupStack[I]); in PopCleanupBlocks()
411 &LifetimeExtendedCleanupStack[I], in PopCleanupBlocks()
415 LifetimeExtendedCleanupStack.resize(OldLifetimeExtendedSize); in PopCleanupBlocks()
H A DCodeGenFunction.h276 llvm::SmallVector<char, 256> LifetimeExtendedCleanupStack; variable
431 size_t OldSize = LifetimeExtendedCleanupStack.size(); in pushCleanupAfterFullExpr()
432 LifetimeExtendedCleanupStack.resize( in pushCleanupAfterFullExpr()
433 LifetimeExtendedCleanupStack.size() + sizeof(Header) + Header.Size); in pushCleanupAfterFullExpr()
435 char *Buffer = &LifetimeExtendedCleanupStack[OldSize]; in pushCleanupAfterFullExpr()
504 CGF.LifetimeExtendedCleanupStack.size(); in RunCleanupsScope()
H A DCodeGenFunction.cpp76 assert(LifetimeExtendedCleanupStack.empty() && "failed to emit a cleanup"); in ~CodeGenFunction()