2008-12-18 22:28:57 +01:00
|
|
|
/*
|
2009-01-21 21:04:20 +01:00
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2023-01-28 10:16:34 +01:00
|
|
|
* Copyright (C) 2007-2023 Cppcheck team.
|
2008-12-18 22:28:57 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2009-09-27 17:08:31 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-12-18 22:28:57 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
2009-06-07 22:12:20 +02:00
|
|
|
#ifndef checkunusedfunctionsH
|
|
|
|
#define checkunusedfunctionsH
|
2008-12-18 22:28:57 +01:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2010-04-04 22:55:28 +02:00
|
|
|
#include "check.h"
|
2017-05-27 04:33:47 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
#include <set>
|
|
|
|
#include <string>
|
2022-10-06 20:12:07 +02:00
|
|
|
#include <unordered_map>
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2017-05-27 04:33:47 +02:00
|
|
|
class ErrorLogger;
|
|
|
|
class Function;
|
|
|
|
class Settings;
|
|
|
|
class Tokenizer;
|
2016-10-31 20:43:57 +01:00
|
|
|
|
2022-01-27 19:03:20 +01:00
|
|
|
namespace CTU {
|
|
|
|
class FileInfo;
|
|
|
|
}
|
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @addtogroup Checks
|
2014-01-01 20:46:00 +01:00
|
|
|
/** @brief Check for functions never called */
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @{
|
|
|
|
|
2014-04-13 11:51:29 +02:00
|
|
|
class CPPCHECKLIB CheckUnusedFunctions : public Check {
|
2008-12-18 22:28:57 +01:00
|
|
|
public:
|
2010-07-08 13:01:53 +02:00
|
|
|
/** @brief This constructor is used when registering the CheckUnusedFunctions */
|
2021-08-07 20:51:18 +02:00
|
|
|
CheckUnusedFunctions() : Check(myName()) {}
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2010-07-08 13:01:53 +02:00
|
|
|
/** @brief This constructor is used when running checks. */
|
|
|
|
CheckUnusedFunctions(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
|
2021-08-07 20:51:18 +02:00
|
|
|
: Check(myName(), tokenizer, settings, errorLogger) {}
|
2008-12-19 20:31:12 +01:00
|
|
|
|
2023-09-11 11:12:42 +02:00
|
|
|
static void clear();
|
2018-02-10 15:34:49 +01:00
|
|
|
|
2008-12-18 22:28:57 +01:00
|
|
|
// Parse current tokens and determine..
|
|
|
|
// * Check what functions are used
|
|
|
|
// * What functions are declared
|
2018-02-10 15:34:49 +01:00
|
|
|
void parseTokens(const Tokenizer &tokenizer, const char FileName[], const Settings *settings);
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2018-01-12 08:24:01 +01:00
|
|
|
// Return true if an error is reported.
|
2022-03-02 07:46:47 +01:00
|
|
|
bool check(ErrorLogger * const errorLogger, const Settings& settings) const;
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2014-12-02 06:41:18 +01:00
|
|
|
/** @brief Parse current TU and extract file info */
|
2022-02-10 23:02:24 +01:00
|
|
|
Check::FileInfo *getFileInfo(const Tokenizer *tokenizer, const Settings *settings) const override;
|
2014-12-02 06:41:18 +01:00
|
|
|
|
|
|
|
/** @brief Analyse all file infos for all TU */
|
2022-02-10 23:02:24 +01:00
|
|
|
bool analyseWholeProgram(const CTU::FileInfo *ctu, const std::list<Check::FileInfo*> &fileInfo, const Settings& settings, ErrorLogger &errorLogger) override;
|
2014-12-02 06:41:18 +01:00
|
|
|
|
2016-11-01 13:34:26 +01:00
|
|
|
std::string analyzerInfo() const;
|
2016-10-29 12:18:11 +02:00
|
|
|
|
2016-10-31 20:43:57 +01:00
|
|
|
/** @brief Combine and analyze all analyzerInfos for all TUs */
|
2023-01-18 20:52:33 +01:00
|
|
|
static void analyseWholeProgram(const Settings &settings, ErrorLogger * const errorLogger, const std::string &buildDir);
|
2016-10-31 20:43:57 +01:00
|
|
|
|
2008-12-18 22:28:57 +01:00
|
|
|
private:
|
2022-02-10 23:02:24 +01:00
|
|
|
void getErrorMessages(ErrorLogger *errorLogger, const Settings * /*settings*/) const override {
|
2023-09-20 14:45:44 +02:00
|
|
|
CheckUnusedFunctions::unusedFunctionError(errorLogger, emptyString, 0, 0, "funcName");
|
2010-04-04 22:55:28 +02:00
|
|
|
}
|
|
|
|
|
2023-08-18 12:03:50 +02:00
|
|
|
void runChecks(const Tokenizer & /*tokenizer*/, ErrorLogger * /*errorLogger*/) override {}
|
2019-03-16 09:17:50 +01:00
|
|
|
|
2010-04-04 22:55:28 +02:00
|
|
|
/**
|
|
|
|
* Dummy implementation, just to provide error for --errorlist
|
|
|
|
*/
|
2013-07-30 12:52:27 +02:00
|
|
|
static void unusedFunctionError(ErrorLogger * const errorLogger,
|
2023-09-20 14:45:44 +02:00
|
|
|
const std::string &filename, unsigned int fileIndex, unsigned int lineNumber,
|
2013-07-30 12:52:27 +02:00
|
|
|
const std::string &funcname);
|
2010-04-04 22:55:28 +02:00
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
static std::string myName() {
|
2010-04-04 22:55:28 +02:00
|
|
|
return "Unused functions";
|
|
|
|
}
|
|
|
|
|
2022-02-10 23:02:24 +01:00
|
|
|
std::string classInfo() const override {
|
2010-04-04 22:55:28 +02:00
|
|
|
return "Check for functions that are never called\n";
|
|
|
|
}
|
|
|
|
|
2023-08-08 11:05:02 +02:00
|
|
|
struct CPPCHECKLIB FunctionUsage {
|
2008-12-18 22:28:57 +01:00
|
|
|
std::string filename;
|
2023-08-08 11:05:02 +02:00
|
|
|
unsigned int lineNumber{};
|
2023-09-20 14:45:44 +02:00
|
|
|
unsigned int fileIndex{};
|
2023-08-08 11:05:02 +02:00
|
|
|
bool usedSameFile{};
|
|
|
|
bool usedOtherFile{};
|
2008-12-18 22:28:57 +01:00
|
|
|
};
|
|
|
|
|
2022-10-06 20:12:07 +02:00
|
|
|
std::unordered_map<std::string, FunctionUsage> mFunctions;
|
2016-10-31 20:43:57 +01:00
|
|
|
|
|
|
|
class CPPCHECKLIB FunctionDecl {
|
|
|
|
public:
|
2016-11-01 11:18:03 +01:00
|
|
|
explicit FunctionDecl(const Function *f);
|
2016-10-31 20:43:57 +01:00
|
|
|
std::string functionName;
|
|
|
|
unsigned int lineNumber;
|
|
|
|
};
|
2018-06-17 18:58:27 +02:00
|
|
|
std::list<FunctionDecl> mFunctionDecl;
|
|
|
|
std::set<std::string> mFunctionCalls;
|
2008-12-18 22:28:57 +01:00
|
|
|
};
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @}
|
2008-12-18 22:28:57 +01:00
|
|
|
//---------------------------------------------------------------------------
|
2013-09-04 20:59:49 +02:00
|
|
|
#endif // checkunusedfunctionsH
|