2009-03-19 20:55:50 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2009-05-30 07:48:12 +02:00
|
|
|
* Copyright (C) 2007-2009 Daniel Marjamäki and Cppcheck team.
|
2009-03-19 20:55:50 +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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#ifndef CheckAutoVariablesH
|
|
|
|
#define CheckAutoVariablesH
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "check.h"
|
|
|
|
#include "token.h"
|
|
|
|
#include <list>
|
|
|
|
|
|
|
|
class CheckAutoVariables : public Check
|
|
|
|
{
|
|
|
|
public:
|
2009-03-21 07:53:23 +01:00
|
|
|
/** This constructor is used when registering the CheckClass */
|
|
|
|
CheckAutoVariables() : Check()
|
|
|
|
{ }
|
|
|
|
|
|
|
|
/** This constructor is used when running checks.. */
|
|
|
|
CheckAutoVariables(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
|
2009-03-21 14:02:58 +01:00
|
|
|
: Check(tokenizer, settings, errorLogger)
|
2009-03-21 07:53:23 +01:00
|
|
|
{ }
|
|
|
|
|
|
|
|
void runSimplifiedChecks(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
|
2009-03-19 20:55:50 +01:00
|
|
|
{
|
2009-03-21 07:53:23 +01:00
|
|
|
CheckAutoVariables checkAutoVariables(tokenizer, settings, errorLogger);
|
|
|
|
checkAutoVariables.autoVariables();
|
2009-03-19 20:55:50 +01:00
|
|
|
}
|
|
|
|
|
2009-05-22 07:51:30 +02:00
|
|
|
/** Check auto variables */
|
2009-03-19 20:55:50 +01:00
|
|
|
void autoVariables();
|
2009-03-21 07:53:23 +01:00
|
|
|
|
2009-03-19 20:55:50 +01:00
|
|
|
private:
|
|
|
|
std::list<std::string> fp_list;
|
|
|
|
std::list<std::string> vd_list;
|
2009-03-22 08:01:48 +01:00
|
|
|
bool errorAv(const Token* left, const Token* right);
|
|
|
|
bool isAutoVar(const Token* t);
|
2009-03-19 20:55:50 +01:00
|
|
|
void addVD(const Token* t);
|
2009-03-22 08:20:15 +01:00
|
|
|
|
|
|
|
void getErrorMessages()
|
|
|
|
{
|
|
|
|
reportError(0, "error", "autoVariables", "Wrong assignement of an auto-variable to an effective parameter of a function");
|
|
|
|
}
|
2009-03-19 20:55:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#endif
|
|
|
|
|