Author: DonĂ¡t Nagy Date: 2025-03-20T17:08:52+01:00 New Revision: 7c1f473524abe4d85af9ea390d3516848c9ba31e
URL: https://github.com/llvm/llvm-project/commit/7c1f473524abe4d85af9ea390d3516848c9ba31e DIFF: https://github.com/llvm/llvm-project/commit/7c1f473524abe4d85af9ea390d3516848c9ba31e.diff LOG: [NFC][analyzer] Multipart checker refactor 1: VirtualCallChecker (#132072) Simplify `VirtualCallChecker.cpp` with the help of the new framework for multipart checkers that was introduced by commit 27099982da2f5a6c2d282d6b385e79d080669546. This is part of a commit series that will perform analogous changes in all checker classes that implement multiple user-facing checker parts (with separate names). In this commit I'm removing the undocumented hidden `cplusplus.VirtualCallModeling` checker, because (to my best understanding) it was just a hacky implementation detail within the old way of registering the "real" checker parts. Note that keeping or re-adding an extra checker part like this modeling checker would be very easy within the new framework; I'm removing it only because I'm convinced that it is no longer useful. Added: Modified: clang/include/clang/StaticAnalyzer/Checkers/Checkers.td clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp Removed: ################################################################################ diff --git a/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td b/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td index 35df4e7003ac9..648dd9e28b83e 100644 --- a/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td +++ b/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td @@ -694,15 +694,11 @@ def MoveChecker: Checker<"Move">, ]>, Documentation<HasDocumentation>; -def VirtualCallModeling : Checker<"VirtualCallModeling">, - HelpText<"Auxiliary modeling for the virtual method call checkers">, - Documentation<NotDocumented>, - Hidden; - -def PureVirtualCallChecker : Checker<"PureVirtualCall">, - HelpText<"Check pure virtual function calls during construction/destruction">, - Dependencies<[VirtualCallModeling]>, - Documentation<HasDocumentation>; +def PureVirtualCallChecker + : Checker<"PureVirtualCall">, + HelpText< + "Check pure virtual function calls during construction/destruction">, + Documentation<HasDocumentation>; } // end: "cplusplus" let ParentPackage = CplusplusOptIn in { @@ -756,7 +752,6 @@ def VirtualCallChecker CheckerOptions<[CmdLineOption<Boolean, "ShowFixIts", "Enable fix-it hints for this checker", "false", InAlpha>]>, - Dependencies<[VirtualCallModeling]>, Documentation<HasDocumentation>; } // end: "optin.cplusplus" diff --git a/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp index 6d9c52e966022..5b0d303ee5bbc 100644 --- a/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp @@ -42,8 +42,14 @@ namespace { class VirtualCallChecker : public Checker<check::BeginFunction, check::EndFunction, check::PreCall> { public: - // These are going to be null if the respective check is disabled. - mutable std::unique_ptr<BugType> BT_Pure, BT_Impure; + enum : CheckerPartIdx { PureChecker, ImpureChecker, NumCheckerParts }; + + BugType BugTypes[NumCheckerParts] = { + {this, PureChecker, "Pure virtual method call", + categories::CXXObjectLifecycle}, + {this, ImpureChecker, "Unexpected loss of virtual dispatch", + categories::CXXObjectLifecycle}}; + bool ShowFixIts = false; void checkBeginFunction(CheckerContext &C) const; @@ -141,13 +147,15 @@ void VirtualCallChecker::checkPreCall(const CallEvent &Call, if (!N) return; - const std::unique_ptr<BugType> &BT = IsPure ? BT_Pure : BT_Impure; - if (!BT) { + const CheckerPartIdx Part = IsPure ? PureChecker : ImpureChecker; + + if (!isPartEnabled(Part)) { // The respective check is disabled. return; } - auto Report = std::make_unique<PathSensitiveBugReport>(*BT, OS.str(), N); + auto Report = + std::make_unique<PathSensitiveBugReport>(BugTypes[Part], OS.str(), N); if (ShowFixIts && !IsPure) { // FIXME: These hints are valid only when the virtual call is made @@ -201,37 +209,21 @@ void VirtualCallChecker::registerCtorDtorCallInState(bool IsBeginFunction, } } -void ento::registerVirtualCallModeling(CheckerManager &Mgr) { - Mgr.registerChecker<VirtualCallChecker>(); +void ento::registerPureVirtualCallChecker(CheckerManager &Mgr) { + Mgr.registerChecker<VirtualCallChecker, VirtualCallChecker::PureChecker>(); } -void ento::registerPureVirtualCallChecker(CheckerManager &Mgr) { - auto *Chk = Mgr.getChecker<VirtualCallChecker>(); - Chk->BT_Pure = std::make_unique<BugType>(Mgr.getCurrentCheckerName(), - "Pure virtual method call", - categories::CXXObjectLifecycle); +bool ento::shouldRegisterPureVirtualCallChecker(const CheckerManager &Mgr) { + return Mgr.getLangOpts().CPlusPlus; } void ento::registerVirtualCallChecker(CheckerManager &Mgr) { - auto *Chk = Mgr.getChecker<VirtualCallChecker>(); - Chk->BT_Impure = std::make_unique<BugType>( - Mgr.getCurrentCheckerName(), "Unexpected loss of virtual dispatch", - categories::CXXObjectLifecycle); + auto *Chk = Mgr.registerChecker<VirtualCallChecker, + VirtualCallChecker::ImpureChecker>(); Chk->ShowFixIts = Mgr.getAnalyzerOptions().getCheckerBooleanOption( Mgr.getCurrentCheckerName(), "ShowFixIts"); } -bool ento::shouldRegisterVirtualCallModeling(const CheckerManager &mgr) { - const LangOptions &LO = mgr.getLangOpts(); - return LO.CPlusPlus; -} - -bool ento::shouldRegisterPureVirtualCallChecker(const CheckerManager &mgr) { - const LangOptions &LO = mgr.getLangOpts(); - return LO.CPlusPlus; -} - -bool ento::shouldRegisterVirtualCallChecker(const CheckerManager &mgr) { - const LangOptions &LO = mgr.getLangOpts(); - return LO.CPlusPlus; +bool ento::shouldRegisterVirtualCallChecker(const CheckerManager &Mgr) { + return Mgr.getLangOpts().CPlusPlus; } _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits