clang 20.0.0git
|
#include "clang/Analysis/Analyses/UnsafeBufferUsage.h"
Public Member Functions | |
VariableGroupsManager ()=default | |
virtual | ~VariableGroupsManager ()=default |
virtual VarGrpRef | getGroupOfVar (const VarDecl *Var, bool *HasParm=nullptr) const =0 |
Returns the set of variables (including Var ) that need to be fixed together in one step. | |
virtual VarGrpRef | getGroupOfParms () const =0 |
Returns the non-empty group of variables that include parameters of the analyzing function, if such a group exists. | |
Definition at line 27 of file UnsafeBufferUsage.h.
|
default |
|
virtualdefault |
|
pure virtual |
Returns the non-empty group of variables that include parameters of the analyzing function, if such a group exists.
An empty group, otherwise.
Implemented in VariableGroupsManagerImpl.
Referenced by createFunctionOverloadsForParms().
|
pure virtual |
Returns the set of variables (including Var
) that need to be fixed together in one step.
Var
must be a variable that needs fix (so it must be in a group). HasParm
is an optional argument that will be set to true if the set of variables, where Var
is in, contains parameters.
Implemented in VariableGroupsManagerImpl.
Referenced by eraseVarsForUnfixableGroupMates(), and getFixIts().