Files
sousa-gecko/build/clang-plugin/NoAddRefReleaseOnReturnChecker.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

37 lines
1.5 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 "NoAddRefReleaseOnReturnChecker.h"
#include "CustomMatchers.h"
void NoAddRefReleaseOnReturnChecker::registerMatchers(MatchFinder *AstMatcher) {
// Look for all of the calls to AddRef() or Release()
AstMatcher->addMatcher(
memberExpr(
isAddRefOrRelease(),
hasObjectExpression(ignoringImplicit(
callExpr(callee(functionDecl(hasNoAddRefReleaseOnReturnAttr())
.bind("callee")))
.bind("call"))),
hasParent(callExpr()))
.bind("member"),
this);
}
void NoAddRefReleaseOnReturnChecker::check(
const MatchFinder::MatchResult &Result) {
const MemberExpr *Member = Result.Nodes.getNodeAs<MemberExpr>("member");
const CallExpr *Call = Result.Nodes.getNodeAs<CallExpr>("call");
const FunctionDecl *Callee = Result.Nodes.getNodeAs<FunctionDecl>("callee");
// Check if the call to AddRef() or Release() was made on the result of a call
// to a MOZ_NO_ADDREF_RELEASE_ON_RETURN function or method.
diag(Call->getBeginLoc(),
"%1 must not be called on the return value of '%0' which is marked with "
"MOZ_NO_ADDREF_RELEASE_ON_RETURN",
DiagnosticIDs::Error)
<< Callee->getQualifiedNameAsString()
<< dyn_cast<CXXMethodDecl>(Member->getMemberDecl());
}