clang 22.0.0git
PtrTypesSemantics.cpp
Go to the documentation of this file.
1//=======- PtrTypesSemantics.cpp ---------------------------------*- C++ -*-==//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "PtrTypesSemantics.h"
10#include "ASTUtils.h"
11#include "clang/AST/Attr.h"
13#include "clang/AST/Decl.h"
14#include "clang/AST/DeclCXX.h"
15#include "clang/AST/ExprCXX.h"
18#include <optional>
19
20using namespace clang;
21
22namespace {
23
24bool hasPublicMethodInBaseClass(const CXXRecordDecl *R, StringRef NameToMatch) {
25 assert(R);
26 assert(R->hasDefinition());
27
28 for (const CXXMethodDecl *MD : R->methods()) {
29 const auto MethodName = safeGetName(MD);
30 if (MethodName == NameToMatch && MD->getAccess() == AS_public)
31 return true;
32 }
33 return false;
34}
35
36} // namespace
37
38namespace clang {
39
40std::optional<const clang::CXXRecordDecl *>
41hasPublicMethodInBase(const CXXBaseSpecifier *Base, StringRef NameToMatch) {
42 assert(Base);
43
44 const Type *T = Base->getType().getTypePtrOrNull();
45 if (!T)
46 return std::nullopt;
47
48 const CXXRecordDecl *R = T->getAsCXXRecordDecl();
49 if (!R) {
50 auto CT = Base->getType().getCanonicalType();
51 if (auto *TST = dyn_cast<TemplateSpecializationType>(CT)) {
52 auto TmplName = TST->getTemplateName();
53 if (!TmplName.isNull()) {
54 if (auto *TD = TmplName.getAsTemplateDecl())
55 R = dyn_cast_or_null<CXXRecordDecl>(TD->getTemplatedDecl());
56 }
57 }
58 if (!R)
59 return std::nullopt;
60 }
61 if (!R->hasDefinition())
62 return std::nullopt;
63
64 return hasPublicMethodInBaseClass(R, NameToMatch) ? R : nullptr;
65}
66
67std::optional<bool> isSmartPtrCompatible(const CXXRecordDecl *R,
68 StringRef IncMethodName,
69 StringRef DecMethodName) {
70 assert(R);
71
72 R = R->getDefinition();
73 if (!R)
74 return std::nullopt;
75
76 bool hasRef = hasPublicMethodInBaseClass(R, IncMethodName);
77 bool hasDeref = hasPublicMethodInBaseClass(R, DecMethodName);
78 if (hasRef && hasDeref)
79 return true;
80
81 CXXBasePaths Paths;
82 Paths.setOrigin(const_cast<CXXRecordDecl *>(R));
83
84 bool AnyInconclusiveBase = false;
85 const auto hasPublicRefInBase = [&](const CXXBaseSpecifier *Base,
86 CXXBasePath &) {
87 auto hasRefInBase = clang::hasPublicMethodInBase(Base, IncMethodName);
88 if (!hasRefInBase) {
89 AnyInconclusiveBase = true;
90 return false;
91 }
92 return (*hasRefInBase) != nullptr;
93 };
94
95 hasRef = hasRef || R->lookupInBases(hasPublicRefInBase, Paths,
96 /*LookupInDependent =*/true);
97 if (AnyInconclusiveBase)
98 return std::nullopt;
99
100 Paths.clear();
101 const auto hasPublicDerefInBase = [&](const CXXBaseSpecifier *Base,
102 CXXBasePath &) {
103 auto hasDerefInBase = clang::hasPublicMethodInBase(Base, DecMethodName);
104 if (!hasDerefInBase) {
105 AnyInconclusiveBase = true;
106 return false;
107 }
108 return (*hasDerefInBase) != nullptr;
109 };
110 hasDeref = hasDeref || R->lookupInBases(hasPublicDerefInBase, Paths,
111 /*LookupInDependent =*/true);
112 if (AnyInconclusiveBase)
113 return std::nullopt;
114
115 return hasRef && hasDeref;
116}
117
118std::optional<bool> isRefCountable(const clang::CXXRecordDecl *R) {
119 return isSmartPtrCompatible(R, "ref", "deref");
120}
121
122std::optional<bool> isCheckedPtrCapable(const clang::CXXRecordDecl *R) {
123 return isSmartPtrCompatible(R, "incrementCheckedPtrCount",
124 "decrementCheckedPtrCount");
125}
126
127bool isRefType(const std::string &Name) {
128 return Name == "Ref" || Name == "RefAllowingPartiallyDestroyed" ||
129 Name == "RefPtr" || Name == "RefPtrAllowingPartiallyDestroyed";
130}
131
132bool isRetainPtrOrOSPtr(const std::string &Name) {
133 return Name == "RetainPtr" || Name == "RetainPtrArc" ||
134 Name == "OSObjectPtr" || Name == "OSObjectPtrArc";
135}
136
137bool isCheckedPtr(const std::string &Name) {
138 return Name == "CheckedPtr" || Name == "CheckedRef";
139}
140
141bool isOwnerPtr(const std::string &Name) {
142 return isRefType(Name) || isCheckedPtr(Name) || Name == "unique_ptr" ||
143 Name == "UniqueRef" || Name == "LazyUniqueRef";
144}
145
146bool isSmartPtrClass(const std::string &Name) {
147 return isRefType(Name) || isCheckedPtr(Name) || isRetainPtrOrOSPtr(Name) ||
148 Name == "WeakPtr" || Name == "WeakPtrFactory" ||
149 Name == "WeakPtrFactoryWithBitField" || Name == "WeakPtrImplBase" ||
150 Name == "WeakPtrImplBaseSingleThread" || Name == "ThreadSafeWeakPtr" ||
151 Name == "ThreadSafeWeakOrStrongPtr" ||
152 Name == "ThreadSafeWeakPtrControlBlock" ||
153 Name == "ThreadSafeRefCountedAndCanMakeThreadSafeWeakPtr";
154}
155
157 assert(F);
158 const std::string &FunctionName = safeGetName(F);
159
160 return isRefType(FunctionName) || FunctionName == "adoptRef" ||
161 FunctionName == "UniqueRef" || FunctionName == "makeUniqueRef" ||
162 FunctionName == "makeUniqueRefWithoutFastMallocCheck"
163
164 || FunctionName == "String" || FunctionName == "AtomString" ||
165 FunctionName == "UniqueString"
166 // FIXME: Implement as attribute.
167 || FunctionName == "Identifier";
168}
169
171 assert(F);
172 return isCheckedPtr(safeGetName(F));
173}
174
176 const std::string &FunctionName = safeGetName(F);
177 return FunctionName == "RetainPtr" || FunctionName == "adoptNS" ||
178 FunctionName == "adoptCF" || FunctionName == "retainPtr" ||
179 FunctionName == "RetainPtrArc" || FunctionName == "adoptNSArc" ||
180 FunctionName == "adoptOSObject" || FunctionName == "adoptOSObjectArc";
181}
182
187
189 auto FnName = safeGetName(F);
190 auto *Namespace = F->getParent();
191 if (!Namespace)
192 return false;
193 auto *TUDeck = Namespace->getParent();
194 if (!isa_and_nonnull<TranslationUnitDecl>(TUDeck))
195 return false;
196 auto NsName = safeGetName(Namespace);
197 return (NsName == "WTF" || NsName == "std") && FnName == "move";
198}
199
200template <typename Predicate>
201static bool isPtrOfType(const clang::QualType T, Predicate Pred) {
202 QualType type = T;
203 while (!type.isNull()) {
204 if (auto *SpecialT = type->getAs<TemplateSpecializationType>()) {
205 auto *Decl = SpecialT->getTemplateName().getAsTemplateDecl();
206 return Decl && Pred(Decl->getNameAsString());
207 } else if (auto *DTS = type->getAs<DeducedTemplateSpecializationType>()) {
208 auto *Decl = DTS->getTemplateName().getAsTemplateDecl();
209 return Decl && Pred(Decl->getNameAsString());
210 } else
211 break;
212 }
213 return false;
214}
215
217 return isPtrOfType(
218 T, [](auto Name) { return isRefType(Name) || isCheckedPtr(Name); });
219}
220
222 return isPtrOfType(T, [](auto Name) { return isRetainPtrOrOSPtr(Name); });
223}
224
226 return isPtrOfType(T, [](auto Name) { return isOwnerPtr(Name); });
227}
228
229std::optional<bool> isUncounted(const QualType T) {
230 if (auto *Subst = dyn_cast<SubstTemplateTypeParmType>(T)) {
231 if (auto *Decl = Subst->getAssociatedDecl()) {
233 return false;
234 }
235 }
236 return isUncounted(T->getAsCXXRecordDecl());
237}
238
239std::optional<bool> isUnchecked(const QualType T) {
240 if (auto *Subst = dyn_cast<SubstTemplateTypeParmType>(T)) {
241 if (auto *Decl = Subst->getAssociatedDecl()) {
243 return false;
244 }
245 }
246 return isUnchecked(T->getAsCXXRecordDecl());
247}
248
250 const TranslationUnitDecl *TUD) {
251 IsARCEnabled = TUD->getLangOpts().ObjCAutoRefCount;
252 DefaultSynthProperties = TUD->getLangOpts().ObjCDefaultSynthProperties;
253}
254
256 auto QT = TD->getUnderlyingType();
257 if (!QT->isPointerType())
258 return;
259
260 auto PointeeQT = QT->getPointeeType();
261 const RecordType *RT = PointeeQT->getAsCanonical<RecordType>();
262 if (!RT) {
263 if (TD->hasAttr<ObjCBridgeAttr>() || TD->hasAttr<ObjCBridgeMutableAttr>()) {
264 RecordlessTypes.insert(TD->getASTContext()
266 /*Qualifier=*/std::nullopt, TD)
267 .getTypePtr());
268 }
269 return;
270 }
271
272 for (auto *Redecl : RT->getDecl()->getMostRecentDecl()->redecls()) {
273 if (Redecl->getAttr<ObjCBridgeAttr>() ||
274 Redecl->getAttr<ObjCBridgeMutableAttr>()) {
275 CFPointees.insert(RT);
276 return;
277 }
278 }
279}
280
281bool RetainTypeChecker::isUnretained(const QualType QT, bool ignoreARC) {
282 if (ento::cocoa::isCocoaObjectRef(QT) && (!IsARCEnabled || ignoreARC))
283 return true;
284 if (auto *RT = dyn_cast_or_null<RecordType>(
286 return CFPointees.contains(RT);
287 return RecordlessTypes.contains(QT.getTypePtr());
288}
289
290std::optional<bool> isUncounted(const CXXRecordDecl* Class)
291{
292 // Keep isRefCounted first as it's cheaper.
293 if (!Class || isRefCounted(Class))
294 return false;
295
296 std::optional<bool> IsRefCountable = isRefCountable(Class);
297 if (!IsRefCountable)
298 return std::nullopt;
299
300 return (*IsRefCountable);
301}
302
303std::optional<bool> isUnchecked(const CXXRecordDecl *Class) {
304 if (!Class || isCheckedPtr(Class))
305 return false; // Cheaper than below
307}
308
309std::optional<bool> isUncountedPtr(const QualType T) {
310 if (T->isPointerType() || T->isReferenceType()) {
311 if (auto *CXXRD = T->getPointeeCXXRecordDecl())
312 return isUncounted(CXXRD);
313 }
314 return false;
315}
316
317std::optional<bool> isUncheckedPtr(const QualType T) {
318 if (T->isPointerType() || T->isReferenceType()) {
319 if (auto *CXXRD = T->getPointeeCXXRecordDecl())
320 return isUnchecked(CXXRD);
321 }
322 return false;
323}
324
325std::optional<bool> isGetterOfSafePtr(const CXXMethodDecl *M) {
326 assert(M);
327
328 if (isa<CXXMethodDecl>(M)) {
329 const CXXRecordDecl *calleeMethodsClass = M->getParent();
330 auto className = safeGetName(calleeMethodsClass);
331 auto method = safeGetName(M);
332
333 if (isCheckedPtr(className) && (method == "get" || method == "ptr"))
334 return true;
335
336 if ((isRefType(className) && (method == "get" || method == "ptr")) ||
337 ((className == "String" || className == "AtomString" ||
338 className == "AtomStringImpl" || className == "UniqueString" ||
339 className == "UniqueStringImpl" || className == "Identifier") &&
340 method == "impl"))
341 return true;
342
343 if (isRetainPtrOrOSPtr(className) && method == "get")
344 return true;
345
346 // Ref<T> -> T conversion
347 // FIXME: Currently allowing any Ref<T> -> whatever cast.
348 if (isRefType(className)) {
349 if (auto *maybeRefToRawOperator = dyn_cast<CXXConversionDecl>(M)) {
350 auto QT = maybeRefToRawOperator->getConversionType();
351 auto *T = QT.getTypePtrOrNull();
352 return T && (T->isPointerType() || T->isReferenceType());
353 }
354 }
355
356 if (isCheckedPtr(className)) {
357 if (auto *maybeRefToRawOperator = dyn_cast<CXXConversionDecl>(M)) {
358 auto QT = maybeRefToRawOperator->getConversionType();
359 auto *T = QT.getTypePtrOrNull();
360 return T && (T->isPointerType() || T->isReferenceType());
361 }
362 }
363
364 if (isRetainPtrOrOSPtr(className)) {
365 if (auto *maybeRefToRawOperator = dyn_cast<CXXConversionDecl>(M)) {
366 auto QT = maybeRefToRawOperator->getConversionType();
367 auto *T = QT.getTypePtrOrNull();
368 return T && (T->isPointerType() || T->isReferenceType() ||
369 T->isObjCObjectPointerType());
370 }
371 }
372 }
373 return false;
374}
375
377 assert(R);
378 if (auto *TmplR = R->getTemplateInstantiationPattern()) {
379 // FIXME: String/AtomString/UniqueString
380 const auto &ClassName = safeGetName(TmplR);
381 return isRefType(ClassName);
382 }
383 return false;
384}
385
387 assert(R);
388 if (auto *TmplR = R->getTemplateInstantiationPattern()) {
389 const auto &ClassName = safeGetName(TmplR);
390 return isCheckedPtr(ClassName);
391 }
392 return false;
393}
394
396 assert(R);
397 if (auto *TmplR = R->getTemplateInstantiationPattern())
398 return isRetainPtrOrOSPtr(safeGetName(TmplR));
399 return false;
400}
401
402bool isSmartPtr(const CXXRecordDecl *R) {
403 assert(R);
404 if (auto *TmplR = R->getTemplateInstantiationPattern())
405 return isSmartPtrClass(safeGetName(TmplR));
406 return false;
407}
408
410 assert(F);
411 if (isCtorOfRefCounted(F))
412 return true;
413
414 // FIXME: check # of params == 1
415 const auto FunctionName = safeGetName(F);
416 if (FunctionName == "getPtr" || FunctionName == "WeakPtr" ||
417 FunctionName == "dynamicDowncast" || FunctionName == "downcast" ||
418 FunctionName == "checkedDowncast" || FunctionName == "bit_cast" ||
419 FunctionName == "uncheckedDowncast" || FunctionName == "bitwise_cast" ||
420 FunctionName == "bridge_cast" || FunctionName == "bridge_id_cast" ||
421 FunctionName == "dynamic_cf_cast" || FunctionName == "checked_cf_cast" ||
422 FunctionName == "dynamic_objc_cast" ||
423 FunctionName == "checked_objc_cast")
424 return true;
425
426 auto ReturnType = F->getReturnType();
427 if (auto *Type = ReturnType.getTypePtrOrNull()) {
428 if (auto *AttrType = dyn_cast<AttributedType>(Type)) {
429 if (auto *Attr = AttrType->getAttr()) {
430 if (auto *AnnotateType = dyn_cast<AnnotateTypeAttr>(Attr)) {
431 if (AnnotateType->getAnnotation() == "webkit.pointerconversion")
432 return true;
433 }
434 }
435 }
436 }
437
438 return false;
439}
440
442 if (!F || !F->getDeclName().isIdentifier())
443 return false;
444 auto Name = F->getName();
445 return Name.starts_with("__builtin") || Name == "__libcpp_verbose_abort" ||
446 Name.starts_with("os_log") || Name.starts_with("_os_log");
447}
448
449bool isSingleton(const NamedDecl *F) {
450 assert(F);
451 // FIXME: check # of params == 1
452 if (auto *MethodDecl = dyn_cast<CXXMethodDecl>(F)) {
453 if (!MethodDecl->isStatic())
454 return false;
455 }
456 const auto &NameStr = safeGetName(F);
457 StringRef Name = NameStr; // FIXME: Make safeGetName return StringRef.
458 return Name == "singleton" || Name.ends_with("Singleton");
459}
460
461// We only care about statements so let's use the simple
462// (non-recursive) visitor.
464 : public ConstStmtVisitor<TrivialFunctionAnalysisVisitor, bool> {
465
466 // Returns false if at least one child is non-trivial.
467 bool VisitChildren(const Stmt *S) {
468 for (const Stmt *Child : S->children()) {
469 if (Child && !Visit(Child))
470 return false;
471 }
472
473 return true;
474 }
475
476 template <typename StmtOrDecl, typename CheckFunction>
477 bool WithCachedResult(const StmtOrDecl *S, CheckFunction Function) {
478 auto CacheIt = Cache.find(S);
479 if (CacheIt != Cache.end())
480 return CacheIt->second;
481
482 // Treat a recursive statement to be trivial until proven otherwise.
483 auto [RecursiveIt, IsNew] = RecursiveFn.insert(std::make_pair(S, true));
484 if (!IsNew)
485 return RecursiveIt->second;
486
487 bool Result = Function();
488
489 if (!Result) {
490 for (auto &It : RecursiveFn)
491 It.second = false;
492 }
493 RecursiveIt = RecursiveFn.find(S);
494 assert(RecursiveIt != RecursiveFn.end());
495 Result = RecursiveIt->second;
496 RecursiveFn.erase(RecursiveIt);
497 Cache[S] = Result;
498
499 return Result;
500 }
501
502public:
503 using CacheTy = TrivialFunctionAnalysis::CacheTy;
504
505 TrivialFunctionAnalysisVisitor(CacheTy &Cache) : Cache(Cache) {}
506
507 bool IsFunctionTrivial(const Decl *D) {
508 if (auto *FnDecl = dyn_cast<FunctionDecl>(D)) {
509 if (FnDecl->isVirtualAsWritten())
510 return false;
511 }
512 return WithCachedResult(D, [&]() {
513 if (auto *CtorDecl = dyn_cast<CXXConstructorDecl>(D)) {
514 for (auto *CtorInit : CtorDecl->inits()) {
515 if (!Visit(CtorInit->getInit()))
516 return false;
517 }
518 }
519 const Stmt *Body = D->getBody();
520 if (!Body)
521 return false;
522 return Visit(Body);
523 });
524 }
525
526 bool IsStatementTrivial(const Stmt *S) {
527 auto CacheIt = Cache.find(S);
528 if (CacheIt != Cache.end())
529 return CacheIt->second;
530 bool Result = Visit(S);
531 Cache[S] = Result;
532 return Result;
533 }
534
535 bool VisitStmt(const Stmt *S) {
536 // All statements are non-trivial unless overriden later.
537 // Don't even recurse into children by default.
538 return false;
539 }
540
542 // Ignore attributes.
543 return Visit(AS->getSubStmt());
544 }
545
547 // A compound statement is allowed as long each individual sub-statement
548 // is trivial.
549 return WithCachedResult(CS, [&]() { return VisitChildren(CS); });
550 }
551
553 return WithCachedResult(CBS, [&]() { return VisitChildren(CBS); });
554 }
555
556 bool VisitReturnStmt(const ReturnStmt *RS) {
557 // A return statement is allowed as long as the return value is trivial.
558 if (auto *RV = RS->getRetValue())
559 return Visit(RV);
560 return true;
561 }
562
563 bool VisitDeclStmt(const DeclStmt *DS) { return VisitChildren(DS); }
564 bool VisitDoStmt(const DoStmt *DS) { return VisitChildren(DS); }
565 bool VisitIfStmt(const IfStmt *IS) {
566 return WithCachedResult(IS, [&]() { return VisitChildren(IS); });
567 }
568 bool VisitForStmt(const ForStmt *FS) {
569 return WithCachedResult(FS, [&]() { return VisitChildren(FS); });
570 }
572 return WithCachedResult(FS, [&]() { return VisitChildren(FS); });
573 }
574 bool VisitWhileStmt(const WhileStmt *WS) {
575 return WithCachedResult(WS, [&]() { return VisitChildren(WS); });
576 }
577 bool VisitSwitchStmt(const SwitchStmt *SS) { return VisitChildren(SS); }
578 bool VisitCaseStmt(const CaseStmt *CS) { return VisitChildren(CS); }
579 bool VisitDefaultStmt(const DefaultStmt *DS) { return VisitChildren(DS); }
580
581 // break, continue, goto, and label statements are always trivial.
582 bool VisitBreakStmt(const BreakStmt *) { return true; }
583 bool VisitContinueStmt(const ContinueStmt *) { return true; }
584 bool VisitGotoStmt(const GotoStmt *) { return true; }
585 bool VisitLabelStmt(const LabelStmt *) { return true; }
586
588 // Unary operators are trivial if its operand is trivial except co_await.
589 return UO->getOpcode() != UO_Coawait && Visit(UO->getSubExpr());
590 }
591
593 // Binary operators are trivial if their operands are trivial.
594 return Visit(BO->getLHS()) && Visit(BO->getRHS());
595 }
596
598 // Compound assignment operator such as |= is trivial if its
599 // subexpresssions are trivial.
600 return VisitChildren(CAO);
601 }
602
604 return VisitChildren(ASE);
605 }
606
608 // Ternary operators are trivial if their conditions & values are trivial.
609 return VisitChildren(CO);
610 }
611
612 bool VisitAtomicExpr(const AtomicExpr *E) { return VisitChildren(E); }
613
615 // Any static_assert is considered trivial.
616 return true;
617 }
618
619 bool VisitCallExpr(const CallExpr *CE) {
620 if (!checkArguments(CE))
621 return false;
622
623 auto *Callee = CE->getDirectCallee();
624 if (!Callee)
625 return false;
626
627 if (isPtrConversion(Callee))
628 return true;
629
630 const auto &Name = safeGetName(Callee);
631
632 if (Callee->isInStdNamespace() &&
633 (Name == "addressof" || Name == "forward" || Name == "move"))
634 return true;
635
636 if (Name == "WTFCrashWithInfo" || Name == "WTFBreakpointTrap" ||
637 Name == "WTFReportBacktrace" ||
638 Name == "WTFCrashWithSecurityImplication" || Name == "WTFCrash" ||
639 Name == "WTFReportAssertionFailure" || Name == "isMainThread" ||
640 Name == "isMainThreadOrGCThread" || Name == "isMainRunLoop" ||
641 Name == "isWebThread" || Name == "isUIThread" ||
642 Name == "mayBeGCThread" || Name == "compilerFenceForCrash" ||
644 return true;
645
646 return IsFunctionTrivial(Callee);
647 }
648
649 bool VisitGCCAsmStmt(const GCCAsmStmt *AS) {
650 return AS->getAsmString() == "brk #0xc471";
651 }
652
653 bool
655 // Non-type template paramter is compile time constant and trivial.
656 return true;
657 }
658
660 return VisitChildren(E);
661 }
662
664 // A predefined identifier such as "func" is considered trivial.
665 return true;
666 }
667
669 // offsetof(T, D) is considered trivial.
670 return true;
671 }
672
674 if (!checkArguments(MCE))
675 return false;
676
677 bool TrivialThis = Visit(MCE->getImplicitObjectArgument());
678 if (!TrivialThis)
679 return false;
680
681 auto *Callee = MCE->getMethodDecl();
682 if (!Callee)
683 return false;
684
685 auto Name = safeGetName(Callee);
686 if (Name == "ref" || Name == "incrementCheckedPtrCount")
687 return true;
688
689 std::optional<bool> IsGetterOfRefCounted = isGetterOfSafePtr(Callee);
690 if (IsGetterOfRefCounted && *IsGetterOfRefCounted)
691 return true;
692
693 // Recursively descend into the callee to confirm that it's trivial as well.
694 return IsFunctionTrivial(Callee);
695 }
696
698 if (!checkArguments(OCE))
699 return false;
700 auto *Callee = OCE->getCalleeDecl();
701 if (!Callee)
702 return false;
703 // Recursively descend into the callee to confirm that it's trivial as well.
704 return IsFunctionTrivial(Callee);
705 }
706
708 if (auto *Expr = E->getExpr()) {
709 if (!Visit(Expr))
710 return false;
711 }
712 return true;
713 }
714
715 bool checkArguments(const CallExpr *CE) {
716 for (const Expr *Arg : CE->arguments()) {
717 if (Arg && !Visit(Arg))
718 return false;
719 }
720 return true;
721 }
722
724 for (const Expr *Arg : CE->arguments()) {
725 if (Arg && !Visit(Arg))
726 return false;
727 }
728
729 // Recursively descend into the callee to confirm that it's trivial.
730 return IsFunctionTrivial(CE->getConstructor());
731 }
732
736
737 bool VisitCXXNewExpr(const CXXNewExpr *NE) { return VisitChildren(NE); }
738
740 return Visit(ICE->getSubExpr());
741 }
742
744 return Visit(ECE->getSubExpr());
745 }
746
748 return Visit(VMT->getSubExpr());
749 }
750
752 if (auto *Temp = BTE->getTemporary()) {
753 if (!TrivialFunctionAnalysis::isTrivialImpl(Temp->getDestructor(), Cache))
754 return false;
755 }
756 return Visit(BTE->getSubExpr());
757 }
758
760 return Visit(AILE->getCommonExpr()) && Visit(AILE->getSubExpr());
761 }
762
764 return true; // The current array index in VisitArrayInitLoopExpr is always
765 // trivial.
766 }
767
769 return Visit(OVE->getSourceExpr());
770 }
771
773 return Visit(EWC->getSubExpr());
774 }
775
776 bool VisitParenExpr(const ParenExpr *PE) { return Visit(PE->getSubExpr()); }
777
779 for (const Expr *Child : ILE->inits()) {
780 if (Child && !Visit(Child))
781 return false;
782 }
783 return true;
784 }
785
786 bool VisitMemberExpr(const MemberExpr *ME) {
787 // Field access is allowed but the base pointer may itself be non-trivial.
788 return Visit(ME->getBase());
789 }
790
791 bool VisitCXXThisExpr(const CXXThisExpr *CTE) {
792 // The expression 'this' is always trivial, be it explicit or implicit.
793 return true;
794 }
795
797 // nullptr is trivial.
798 return true;
799 }
800
801 bool VisitDeclRefExpr(const DeclRefExpr *DRE) {
802 // The use of a variable is trivial.
803 return true;
804 }
805
806 // Constant literal expressions are always trivial
807 bool VisitIntegerLiteral(const IntegerLiteral *E) { return true; }
808 bool VisitFloatingLiteral(const FloatingLiteral *E) { return true; }
809 bool VisitFixedPointLiteral(const FixedPointLiteral *E) { return true; }
810 bool VisitCharacterLiteral(const CharacterLiteral *E) { return true; }
811 bool VisitStringLiteral(const StringLiteral *E) { return true; }
812 bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) { return true; }
813
815 // Constant expressions are trivial.
816 return true;
817 }
818
820 // An implicit value initialization is trvial.
821 return true;
822 }
823
824private:
825 CacheTy &Cache;
826 CacheTy RecursiveFn;
827};
828
829bool TrivialFunctionAnalysis::isTrivialImpl(
830 const Decl *D, TrivialFunctionAnalysis::CacheTy &Cache) {
832 return V.IsFunctionTrivial(D);
833}
834
835bool TrivialFunctionAnalysis::isTrivialImpl(
836 const Stmt *S, TrivialFunctionAnalysis::CacheTy &Cache) {
838 return V.IsStatementTrivial(S);
839}
840
841} // namespace clang
#define V(N, I)
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
Defines the clang::Expr interface and subclasses for C++ expressions.
TypePropertyCache< Private > Cache
Definition Type.cpp:4785
QualType getTypedefType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier Qualifier, const TypedefNameDecl *Decl, QualType UnderlyingType=QualType(), std::optional< bool > TypeMatchesDeclOrNone=std::nullopt) const
Return the unique reference to the type for the specified typedef-name decl.
Represents the index of the current element of an array being initialized by an ArrayInitLoopExpr.
Definition Expr.h:5955
Represents a loop initializing the elements of an array.
Definition Expr.h:5902
OpaqueValueExpr * getCommonExpr() const
Get the common subexpression shared by all initializations (the source array).
Definition Expr.h:5917
Expr * getSubExpr() const
Get the initializer to use for each array element.
Definition Expr.h:5922
ArraySubscriptExpr - [C99 6.5.2.1] Array Subscripting.
Definition Expr.h:2721
AtomicExpr - Variadic atomic builtins: __atomic_exchange, __atomic_fetch_*, __atomic_load,...
Definition Expr.h:6814
Attr - This represents one attribute.
Definition Attr.h:45
Represents an attribute applied to a statement.
Definition Stmt.h:2193
Stmt * getSubStmt()
Definition Stmt.h:2229
A builtin binary operation expression such as "x + y" or "x <= y".
Definition Expr.h:3972
Expr * getLHS() const
Definition Expr.h:4022
Expr * getRHS() const
Definition Expr.h:4024
BreakStmt - This represents a break.
Definition Stmt.h:3125
Represents a path from a specific derived class (which is not represented as part of the path) to a p...
BasePaths - Represents the set of paths from a derived class to one of its (direct or indirect) bases...
void setOrigin(const CXXRecordDecl *Rec)
void clear()
Clear the base-paths results.
Represents a base class of a C++ class.
Definition DeclCXX.h:146
Represents binding an expression to a temporary.
Definition ExprCXX.h:1493
CXXTemporary * getTemporary()
Definition ExprCXX.h:1511
const Expr * getSubExpr() const
Definition ExprCXX.h:1515
A boolean literal, per ([C++ lex.bool] Boolean literals).
Definition ExprCXX.h:723
Represents a call to a C++ constructor.
Definition ExprCXX.h:1548
arg_range arguments()
Definition ExprCXX.h:1672
CXXConstructorDecl * getConstructor() const
Get the constructor that this expression will (ultimately) call.
Definition ExprCXX.h:1611
A default argument (C++ [dcl.fct.default]).
Definition ExprCXX.h:1270
CXXForRangeStmt - This represents C++0x [stmt.ranged]'s ranged for statement, represented as 'for (ra...
Definition StmtCXX.h:135
Represents a call to an inherited base class constructor from an inheriting constructor.
Definition ExprCXX.h:1751
CXXConstructorDecl * getConstructor() const
Get the constructor that this expression will call.
Definition ExprCXX.h:1788
Represents a call to a member function that may be written either with member call syntax (e....
Definition ExprCXX.h:179
CXXMethodDecl * getMethodDecl() const
Retrieve the declaration of the called method.
Definition ExprCXX.cpp:741
Expr * getImplicitObjectArgument() const
Retrieve the implicit object argument for the member call.
Definition ExprCXX.cpp:722
Represents a static or instance method of a struct/union/class.
Definition DeclCXX.h:2129
const CXXRecordDecl * getParent() const
Return the parent of this method declaration, which is the class in which this method is defined.
Definition DeclCXX.h:2255
Represents a new-expression for memory allocation and constructor calls, e.g: "new CXXNewExpr(foo)".
Definition ExprCXX.h:2355
The null pointer literal (C++11 [lex.nullptr])
Definition ExprCXX.h:768
A call to an overloaded operator written using operator syntax.
Definition ExprCXX.h:84
Represents a C++ struct/union/class.
Definition DeclCXX.h:258
method_range methods() const
Definition DeclCXX.h:650
CXXRecordDecl * getDefinition() const
Definition DeclCXX.h:548
const CXXRecordDecl * getTemplateInstantiationPattern() const
Retrieve the record declaration from which this record could be instantiated.
Definition DeclCXX.cpp:2075
bool lookupInBases(BaseMatchesCallback BaseMatches, CXXBasePaths &Paths, bool LookupInDependent=false) const
Look for entities within the base classes of this C++ class, transitively searching all base class su...
bool hasDefinition() const
Definition DeclCXX.h:561
Represents the this expression in C++.
Definition ExprCXX.h:1154
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
Definition Expr.h:2877
FunctionDecl * getDirectCallee()
If the callee is a FunctionDecl, return it. Otherwise return null.
Definition Expr.h:3060
arg_range arguments()
Definition Expr.h:3129
Decl * getCalleeDecl()
Definition Expr.h:3054
CaseStmt - Represent a case statement.
Definition Stmt.h:1910
Expr * getSubExpr()
Definition Expr.h:3660
CompoundAssignOperator - For compound assignments (e.g.
Definition Expr.h:4234
CompoundStmt - This represents a group of statements like { stmt stmt }.
Definition Stmt.h:1730
ConditionalOperator - The ?
Definition Expr.h:4325
ConstStmtVisitor - This class implements a simple visitor for Stmt subclasses.
ConstantExpr - An expression that occurs in a constant context and optionally the result of evaluatin...
Definition Expr.h:1082
ContinueStmt - This represents a continue.
Definition Stmt.h:3109
Represents the body of a coroutine.
Definition StmtCXX.h:320
DeclContext * getParent()
getParent - Returns the containing DeclContext.
Definition DeclBase.h:2109
A reference to a declared variable, function, enum, etc.
Definition Expr.h:1270
DeclStmt - Adaptor class for mixing declarations with statements and expressions.
Definition Stmt.h:1621
Decl - This represents one declaration (or definition), e.g.
Definition DeclBase.h:86
ASTContext & getASTContext() const LLVM_READONLY
Definition DeclBase.cpp:546
virtual Stmt * getBody() const
getBody - If this Decl represents a declaration for a body of code, such as a function or method defi...
Definition DeclBase.h:1087
bool hasAttr() const
Definition DeclBase.h:577
const LangOptions & getLangOpts() const LLVM_READONLY
Helper to get the language options from the ASTContext.
Definition DeclBase.cpp:552
bool isIdentifier() const
Predicate functions for querying what type of name this is.
DoStmt - This represents a 'do/while' stmt.
Definition Stmt.h:2822
ExplicitCastExpr - An explicit cast written in the source code.
Definition Expr.h:3862
Represents an expression – generally a full-expression – that introduces cleanups to be run at the en...
Definition ExprCXX.h:3661
This represents one expression.
Definition Expr.h:112
ForStmt - This represents a 'for (init;cond;inc)' stmt.
Definition Stmt.h:2878
const Expr * getSubExpr() const
Definition Expr.h:1062
Represents a function declaration or definition.
Definition Decl.h:2000
QualType getReturnType() const
Definition Decl.h:2845
This represents a GCC inline-assembly statement extension.
Definition Stmt.h:3426
std::string getAsmString() const
Definition Stmt.cpp:536
GotoStmt - This represents a direct goto.
Definition Stmt.h:2959
IfStmt - This represents an if/then/else.
Definition Stmt.h:2249
ImplicitCastExpr - Allows us to explicitly represent implicit type conversions, which have no direct ...
Definition Expr.h:3787
Represents an implicitly-generated value initialization of an object of a given type.
Definition Expr.h:5991
Describes an C or C++ initializer list.
Definition Expr.h:5233
ArrayRef< Expr * > inits()
Definition Expr.h:5283
LabelStmt - Represents a label, which has a substatement.
Definition Stmt.h:2136
Represents a prvalue temporary that is written into memory so that a reference can bind to it.
Definition ExprCXX.h:4920
Expr * getSubExpr() const
Retrieve the temporary-generating subexpression whose value will be materialized into a glvalue.
Definition ExprCXX.h:4937
MemberExpr - [C99 6.5.2.3] Structure and Union Members.
Definition Expr.h:3298
Expr * getBase() const
Definition Expr.h:3375
This represents a decl that may have a name.
Definition Decl.h:274
StringRef getName() const
Get the name of identifier for this declaration as a StringRef.
Definition Decl.h:301
DeclarationName getDeclName() const
Get the actual, stored name of the declaration, which may be a special name.
Definition Decl.h:340
OffsetOfExpr - [C99 7.17] - This represents an expression of the form offsetof(record-type,...
Definition Expr.h:2527
OpaqueValueExpr - An expression referring to an opaque object of a fixed type and value class.
Definition Expr.h:1178
Expr * getSourceExpr() const
The source expression of an opaque value expression is the expression which originally generated the ...
Definition Expr.h:1228
ParenExpr - This represents a parenthesized expression, e.g.
Definition Expr.h:2182
const Expr * getSubExpr() const
Definition Expr.h:2199
[C99 6.4.2.2] - A predefined identifier such as func.
Definition Expr.h:2005
A (possibly-)qualified type.
Definition TypeBase.h:937
const Type * getTypePtr() const
Retrieves a pointer to the underlying (unqualified) type.
Definition TypeBase.h:8278
QualType getCanonicalType() const
Definition TypeBase.h:8330
const Type * getTypePtrOrNull() const
Definition TypeBase.h:8282
bool isUnretained(const QualType, bool ignoreARC=false)
void visitTranslationUnitDecl(const TranslationUnitDecl *)
void visitTypedef(const TypedefDecl *)
ReturnStmt - This represents a return, optionally of an expression: return; return 4;.
Definition Stmt.h:3150
Expr * getRetValue()
Definition Stmt.h:3177
Represents a C++11 static_assert declaration.
Definition DeclCXX.h:4132
Stmt - This represents one statement.
Definition Stmt.h:85
child_range children()
Definition Stmt.cpp:299
StringLiteral - This represents a string literal expression, e.g.
Definition Expr.h:1799
Represents a reference to a non-type template parameter that has been substituted with a template arg...
Definition ExprCXX.h:4664
SwitchStmt - This represents a 'switch' stmt.
Definition Stmt.h:2499
The top declaration context.
Definition Decl.h:105
bool VisitMemberExpr(const MemberExpr *ME)
bool VisitStringLiteral(const StringLiteral *E)
bool VisitStaticAssertDecl(const StaticAssertDecl *SAD)
bool VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *BTE)
bool VisitCXXThisExpr(const CXXThisExpr *CTE)
bool VisitUnaryOperator(const UnaryOperator *UO)
bool VisitArrayInitLoopExpr(const ArrayInitLoopExpr *AILE)
bool VisitPredefinedExpr(const PredefinedExpr *E)
bool VisitContinueStmt(const ContinueStmt *)
bool VisitSwitchStmt(const SwitchStmt *SS)
bool VisitGCCAsmStmt(const GCCAsmStmt *AS)
bool VisitCompoundAssignOperator(const CompoundAssignOperator *CAO)
bool VisitCXXDefaultArgExpr(const CXXDefaultArgExpr *E)
bool VisitFixedPointLiteral(const FixedPointLiteral *E)
bool VisitDeclRefExpr(const DeclRefExpr *DRE)
bool VisitIntegerLiteral(const IntegerLiteral *E)
bool VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *VMT)
bool VisitCXXInheritedCtorInitExpr(const CXXInheritedCtorInitExpr *E)
bool VisitFloatingLiteral(const FloatingLiteral *E)
TrivialFunctionAnalysis::CacheTy CacheTy
bool VisitConditionalOperator(const ConditionalOperator *CO)
bool VisitSubstNonTypeTemplateParmExpr(const SubstNonTypeTemplateParmExpr *E)
bool VisitCompoundStmt(const CompoundStmt *CS)
bool VisitImplicitValueInitExpr(const ImplicitValueInitExpr *IVIE)
bool VisitConstantExpr(const ConstantExpr *CE)
bool VisitImplicitCastExpr(const ImplicitCastExpr *ICE)
bool VisitCXXOperatorCallExpr(const CXXOperatorCallExpr *OCE)
bool VisitCXXNullPtrLiteralExpr(const CXXNullPtrLiteralExpr *E)
bool VisitOpaqueValueExpr(const OpaqueValueExpr *OVE)
bool VisitExprWithCleanups(const ExprWithCleanups *EWC)
bool VisitArraySubscriptExpr(const ArraySubscriptExpr *ASE)
bool VisitCXXNewExpr(const CXXNewExpr *NE)
bool VisitBinaryOperator(const BinaryOperator *BO)
bool VisitCoroutineBodyStmt(const CoroutineBodyStmt *CBS)
bool VisitCXXMemberCallExpr(const CXXMemberCallExpr *MCE)
bool VisitCXXForRangeStmt(const CXXForRangeStmt *FS)
bool VisitCharacterLiteral(const CharacterLiteral *E)
bool VisitInitListExpr(const InitListExpr *ILE)
bool VisitAttributedStmt(const AttributedStmt *AS)
bool VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *E)
bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E)
bool VisitExplicitCastExpr(const ExplicitCastExpr *ECE)
bool VisitArrayInitIndexExpr(const ArrayInitIndexExpr *AIIE)
bool VisitDefaultStmt(const DefaultStmt *DS)
bool VisitOffsetOfExpr(const OffsetOfExpr *OE)
bool VisitCXXConstructExpr(const CXXConstructExpr *CE)
bool VisitReturnStmt(const ReturnStmt *RS)
The base class of the type hierarchy.
Definition TypeBase.h:1833
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
Definition Type.cpp:752
const T * getAsCanonical() const
If this type is canonically the specified type, return its canonical type cast to that specified type...
Definition TypeBase.h:2921
Represents the declaration of a typedef-name via the 'typedef' type specifier.
Definition Decl.h:3667
QualType getUnderlyingType() const
Definition Decl.h:3617
UnaryExprOrTypeTraitExpr - expression with either a type or (unevaluated) expression operand.
Definition Expr.h:2625
UnaryOperator - This represents the unary-expression's (except sizeof and alignof),...
Definition Expr.h:2244
Expr * getSubExpr() const
Definition Expr.h:2285
Opcode getOpcode() const
Definition Expr.h:2280
WhileStmt - This represents a 'while' stmt.
Definition Stmt.h:2687
const internal::VariadicAllOfMatcher< Type > type
Matches Types in the clang AST.
bool isCocoaObjectRef(QualType T)
The JSON file list parser is used to communicate input to InstallAPI.
bool isCtorOfSafePtr(const clang::FunctionDecl *F)
bool isTrivialBuiltinFunction(const FunctionDecl *F)
bool isa(CodeGen::Address addr)
Definition Address.h:330
bool isPtrConversion(const FunctionDecl *F)
std::optional< bool > isCheckedPtrCapable(const clang::CXXRecordDecl *R)
std::optional< bool > isUnchecked(const QualType T)
bool isCtorOfRefCounted(const clang::FunctionDecl *F)
bool isRefOrCheckedPtrType(const clang::QualType T)
@ AS_public
Definition Specifiers.h:124
bool isRetainPtrOrOSPtrType(const clang::QualType T)
bool isCtorOfRetainPtrOrOSPtr(const clang::FunctionDecl *F)
@ Result
The result type of a method or function.
Definition TypeBase.h:905
bool isOwnerPtr(const std::string &Name)
const FunctionProtoType * T
std::optional< bool > isRefCountable(const clang::CXXRecordDecl *R)
std::optional< const clang::CXXRecordDecl * > hasPublicMethodInBase(const CXXBaseSpecifier *Base, StringRef NameToMatch)
bool isSmartPtrClass(const std::string &Name)
bool isRefCounted(const CXXRecordDecl *R)
static bool isPtrOfType(const clang::QualType T, Predicate Pred)
std::optional< bool > isSmartPtrCompatible(const CXXRecordDecl *R, StringRef IncMethodName, StringRef DecMethodName)
bool isOwnerPtrType(const clang::QualType T)
bool isSmartPtr(const CXXRecordDecl *R)
std::optional< bool > isGetterOfSafePtr(const CXXMethodDecl *M)
bool isRetainPtrOrOSPtr(const std::string &Name)
bool isRefType(const std::string &Name)
std::optional< bool > isUncountedPtr(const QualType T)
std::string safeGetName(const T *ASTNode)
Definition ASTUtils.h:95
bool isCtorOfCheckedPtr(const clang::FunctionDecl *F)
bool isSingleton(const NamedDecl *F)
bool isCheckedPtr(const std::string &Name)
bool isStdOrWTFMove(const clang::FunctionDecl *F)
@ None
No keyword precedes the qualified type name.
Definition TypeBase.h:5874
@ Class
The "class" keyword introduces the elaborated-type-specifier.
Definition TypeBase.h:5864
std::optional< bool > isUncounted(const QualType T)
std::optional< bool > isUncheckedPtr(const QualType T)