class ExprWithCleanups
Declaration
class ExprWithCleanups : public FullExpr, private TrailingObjects { /* full declaration omitted */ };
Description
Represents an expression -- generally a full-expression -- that introduces cleanups to be run at the end of the sub-expression's evaluation. The most common source of expression-introduced cleanups is temporary objects in C++, but several other kinds of expressions can create cleanups, including basically every call in ARC that returns an Objective-C pointer. This expression also tracks whether the sub-expression contains a potentially-evaluated block literal. The lifetime of a block literal is the extent of the enclosing scope.
Declared at: clang/include/clang/AST/ExprCXX.h:3359
Inherits from: FullExpr, TrailingObjects
Member Variables
Inherited from FullExpr:
Inherited from Stmt:
Method Overview
- public static clang::ExprWithCleanups * Create(const clang::ASTContext & C, clang::Stmt::EmptyShell empty, unsigned int numObjects)
- public static clang::ExprWithCleanups * Create(const clang::ASTContext & C, clang::Expr * subexpr, bool CleanupsHaveSideEffects, ArrayRef<clang::ExprWithCleanups::CleanupObject> objects)
- private ExprWithCleanups(clang::Stmt::EmptyShell, unsigned int NumObjects)
- private ExprWithCleanups(clang::Expr * SubExpr, bool CleanupsHaveSideEffects, ArrayRef<clang::ExprWithCleanups::CleanupObject> Objects)
- public clang::Stmt::child_range children()
- public clang::Stmt::const_child_range children() const
- public static bool classof(const clang::Stmt * T)
- public bool cleanupsHaveSideEffects() const
- public clang::SourceLocation getBeginLoc() const
- public clang::SourceLocation getEndLoc() const
- public unsigned int getNumObjects() const
- public clang::ExprWithCleanups::CleanupObject getObject(unsigned int i) const
- public ArrayRef<clang::ExprWithCleanups::CleanupObject> getObjects() const
Inherited from FullExpr:
Inherited from Expr:
- public Classify
- public ClassifyLValue
- public ClassifyModifiable
- public EvaluateAsBooleanCondition
- public EvaluateAsConstantExpr
- public EvaluateAsFixedPoint
- public EvaluateAsFloat
- public EvaluateAsInitializer
- public EvaluateAsInt
- public EvaluateAsLValue
- public EvaluateAsRValue
- public EvaluateForOverflow
- public EvaluateKnownConstInt
- public EvaluateKnownConstIntCheckOverflow
- public EvaluateWithSubstitution
- public HasSideEffects
- public IgnoreCasts
- public IgnoreCasts
- public IgnoreConversionOperatorSingleStep
- public IgnoreConversionOperatorSingleStep
- public IgnoreImpCasts
- public IgnoreImpCasts
- public IgnoreImplicit
- public IgnoreImplicit
- public IgnoreImplicitAsWritten
- public IgnoreImplicitAsWritten
- public IgnoreParenBaseCasts
- public IgnoreParenBaseCasts
- public IgnoreParenCasts
- public IgnoreParenCasts
- public IgnoreParenImpCasts
- public IgnoreParenImpCasts
- public IgnoreParenLValueCasts
- public IgnoreParenLValueCasts
- public IgnoreParenNoopCasts
- public IgnoreParenNoopCasts
- public IgnoreParens
- public IgnoreParens
- public IgnoreUnlessSpelledInSource
- public IgnoreUnlessSpelledInSource
- public classof
- public containsErrors
- public containsUnexpandedParameterPack
- public findBoundMemberType
- public getAsBuiltinConstantDeclRef
- public getBestDynamicClassType
- public getBestDynamicClassTypeExpr
- public getDependence
- public getExprLoc
- public getFPFeaturesInEffect
- public getIntegerConstantExpr
- public getObjCProperty
- public getObjectKind
- public getReferencedDeclOfCallee
- public getReferencedDeclOfCallee
- public getSourceBitField
- public getSourceBitField
- public getType
- public getValueKind
- public getValueKindForType
- public hasAnyTypeDependentArguments
- public hasNonTrivialCall
- public hasPlaceholderType
- public hasPlaceholderType
- public isBoundMemberFunction
- public isCXX11ConstantExpr
- public isCXX98IntegralConstantExpr
- public isConstantInitializer
- public isDefaultArgument
- public isEvaluatable
- public isGLValue
- public isImplicitCXXThis
- public isInstantiationDependent
- public isIntegerConstantExpr
- public isKnownToHaveBooleanValue
- public isLValue
- public isModifiableLvalue
- public isNullPointerConstant
- public isOBJCGCCandidate
- public isObjCSelfExpr
- public isOrdinaryOrBitFieldObject
- public isPRValue
- public isPotentialConstantExpr
- public isPotentialConstantExprUnevaluated
- public isReadIfDiscardedInCPlusPlus11
- public isSameComparisonOperand
- public isTemporaryObject
- public isTypeDependent
- public isUnusedResultAWarning
- public isValueDependent
- public isXValue
- public refersToBitField
- public refersToGlobalRegisterVar
- public refersToMatrixElement
- public refersToVectorElement
- protected setDependence
- public setObjectKind
- public setType
- public setValueKind
- public skipRValueSubobjectAdjustments
- public skipRValueSubobjectAdjustments
- public tryEvaluateObjectSize
- public tryEvaluateStrLen
Inherited from ValueStmt:
Inherited from Stmt:
- public EnableStatistics
- public IgnoreContainers
- public IgnoreContainers
- public PrintStats
- public ProcessODRHash
- public Profile
- public addStmtClass
- public child_begin
- public child_begin
- public child_end
- public child_end
- public children
- public children
- public determineLikelihoodConflict
- public dump
- public dump
- public dumpColor
- public dumpPretty
- public getBeginLoc
- public getEndLoc
- public getID
- public getLikelihood
- public getLikelihood
- public getLikelihood
- public getLikelihoodAttr
- public getSourceRange
- public getStmtClass
- public getStmtClassName
- public printJson
- public printPretty
- public printPrettyControlled
- public stripLabelLikeStatements
- public stripLabelLikeStatements
- public viewAST
Methods
¶static clang::ExprWithCleanups* Create(
const clang::ASTContext& C,
clang::Stmt::EmptyShell empty,
unsigned int numObjects)
static clang::ExprWithCleanups* Create(
const clang::ASTContext& C,
clang::Stmt::EmptyShell empty,
unsigned int numObjects)
Declared at: clang/include/clang/AST/ExprCXX.h:3380
Parameters
- const clang::ASTContext& C
- clang::Stmt::EmptyShell empty
- unsigned int numObjects
¶static clang::ExprWithCleanups* Create(
const clang::ASTContext& C,
clang::Expr* subexpr,
bool CleanupsHaveSideEffects,
ArrayRef<
clang::ExprWithCleanups::CleanupObject>
objects)
static clang::ExprWithCleanups* Create(
const clang::ASTContext& C,
clang::Expr* subexpr,
bool CleanupsHaveSideEffects,
ArrayRef<
clang::ExprWithCleanups::CleanupObject>
objects)
Declared at: clang/include/clang/AST/ExprCXX.h:3383
Parameters
- const clang::ASTContext& C
- clang::Expr* subexpr
- bool CleanupsHaveSideEffects
- ArrayRef<clang::ExprWithCleanups::CleanupObject> objects
¶ExprWithCleanups(clang::Stmt::EmptyShell,
unsigned int NumObjects)
ExprWithCleanups(clang::Stmt::EmptyShell,
unsigned int NumObjects)
Declared at: clang/include/clang/AST/ExprCXX.h:3375
Parameters
- clang::Stmt::EmptyShell
- unsigned int NumObjects
¶ExprWithCleanups(
clang::Expr* SubExpr,
bool CleanupsHaveSideEffects,
ArrayRef<
clang::ExprWithCleanups::CleanupObject>
Objects)
ExprWithCleanups(
clang::Expr* SubExpr,
bool CleanupsHaveSideEffects,
ArrayRef<
clang::ExprWithCleanups::CleanupObject>
Objects)
Declared at: clang/include/clang/AST/ExprCXX.h:3376
Parameters
- clang::Expr* SubExpr
- bool CleanupsHaveSideEffects
- ArrayRef<clang::ExprWithCleanups::CleanupObject> Objects
¶clang::Stmt::child_range children()
clang::Stmt::child_range children()
Declared at: clang/include/clang/AST/ExprCXX.h:3417
¶clang::Stmt::const_child_range children() const
clang::Stmt::const_child_range children() const
Declared at: clang/include/clang/AST/ExprCXX.h:3419
¶static bool classof(const clang::Stmt* T)
static bool classof(const clang::Stmt* T)
Declared at: clang/include/clang/AST/ExprCXX.h:3412
Parameters
- const clang::Stmt* T
¶bool cleanupsHaveSideEffects() const
bool cleanupsHaveSideEffects() const
Declared at: clang/include/clang/AST/ExprCXX.h:3399
¶clang::SourceLocation getBeginLoc() const
clang::SourceLocation getBeginLoc() const
Declared at: clang/include/clang/AST/ExprCXX.h:3403
¶clang::SourceLocation getEndLoc() const
clang::SourceLocation getEndLoc() const
Declared at: clang/include/clang/AST/ExprCXX.h:3407
¶unsigned int getNumObjects() const
unsigned int getNumObjects() const
Declared at: clang/include/clang/AST/ExprCXX.h:3392
¶clang::ExprWithCleanups::CleanupObject getObject(
unsigned int i) const
clang::ExprWithCleanups::CleanupObject getObject(
unsigned int i) const
Declared at: clang/include/clang/AST/ExprCXX.h:3394
Parameters
- unsigned int i
¶ArrayRef<clang::ExprWithCleanups::CleanupObject>
getObjects() const
ArrayRef<clang::ExprWithCleanups::CleanupObject>
getObjects() const
Declared at: clang/include/clang/AST/ExprCXX.h:3387