20#include "llvm/ADT/StringSet.h"
32 return cast_if_present<CXXMethodDecl>(
46 auto *MD = dyn_cast<CXXMethodDecl>(FD);
47 if (MD && MD->isCXXInstanceMember())
63static const LifetimeBoundAttr *
71 if (
auto *LBAttr = ATL.getAttrAs<LifetimeBoundAttr>())
73 TL = ATL.getModifiedLoc();
78const LifetimeBoundAttr *
86const LifetimeBoundAttr *
91 auto CheckRedecls = [](
const FunctionDecl *F) ->
const LifetimeBoundAttr * {
98 if (
const auto *
Attr = CheckRedecls(FD))
101 return CheckRedecls(Pattern);
119 FD = dyn_cast_or_null<FunctionDecl>(AC->getDecl());
123 Args = AC->arguments();
126std::optional<LifetimeBoundParamInfo>
130 if (!FD || I >= Args.size())
135 if (
const auto *
Method = dyn_cast<CXXMethodDecl>(FD);
142 return LifetimeBoundParamInfo(
Method);
145 if ((I - 1) <
Method->getNumParams())
147 PVD =
Method->getParamDecl(I - 1);
152 }
else if (I < FD->getNumParams()) {
157 if (PVD && PVD->
hasAttr<clang::LifetimeBoundAttr>())
158 return LifetimeBoundParamInfo(PVD);
163std::optional<LifetimeBoundParamInfo>
165 if (!
Call || !Source)
168 auto [FD, Args] = FunctionCallInfo(
Call);
172 for (
unsigned I = 0; I < Args.size(); ++I)
173 if (Args[I]->IgnoreParenImpCasts() == Source->IgnoreParenImpCasts())
174 if (std::optional<LifetimeBoundParamInfo> ParamInfo =
183 if (DC->isStdNamespace())
185 if (
const auto *ND = dyn_cast<NamespaceDecl>(DC))
187 StringRef Name = II->getName();
188 if (Name.size() >= 2 && Name.front() ==
'_' &&
206 bool RunningUnderLifetimeSafety) {
211 const bool IsGslOwnerImplicitObject =
213 (RunningUnderLifetimeSafety &&
215 if (
auto *Conv = dyn_cast<CXXConversionDecl>(Callee))
216 if (
isGslPointerType(Conv->getConversionType()) && IsGslOwnerImplicitObject)
219 !IsGslOwnerImplicitObject)
223 static const llvm::StringSet<> IteratorMembers = {
224 "begin",
"end",
"rbegin",
"rend",
"cbegin",
"cend",
"crbegin",
"crend"};
225 static const llvm::StringSet<> InnerPointerGetters = {
227 "c_str",
"data",
"get"};
228 static const llvm::StringSet<> ContainerFindFns = {
230 "find",
"equal_range",
"lower_bound",
"upper_bound"};
234 if (RunningUnderLifetimeSafety &&
239 switch (Callee->getOverloadedOperator()) {
250 if (Callee->getIdentifier() &&
251 (IteratorMembers.contains(Callee->getName()) ||
252 InnerPointerGetters.contains(Callee->getName())))
260 if (!Callee->getIdentifier())
262 return RunningUnderLifetimeSafety
263 ? IsGslOwnerImplicitObject &&
264 Callee->getOverloadedOperator() ==
265 OverloadedOperatorKind::OO_Arrow
267 return IteratorMembers.contains(Callee->getName()) ||
268 InnerPointerGetters.contains(Callee->getName()) ||
269 ContainerFindFns.contains(Callee->getName());
271 if (Callee->getReturnType()->isReferenceType()) {
272 if (!Callee->getIdentifier()) {
273 auto OO = Callee->getOverloadedOperator();
274 if (!IsGslOwnerImplicitObject)
276 return OO == OverloadedOperatorKind::OO_Subscript ||
277 OO == OverloadedOperatorKind::OO_Star;
279 return llvm::StringSwitch<bool>(Callee->getName())
280 .Cases({
"front",
"back",
"at",
"top",
"value"},
true)
295 if (llvm::StringSwitch<bool>(FD->
getName())
314 if (!RD || !RD->isInStdNamespace())
316 if (!RD->hasAttr<PointerAttr>() && !RD->hasAttr<OwnerAttr>())
324 return llvm::StringSwitch<bool>(FD->
getName())
325 .Cases({
"begin",
"rbegin",
"cbegin",
"crbegin"},
true)
326 .Cases({
"end",
"rend",
"cend",
"crend"},
true)
331 return llvm::StringSwitch<bool>(FD->
getName())
332 .Cases({
"get",
"any_cast"},
true)
346 return RD->
hasAttr<PointerAttr>() &&
374 if (
auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(RD))
375 Result |= CTSD->getSpecializedTemplate()->getTemplatedDecl()->hasAttr<
T>();
391 if (
const auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(&RD))
392 return CTSD->getSpecializedTemplate()->getName();
420 static const llvm::StringSet<>
Vector = {
421 "insert",
"emplace",
"emplace_back",
422 "push_back",
"insert_range",
427 "reserve",
"resize",
"shrink_to_fit",
429 "assign",
"assign_range"};
433 static const llvm::StringSet<> Deque = {
434 "insert",
"emplace",
"insert_range",
438 "resize",
"shrink_to_fit",
440 "assign",
"assign_range"};
442 static const llvm::StringSet<> String = {
444 "insert",
"push_back",
"append",
"replace",
"replace_with_range",
445 "insert_range",
"append_range",
447 "pop_back",
"erase",
"clear",
449 "reserve",
"resize",
"resize_and_overwrite",
"shrink_to_fit",
451 "swap",
"assign",
"assign_range"};
455 static const llvm::StringSet<> PriorityQueue = {
463 static const llvm::StringSet<> NodeBased = {
469 static const llvm::StringSet<> Flat = {
470 "insert",
"emplace",
"emplace_hint",
471 "try_emplace",
"insert_or_assign",
472 "insert_range",
"merge",
474 "extract",
"erase",
"clear",
478 static const llvm::StringSet<> UniquePtr = {
481 const StringRef RecordName =
getName(*RD);
484 const llvm::StringSet<> *InvalidatingMethods =
485 llvm::StringSwitch<const llvm::StringSet<> *>(RecordName)
487 .Case(
"basic_string", &String)
488 .Case(
"deque", &Deque)
489 .Case(
"priority_queue", &PriorityQueue)
490 .Cases({
"set",
"multiset",
"map",
"multimap",
"unordered_set",
491 "unordered_multiset",
"unordered_map",
"unordered_multimap"},
493 .Cases({
"flat_map",
"flat_set",
"flat_multimap",
"flat_multiset"},
495 .Case(
"unique_ptr", &UniquePtr)
498 if (!InvalidatingMethods)
511 return RecordName ==
"flat_map";
520 return InvalidatingMethods->contains(MD.
getName());
533 return Name ==
"function" || Name ==
"move_only_function";
540 case Builtin::BImove:
541 case Builtin::BImove_if_noexcept:
542 case Builtin::BIforward:
543 case Builtin::BIforward_like:
544 case Builtin::BIas_const:
Defines the clang::ASTContext interface.
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
Defines the C++ template declaration subclasses.
Defines the clang::Expr interface and subclasses for C++ expressions.
Defines an enumeration for C++ overloaded operators.
Defines the clang::TypeLoc interface and its subclasses.
C Language Family Type Representation.
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
QualType getLValueReferenceType(QualType T, bool SpelledAsLValue=true) const
Return the uniqued reference to the type for an lvalue reference to the specified type.
static bool hasSameType(QualType T1, QualType T2)
Determine whether the given types T1 and T2 are equivalent.
static bool hasSameUnqualifiedType(QualType T1, QualType T2)
Determine whether the given types are equivalent after cvr-qualifiers have been removed.
static std::optional< AnyCall > forExpr(const Expr *E)
If E is a generic call (to ObjC method /function/block/etc), return a constructed AnyCall object.
Attr - This represents one attribute.
Type source information for an attributed type.
Represents a static or instance method of a struct/union/class.
const CXXRecordDecl * getParent() const
Return the parent of this method declaration, which is the class in which this method is defined.
Represents a C++ struct/union/class.
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
DeclContext * getParent()
getParent - Returns the containing DeclContext.
Decl - This represents one declaration (or definition), e.g.
bool isInStdNamespace() const
ASTContext & getASTContext() const LLVM_READONLY
DeclContext * getDeclContext()
OverloadedOperatorKind getCXXOverloadedOperator() const
If this name is the name of an overloadable operator in C++ (e.g., operator+), retrieve the kind of o...
TypeSourceInfo * getTypeSourceInfo() const
This represents one expression.
const CXXRecordDecl * getBestDynamicClassType() const
For an expression of class type or pointer to class type, return the most derived class decl the expr...
Represents a function declaration or definition.
const ParmVarDecl * getParamDecl(unsigned i) const
unsigned getBuiltinID(bool ConsiderWrapperFunctions=false) const
Returns a value indicating whether this function corresponds to a builtin function.
QualType getReturnType() const
FunctionDecl * getTemplateInstantiationPattern(bool ForDefinition=true) const
Retrieve the function declaration from which this function could be instantiated, if it is an instant...
FunctionDecl * getMostRecentDecl()
Returns the most recent (re)declaration of this declaration.
redecl_range redecls() const
Returns an iterator range for all the redeclarations of the same decl.
OverloadedOperatorKind getOverloadedOperator() const
getOverloadedOperator - Which C++ overloaded operator this function represents, if any.
unsigned getNumParams() const
Return the number of parameters this function must have based on its FunctionType.
size_t param_size() const
One of these records is kept for each identifier that is lexed.
IdentifierInfo * getIdentifier() const
Get the identifier that names this declaration, if there is one.
StringRef getName() const
Get the name of identifier for this declaration as a StringRef.
DeclarationName getDeclName() const
Get the actual, stored name of the declaration, which may be a special name.
Represents a parameter to a function.
A (possibly-)qualified type.
Base wrapper for a particular "section" of type source info.
T getAsAdjusted() const
Convert to the specified TypeLoc type, returning a null TypeLoc if this TypeLoc is not of the desired...
A container of type source information.
TypeLoc getTypeLoc() const
Return the TypeLoc wrapper for the type source info.
The base class of the type hierarchy.
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
bool isPointerType() const
bool isReferenceType() const
const CXXRecordDecl * getPointeeCXXRecordDecl() const
If this is a pointer or reference to a RecordType, return the CXXRecordDecl that the type refers to.
bool isLValueReferenceType() const
bool isNullPtrType() const
const LifetimeBoundAttr * getDirectImplicitObjectLifetimeBoundAttr(const FunctionDecl *FD)
bool isGslPointerType(QualType QT)
bool isStdCallableWrapperType(const CXXRecordDecl *RD)
bool shouldTrackFirstArgument(const FunctionDecl *FD)
static StringRef getName(const CXXRecordDecl &RD)
bool isAssignmentOperatorLifetimeBound(const CXXMethodDecl *CMD)
bool shouldTrackImplicitObjectArg(const Expr &ImplicitObjectArgument, const CXXMethodDecl *Callee, bool RunningUnderLifetimeSafety)
static const LifetimeBoundAttr * getLifetimeBoundAttrFromFunctionType(const TypeSourceInfo &TSI)
Check if a function has a lifetimebound attribute on its function type (which represents the implicit...
bool isPointerLikeType(QualType QT)
bool isNormalAssignmentOperator(const FunctionDecl *FD)
bool isUniquePtrRelease(const CXXMethodDecl &MD)
static bool isRecordWithAttr(const CXXRecordDecl *RD)
static bool isReferenceOrPointerLikeType(QualType QT)
bool isStdReferenceCast(const FunctionDecl *FD)
bool implicitObjectParamIsLifetimeBound(const FunctionDecl *FD)
const LifetimeBoundAttr * getImplicitObjectParamLifetimeBoundAttr(const FunctionDecl *FD)
const FunctionDecl * getDeclWithMergedLifetimeBoundAttrs(const FunctionDecl *FD)
bool isInvalidationMethod(const CXXMethodDecl &MD)
std::optional< LifetimeBoundParamInfo > getTrackingInfoForCallArg(const Expr *Call, const Expr *Source)
bool destructsFirstArg(const FunctionDecl &FD)
bool isGslOwnerType(QualType QT)
std::optional< LifetimeBoundParamInfo > getTrackedArgInfo(const FunctionDecl *FD, llvm::ArrayRef< const Expr * > Args, unsigned I)
bool isInStlNamespace(const Decl *D)
bool shouldTrackSecondArgument(const FunctionDecl *FD)
static bool isStdUniquePtr(const CXXRecordDecl &RD)
OverloadedOperatorKind
Enumeration specifying the different kinds of C++ overloaded operators.
@ OO_None
Not an overloaded operator.
bool isa(CodeGen::Address addr)
bool isCompoundAssignmentOperator(OverloadedOperatorKind Kind)
Determine if this is a compound assignment operator.
LLVM_READONLY bool isUppercase(unsigned char c)
Return true if this character is an uppercase ASCII letter: [A-Z].
@ Vector
'vector' clause, allowed on 'loop', Combined, and 'routine' directives.
@ Default
Set to the current date and time.
@ Result
The result type of a method or function.
const FunctionProtoType * T
llvm::SmallVector< const Expr *, 4 > Args
FunctionCallInfo(const Expr *Call)