Files
sousa-gecko/build/clang-plugin/NoDuplicateRefCntMemberChecker.cpp
T
serge-sans-paille 60e367c3c4 Bug 2019521 - Move clang-tidy logic from checker to matcher r=sylvestre,firefox-static-analysis-reviewers
This should save memory and compilation time by not creating an unused
context. It also clearly conveys the pattern caught by the pass.

Concerning compilation speed, let's take the example of
`Unified_cpp_js_src_jit5.cpp`.

Without clang-plugin, it takes:         10.603 s ±  0.183 s to compile.
With clang-plugin, before this patch:   14.188 s ±  0.230 s to compile
With clang-plugin, after this patch:    14.108 s ±  0.772 s to compile

So that's roughly 3.59s spent into the plugin, down to 3.51 with this
patch, a marginal 2% speedup on the plugin efficiency.

Differential Revision: https://phabricator.services.mozilla.com/D285008
2026-03-05 09:08:52 +00:00

66 lines
2.7 KiB
C++

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "NoDuplicateRefCntMemberChecker.h"
#include "CustomMatchers.h"
void NoDuplicateRefCntMemberChecker::registerMatchers(MatchFinder *AstMatcher) {
AstMatcher->addMatcher(
cxxRecordDecl(hasDefinition(), hasAnyBase(hasType(cxxRecordDecl(
has(fieldDecl(hasName("mRefCnt")))))))
.bind("decl"),
this);
}
void NoDuplicateRefCntMemberChecker::check(
const MatchFinder::MatchResult &Result) {
const CXXRecordDecl *D = Result.Nodes.getNodeAs<CXXRecordDecl>("decl");
const FieldDecl *RefCntMember = getClassRefCntMember(D);
const FieldDecl *FoundRefCntBase = nullptr;
// If we don't have an mRefCnt member, and we have less than 2 superclasses,
// we don't have to run this loop, as neither case will ever apply.
if (!RefCntMember && D->getNumBases() < 2) {
return;
}
// Check every superclass for whether it has a base with a refcnt member, and
// warn for those which do
for (auto &Base : D->bases()) {
// Determine if this base class has an mRefCnt member
const FieldDecl *BaseRefCntMember = getBaseRefCntMember(Base.getType());
if (BaseRefCntMember) {
if (RefCntMember) {
// We have an mRefCnt, and superclass has an mRefCnt
const char *Error = "Refcounted record %0 has multiple mRefCnt members";
const char *Note1 = "Superclass %0 also has an mRefCnt member";
const char *Note2 =
"Consider using the _INHERITED macros for AddRef and Release here";
diag(D->getBeginLoc(), Error, DiagnosticIDs::Error) << D;
diag(BaseRefCntMember->getBeginLoc(), Note1, DiagnosticIDs::Note)
<< BaseRefCntMember->getParent();
diag(RefCntMember->getBeginLoc(), Note2, DiagnosticIDs::Note);
}
if (FoundRefCntBase) {
const char *Error = "Refcounted record %0 has multiple superclasses "
"with mRefCnt members";
const char *Note = "Superclass %0 has an mRefCnt member";
// superclass has mRefCnt, and another superclass also has an mRefCnt
diag(D->getBeginLoc(), Error, DiagnosticIDs::Error) << D;
diag(BaseRefCntMember->getBeginLoc(), Note, DiagnosticIDs::Note)
<< BaseRefCntMember->getParent();
diag(FoundRefCntBase->getBeginLoc(), Note, DiagnosticIDs::Note)
<< FoundRefCntBase->getParent();
}
// Record that we've found a base with a mRefCnt member
FoundRefCntBase = BaseRefCntMember;
}
}
}