clang 20.0.0git
|
Represents any expression that calls an Objective-C method. More...
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
Public Member Functions | |
const ObjCMessageExpr * | getOriginExpr () const override |
Returns the expression whose value will be the result of this call. | |
const ObjCMethodDecl * | getDecl () const override |
Returns the declaration of the function or method that will be called. | |
unsigned | getNumArgs () const override |
Returns the number of arguments (explicit and implicit). | |
const Expr * | getArgExpr (unsigned Index) const override |
Returns the expression associated with a given argument. | |
bool | isInstanceMessage () const |
ObjCMethodFamily | getMethodFamily () const |
Selector | getSelector () const |
SourceRange | getSourceRange () const override |
Returns a source range for the entire call, suitable for outputting in diagnostics. | |
SVal | getReceiverSVal () const |
Returns the value of the receiver at the time of this call. | |
const ObjCInterfaceDecl * | getReceiverInterface () const |
Get the interface for the receiver. | |
bool | isReceiverSelfOrSuper () const |
Checks if the receiver refers to 'self' or 'super'. | |
ObjCMessageKind | getMessageKind () const |
Returns how the message was written in the source (property access, subscript, or explicit message send). | |
bool | isSetter () const |
Returns true if this property access or subscript is a setter (has the form of an assignment). | |
const ObjCPropertyDecl * | getAccessedProperty () const |
RuntimeDefinition | getRuntimeDefinition () const override |
Returns the definition of the function or method that will be called. | |
bool | argumentsMayEscape () const override |
Returns true if any of the arguments are known to escape to long- term storage, even if this method will not modify them. | |
void | getInitialStackFrameContents (const StackFrameContext *CalleeCtx, BindingsTy &Bindings) const override |
Populates the given SmallVector with the bindings in the callee's stack frame at the start of this call. | |
ArrayRef< ParmVarDecl * > | parameters () const override |
Return call's formal parameters. | |
Kind | getKind () const override |
Returns the kind of call this is. | |
StringRef | getKindAsString () const override |
Public Member Functions inherited from clang::ento::CallEvent | |
CallEvent & | operator= (const CallEvent &)=delete |
virtual | ~CallEvent ()=default |
virtual Kind | getKind () const =0 |
Returns the kind of call this is. | |
virtual StringRef | getKindAsString () const =0 |
virtual const Decl * | getDecl () const |
Returns the declaration of the function or method that will be called. | |
bool | isForeign () const |
void | setForeign (bool B) const |
const ProgramStateRef & | getState () const |
The state in which the call is being evaluated. | |
const LocationContext * | getLocationContext () const |
The context in which the call is being evaluated. | |
const CFGBlock::ConstCFGElementRef & | getCFGElementRef () const |
virtual RuntimeDefinition | getRuntimeDefinition () const =0 |
Returns the definition of the function or method that will be called. | |
virtual const Expr * | getOriginExpr () const |
Returns the expression whose value will be the result of this call. | |
virtual unsigned | getNumArgs () const =0 |
Returns the number of arguments (explicit and implicit). | |
bool | isInSystemHeader () const |
Returns true if the callee is known to be from a system header. | |
virtual SourceRange | getSourceRange () const |
Returns a source range for the entire call, suitable for outputting in diagnostics. | |
virtual SVal | getArgSVal (unsigned Index) const |
Returns the value of a given argument at the time of the call. | |
virtual const Expr * | getArgExpr (unsigned Index) const |
Returns the expression associated with a given argument. | |
virtual SourceRange | getArgSourceRange (unsigned Index) const |
Returns the source range for errors associated with this argument. | |
QualType | getResultType () const |
Returns the result type, adjusted for references. | |
SVal | getReturnValue () const |
Returns the return value of the call. | |
bool | hasNonNullArgumentsWithType (bool(*Condition)(QualType)) const |
Returns true if the type of any of the non-null arguments satisfies the condition. | |
bool | hasNonZeroCallbackArg () const |
Returns true if any of the arguments appear to represent callbacks. | |
bool | hasVoidPointerToNonConstArg () const |
Returns true if any of the arguments is void*. | |
virtual bool | argumentsMayEscape () const |
Returns true if any of the arguments are known to escape to long- term storage, even if this method will not modify them. | |
bool | isGlobalCFunction (StringRef SpecificName=StringRef()) const |
Returns true if the callee is an externally-visible function in the top-level namespace, such as malloc . | |
const IdentifierInfo * | getCalleeIdentifier () const |
Returns the name of the callee, if its name is a simple identifier. | |
ProgramPoint | getProgramPoint (bool IsPreVisit=false, const ProgramPointTag *Tag=nullptr) const |
Returns an appropriate ProgramPoint for this call. | |
ProgramStateRef | invalidateRegions (unsigned BlockCount, ProgramStateRef Orig=nullptr) const |
Returns a new state with all argument regions invalidated. | |
virtual void | getInitialStackFrameContents (const StackFrameContext *CalleeCtx, BindingsTy &Bindings) const =0 |
Populates the given SmallVector with the bindings in the callee's stack frame at the start of this call. | |
template<typename T > | |
CallEventRef< T > | cloneWithState (ProgramStateRef NewState) const |
Returns a copy of this CallEvent, but using the given state. | |
CallEventRef | cloneWithState (ProgramStateRef NewState) const |
Returns a copy of this CallEvent, but using the given state. | |
AnalysisDeclContext * | getCalleeAnalysisDeclContext () const |
Returns AnalysisDeclContext for the callee stack frame. | |
const StackFrameContext * | getCalleeStackFrame (unsigned BlockCount) const |
Returns the callee stack frame. | |
const ParamVarRegion * | getParameterLocation (unsigned Index, unsigned BlockCount) const |
Returns memory location for a parameter variable within the callee stack frame. | |
bool | isArgumentConstructedDirectly (unsigned Index) const |
Returns true if on the current path, the argument was constructed by calling a C++ constructor over it. | |
virtual std::optional< unsigned > | getAdjustedParameterIndex (unsigned ASTArgumentIndex) const |
Some calls have parameter numbering mismatched from argument numbering. | |
virtual unsigned | getASTArgumentIndex (unsigned CallArgumentIndex) const |
Some call event sub-classes conveniently adjust mismatching AST indices to match parameter indices. | |
const ConstructionContext * | getConstructionContext () const |
Returns the construction context of the call, if it is a C++ constructor call or a call of a function returning a C++ class instance. | |
std::optional< SVal > | getReturnValueUnderConstruction () const |
If the call returns a C++ record type then the region of its return value can be retrieved from its construction context. | |
const CallEventRef | getCaller () const |
bool | isCalledFromSystemHeader () const |
virtual ArrayRef< ParmVarDecl * > | parameters () const =0 |
Return call's formal parameters. | |
param_type_iterator | param_type_begin () const |
Returns an iterator over the types of the call's formal parameters. | |
param_type_iterator | param_type_end () const |
void | dump (raw_ostream &Out) const |
void | dump () const |
Static Public Member Functions | |
static bool | classof (const CallEvent *CA) |
Static Public Member Functions inherited from clang::ento::CallEvent | |
static bool | isCallStmt (const Stmt *S) |
Returns true if this is a statement is a function or method call of some kind. | |
static QualType | getDeclaredResultType (const Decl *D) |
Returns the result type of a function or method declaration. | |
static bool | isVariadic (const Decl *D) |
Returns true if the given decl is known to be variadic. | |
Protected Member Functions | |
ObjCMethodCall (const ObjCMessageExpr *Msg, ProgramStateRef St, const LocationContext *LCtx, CFGBlock::ConstCFGElementRef ElemRef) | |
ObjCMethodCall (const ObjCMethodCall &Other)=default | |
void | cloneTo (void *Dest) const override |
Copies this CallEvent, with vtable intact, into a new block of memory. | |
void | getExtraInvalidatedValues (ValueList &Values, RegionAndSymbolInvalidationTraits *ETraits) const override |
Used to specify non-argument regions that will be invalidated as a result of this call. | |
virtual bool | canBeOverridenInSubclass (ObjCInterfaceDecl *IDecl, Selector Sel) const |
Check if the selector may have multiple definitions (may have overrides). | |
Protected Member Functions inherited from clang::ento::CallEvent | |
CallEvent (const Expr *E, ProgramStateRef state, const LocationContext *lctx, CFGBlock::ConstCFGElementRef ElemRef) | |
CallEvent (const Decl *D, ProgramStateRef state, const LocationContext *lctx, CFGBlock::ConstCFGElementRef ElemRef) | |
CallEvent (const CallEvent &Original) | |
virtual void | cloneTo (void *Dest) const =0 |
Copies this CallEvent, with vtable intact, into a new block of memory. | |
SVal | getSVal (const Stmt *S) const |
Get the value of arbitrary expressions at this point in the path. | |
virtual void | getExtraInvalidatedValues (ValueList &Values, RegionAndSymbolInvalidationTraits *ETraits) const |
Used to specify non-argument regions that will be invalidated as a result of this call. | |
Friends | |
class | CallEventManager |
Additional Inherited Members | |
Public Types inherited from clang::ento::CallEvent | |
using | Kind = CallEventKind |
using | FrameBindingTy = std::pair< SVal, SVal > |
using | BindingsTy = SmallVectorImpl< FrameBindingTy > |
using | param_type_iterator = llvm::mapped_iterator< ArrayRef< ParmVarDecl * >::iterator, GetTypeFn > |
Protected Types inherited from clang::ento::CallEvent | |
using | ValueList = SmallVectorImpl< SVal > |
Protected Attributes inherited from clang::ento::CallEvent | |
const void * | Data |
SourceLocation | Location |
Represents any expression that calls an Objective-C method.
This includes all of the kinds listed in ObjCMessageKind.
Definition at line 1248 of file CallEvent.h.
|
inlineprotected |
Definition at line 1254 of file CallEvent.h.
References clang::ento::CallEvent::Data.
|
protecteddefault |
|
overridevirtual |
Returns true if any of the arguments are known to escape to long- term storage, even if this method will not modify them.
Reimplemented from clang::ento::CallEvent.
Definition at line 1384 of file CallEvent.cpp.
References clang::ento::CallEvent::argumentsMayEscape(), clang::Selector::getIdentifierInfoForSlot(), clang::Selector::getNumArgs(), getSelector(), isInstanceMessage(), clang::ento::CallEvent::isInSystemHeader(), and clang::IdentifierInfo::isStr().
|
protectedvirtual |
Check if the selector may have multiple definitions (may have overrides).
Definition at line 1141 of file CallEvent.cpp.
References D, clang::ObjCInterfaceDecl::getEndOfDefinitionLoc(), clang::Decl::getLocation(), getMessageKind(), clang::ento::CallEvent::getState(), clang::ObjCInterfaceDecl::getSuperClass(), clang::ento::AnalysisManager::isInCodeFile(), clang::SourceLocation::isValid(), clang::ObjCInterfaceDecl::lookupMethod(), and clang::ento::OCM_PropertyAccess.
Referenced by getRuntimeDefinition().
Definition at line 1349 of file CallEvent.h.
References clang::ento::CE_ObjCMessage, and clang::ento::CallEvent::getKind().
|
inlineoverrideprotectedvirtual |
Copies this CallEvent, with vtable intact, into a new block of memory.
Implements clang::ento::CallEvent.
Definition at line 1263 of file CallEvent.h.
const ObjCPropertyDecl * ObjCMethodCall::getAccessedProperty | ( | ) | const |
Definition at line 1119 of file CallEvent.cpp.
References clang::ObjCMethodDecl::findPropertyDecl(), getDecl(), getMessageKind(), getSyntacticFromForPseudoObjectExpr(), clang::ObjCMethodDecl::isPropertyAccessor(), and clang::ento::OCM_PropertyAccess.
Referenced by getExtraInvalidatedValues().
Returns the expression associated with a given argument.
May be null if this expression does not appear in the source.
Reimplemented from clang::ento::CallEvent.
Definition at line 1284 of file CallEvent.h.
References clang::ObjCMessageExpr::getArg(), and getOriginExpr().
|
inlineoverridevirtual |
Returns the declaration of the function or method that will be called.
May be null.
Reimplemented from clang::ento::CallEvent.
Definition at line 1278 of file CallEvent.h.
References clang::ObjCMessageExpr::getMethodDecl(), and getOriginExpr().
Referenced by getAccessedProperty(), and parameters().
|
overrideprotectedvirtual |
Used to specify non-argument regions that will be invalidated as a result of this call.
Reimplemented from clang::ento::CallEvent.
Definition at line 989 of file CallEvent.cpp.
References getAccessedProperty(), clang::ento::SVal::getAsRegion(), getReceiverSVal(), clang::ento::CallEvent::getState(), clang::ento::RegionAndSymbolInvalidationTraits::setTrait(), clang::ento::RegionAndSymbolInvalidationTraits::TK_DoNotInvalidateSuperRegion, and clang::ento::RegionAndSymbolInvalidationTraits::TK_SuppressEscape.
|
overridevirtual |
Populates the given SmallVector with the bindings in the callee's stack frame at the start of this call.
Implements clang::ento::CallEvent.
Definition at line 1395 of file CallEvent.cpp.
References addParameterValuesToBindings(), D, clang::LocationContext::getAnalysisDeclContext(), clang::LocationContext::getDecl(), getReceiverSVal(), clang::ento::SValBuilder::getRegionManager(), clang::AnalysisDeclContext::getSelfDecl(), clang::ento::CallEvent::getState(), clang::ento::MemRegionManager::getVarRegion(), clang::ento::SVal::isUnknown(), and clang::ento::SValBuilder::makeLoc().
|
inlineoverridevirtual |
Returns the kind of call this is.
Implements clang::ento::CallEvent.
Definition at line 1346 of file CallEvent.h.
References clang::ento::CE_ObjCMessage.
|
inlineoverridevirtual |
Implements clang::ento::CallEvent.
Definition at line 1347 of file CallEvent.h.
ObjCMessageKind ObjCMethodCall::getMessageKind | ( | ) | const |
Returns how the message was written in the source (property access, subscript, or explicit message send).
Definition at line 1075 of file CallEvent.cpp.
References clang::ento::CallEvent::Data, clang::ento::CallEvent::getLocationContext(), getMessageKind(), getOriginExpr(), clang::ParentMap::getParentIgnoreParenCasts(), clang::LocationContext::getParentMap(), clang::Stmt::getStmtClass(), getSyntacticFromForPseudoObjectExpr(), clang::ento::OCM_Message, clang::ento::OCM_PropertyAccess, and clang::ento::OCM_Subscript.
Referenced by canBeOverridenInSubclass(), describeUninitializedArgumentInCall(), getAccessedProperty(), getMessageKind(), getSourceRange(), and isSetter().
|
inline |
Definition at line 1292 of file CallEvent.h.
References clang::ObjCMessageExpr::getMethodFamily(), and getOriginExpr().
|
inlineoverridevirtual |
Returns the number of arguments (explicit and implicit).
Note that this may be greater than the number of parameters in the callee's declaration, and that it may include arguments not written in the source.
Implements clang::ento::CallEvent.
Definition at line 1282 of file CallEvent.h.
References clang::ObjCMessageExpr::getNumArgs(), and getOriginExpr().
Referenced by isSetter().
|
inlineoverridevirtual |
Returns the expression whose value will be the result of this call.
May be null.
Reimplemented from clang::ento::CallEvent.
Definition at line 1274 of file CallEvent.h.
References clang::ento::CallEvent::getOriginExpr().
Referenced by getArgExpr(), getDecl(), getMessageKind(), getMethodFamily(), getNumArgs(), getReceiverInterface(), getReceiverSVal(), getRuntimeDefinition(), getSelector(), getSourceRange(), isInstanceMessage(), and isReceiverSelfOrSuper().
|
inline |
Get the interface for the receiver.
This works whether this is an instance message or a class message. However, it currently just uses the static type of the receiver.
Definition at line 1307 of file CallEvent.h.
References getOriginExpr(), and clang::ObjCMessageExpr::getReceiverInterface().
Referenced by GetReceiverInterfaceName().
SVal ObjCMethodCall::getReceiverSVal | ( | ) | const |
Returns the value of the receiver at the time of this call.
Definition at line 1014 of file CallEvent.cpp.
References clang::ento::CallEvent::getLocationContext(), getOriginExpr(), clang::ento::CallEvent::getState(), clang::ento::CallEvent::getSVal(), isInstanceMessage(), clang::ento::SVal::isValid(), and clang::ObjCMessageExpr::SuperInstance.
Referenced by getExtraInvalidatedValues(), getInitialStackFrameContents(), getReceiverNullability(), and getRuntimeDefinition().
|
overridevirtual |
Returns the definition of the function or method that will be called.
Implements clang::ento::CallEvent.
Definition at line 1281 of file CallEvent.cpp.
References clang::ento::DynamicTypeInfo::canBeASubClass(), canBeOverridenInSubclass(), E, findDefiningRedecl(), clang::ento::SVal::getAsRegion(), clang::ObjCMethodDecl::getCanonicalDecl(), clang::QualType::getCanonicalType(), clang::ento::getClassObjectDynamicTypeInfo(), clang::ento::getDynamicTypeInfo(), clang::ObjCObjectType::getInterface(), clang::ento::CallEvent::getLocationContext(), getOriginExpr(), getReceiverSVal(), clang::ento::CallEvent::getState(), clang::ento::DynamicTypeInfo::getType(), clang::ObjCMethodDecl::hasBody(), clang::QualType::isNull(), clang::ObjCObjectType::isObjCClass(), clang::ento::DynamicTypeInfo::isValid(), and lookupRuntimeDefinition().
|
inline |
Definition at line 1296 of file CallEvent.h.
References getOriginExpr(), and clang::ObjCMessageExpr::getSelector().
Referenced by argumentsMayEscape().
|
overridevirtual |
Returns a source range for the entire call, suitable for outputting in diagnostics.
Reimplemented from clang::ento::CallEvent.
Definition at line 1044 of file CallEvent.cpp.
References getMessageKind(), getOriginExpr(), clang::Stmt::getSourceRange(), clang::ento::OCM_Message, clang::ento::OCM_PropertyAccess, and clang::ento::OCM_Subscript.
|
inline |
Definition at line 1288 of file CallEvent.h.
References getOriginExpr(), and clang::ObjCMessageExpr::isInstanceMessage().
Referenced by argumentsMayEscape(), getReceiverSVal(), and isReceiverSelfOrSuper().
bool ObjCMethodCall::isReceiverSelfOrSuper | ( | ) | const |
Checks if the receiver refers to 'self' or 'super'.
Definition at line 1030 of file CallEvent.cpp.
References clang::ento::CallEvent::getLocationContext(), getOriginExpr(), clang::ento::CallEvent::getState(), clang::ento::CallEvent::getSVal(), isInstanceMessage(), clang::ObjCMessageExpr::SuperClass, and clang::ObjCMessageExpr::SuperInstance.
Referenced by getReceiverNullability().
|
inline |
Returns true if this property access or subscript is a setter (has the form of an assignment).
Definition at line 1320 of file CallEvent.h.
References getMessageKind(), getNumArgs(), clang::ento::OCM_Message, clang::ento::OCM_PropertyAccess, and clang::ento::OCM_Subscript.
Referenced by describeUninitializedArgumentInCall().
|
overridevirtual |
Return call's formal parameters.
Remember that the number of formal parameters may not match the number of arguments for all calls. However, the first parameter will always correspond with the argument value returned by getArgSVal(0)
.
Implements clang::ento::CallEvent.
Definition at line 982 of file CallEvent.cpp.
|
friend |
Definition at line 1249 of file CallEvent.h.