Searched defs:cleanups (Results 1 - 6 of 6) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGBlocks.cpp491 /// a full-expression so that the block's cleanups are pushed at the
503 // pushing cleanups as necessary.
514 // If there are cleanups to emit, enter them (but inactive).
571 ArrayRef<ExprWithCleanups::CleanupObject> cleanups = E->getObjects(); local
573 i = cleanups.begin(), e = cleanups.end(); i != e; ++i) {
1339 CodeGenFunction::RunCleanupsScope cleanups(*this);
1405 cleanups.ForceCleanup();
H A DCGExprAgg.cpp798 CodeGenFunction::RunCleanupsScope cleanups(CGF);
983 SmallVector<EHScopeStack::stable_iterator, 16> cleanups; local
1022 // initialized, we can end up pushing a linear number of cleanups.
1033 cleanups.push_back(CGF.EHStack.stable_begin());
1047 // Deactivate all the partial cleanups in reverse order, which
1049 for (unsigned i = cleanups.size(); i != 0; --i)
1050 CGF.DeactivateCleanupBlock(cleanups[i-1], cleanupDominator);
1292 const ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(init); local
1293 if (cleanups)
1294 init = cleanups
[all...]
H A DCodeGenModule.cpp1369 ArrayRef<ExprWithCleanups::CleanupObject> cleanups; local
1372 cleanups = withCleanups->getObjects();
1418 if (!cleanups.empty())
1419 arrayInit = ExprWithCleanups::Create(ctx, arrayInit, cleanups);
H A DCGExpr.cpp498 // __weak objects always get EH cleanups; otherwise, exceptions
692 const ExprWithCleanups *cleanups = cast<ExprWithCleanups>(E); local
693 enterFullExpression(cleanups);
695 return EmitLValue(cleanups->getSubExpr());
/external/yaffs2/yaffs2/
H A Dyaffs_guts.c2328 int cleanups = 0; local
2415 dev->gcCleanupList[cleanups] =
2417 cleanups++;
2490 /* Do any required cleanups */
2491 for (i = 0; i < cleanups; i++) {
/external/clang/lib/Sema/
H A DSemaExpr.cpp3315 // Set the "needs cleanups" bit regardless of whether there are
8543 ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(Statement); local
8544 if (!cleanups) return 0;
8546 ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(cleanups->getSubExpr());
8555 cleanups->setSubExpr(producer);
8556 return cleanups;
8579 assert(!ExprNeedsCleanups && "cleanups within StmtExpr not correctly bound!");
8891 // cleanups from the enclosing full-expression.
9037 assert(!ExprNeedsCleanups && "cleanups within block not correctly bound!");
9997 // If this initialization requires any cleanups (
[all...]

Completed in 151 milliseconds