2009-01-26 17:38:08 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2015-01-03 12:14:58 +01:00
|
|
|
* Copyright (C) 2007-2015 Daniel Marjamäki and Cppcheck team.
|
2009-01-26 17:38:08 +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/>.
|
2009-01-26 17:38:08 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#ifndef tokenizeH
|
|
|
|
#define tokenizeH
|
|
|
|
//---------------------------------------------------------------------------
|
2010-08-06 17:44:26 +02:00
|
|
|
|
2012-04-22 11:28:46 +02:00
|
|
|
#include "errorlogger.h"
|
2012-05-05 18:33:26 +02:00
|
|
|
#include "tokenlist.h"
|
2012-06-10 14:19:09 +02:00
|
|
|
#include "config.h"
|
2012-01-06 17:31:10 +01:00
|
|
|
|
2009-01-26 17:38:08 +01:00
|
|
|
#include <string>
|
|
|
|
#include <map>
|
2015-03-15 10:04:44 +01:00
|
|
|
#include <set>
|
2011-02-12 20:12:07 +01:00
|
|
|
#include <list>
|
2013-11-02 17:31:14 +01:00
|
|
|
#include <ctime>
|
2009-07-13 19:11:31 +02:00
|
|
|
|
|
|
|
class Settings;
|
2010-11-23 18:41:07 +01:00
|
|
|
class SymbolDatabase;
|
2012-04-10 13:45:34 +02:00
|
|
|
class TimerResults;
|
2009-01-26 17:38:08 +01:00
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @addtogroup Core
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
/** @brief The main purpose is to tokenize the source code. It also has functions that simplify the token list */
|
2012-06-10 14:19:09 +02:00
|
|
|
class CPPCHECKLIB Tokenizer {
|
2009-01-26 17:38:08 +01:00
|
|
|
public:
|
|
|
|
Tokenizer();
|
2009-07-13 19:11:31 +02:00
|
|
|
Tokenizer(const Settings * settings, ErrorLogger *errorLogger);
|
2012-02-24 20:45:56 +01:00
|
|
|
~Tokenizer();
|
2009-01-26 17:38:08 +01:00
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
void setTimerResults(TimerResults *tr) {
|
2012-04-10 13:45:34 +02:00
|
|
|
m_timerResults = tr;
|
|
|
|
}
|
|
|
|
|
2011-10-26 21:17:27 +02:00
|
|
|
/** Is the code C. Used for bailouts */
|
2014-11-20 14:20:09 +01:00
|
|
|
bool isC() const {
|
2014-06-04 18:00:22 +02:00
|
|
|
return list.isC();
|
|
|
|
}
|
2011-10-26 21:17:27 +02:00
|
|
|
|
|
|
|
/** Is the code CPP. Used for bailouts */
|
2014-11-20 14:20:09 +01:00
|
|
|
bool isCPP() const {
|
2014-06-04 18:00:22 +02:00
|
|
|
return list.isCPP();
|
|
|
|
}
|
2011-10-26 21:17:27 +02:00
|
|
|
|
2011-12-27 18:00:12 +01:00
|
|
|
/**
|
|
|
|
* Check if inner scope ends with a call to a noreturn function
|
|
|
|
* \param endScopeToken The '}' token
|
|
|
|
* \param unknown set to true if it's unknown if the scope is noreturn
|
|
|
|
* \return true if scope ends with a function call that might be 'noreturn'
|
|
|
|
*/
|
2014-02-16 11:47:52 +01:00
|
|
|
bool IsScopeNoReturn(const Token *endScopeToken, bool *unknown = nullptr) const;
|
2011-12-27 18:00:12 +01:00
|
|
|
|
2009-01-26 17:38:08 +01:00
|
|
|
/**
|
|
|
|
* Tokenize code
|
2009-06-20 22:13:19 +02:00
|
|
|
* @param code input stream for code, e.g.
|
2009-07-18 10:25:22 +02:00
|
|
|
* \code
|
2009-06-20 22:13:19 +02:00
|
|
|
* #file "p.h"
|
|
|
|
* class Foo
|
|
|
|
* {
|
|
|
|
* private:
|
|
|
|
* void Bar();
|
|
|
|
* };
|
|
|
|
*
|
|
|
|
* #endfile
|
|
|
|
* void Foo::Bar()
|
|
|
|
* {
|
|
|
|
* }
|
2009-07-18 10:25:22 +02:00
|
|
|
* \endcode
|
2009-06-20 22:13:19 +02:00
|
|
|
*
|
2009-01-26 17:38:08 +01:00
|
|
|
* @param FileName The filename
|
2010-01-23 22:18:11 +01:00
|
|
|
* @param configuration E.g. "A" for code where "#ifdef A" is true
|
2014-06-04 18:04:04 +02:00
|
|
|
* @param noSymbolDB_AST Disable creation of SymbolDatabase and AST
|
2010-12-30 22:13:31 +01:00
|
|
|
* @return false if source code contains syntax errors
|
2009-01-26 17:38:08 +01:00
|
|
|
*/
|
2010-09-02 23:01:12 +02:00
|
|
|
bool tokenize(std::istream &code,
|
|
|
|
const char FileName[],
|
2014-06-26 11:44:19 +02:00
|
|
|
const std::string &configuration = emptyString,
|
2014-06-04 18:04:04 +02:00
|
|
|
bool noSymbolDB_AST = false);
|
2013-01-27 17:58:54 +01:00
|
|
|
/**
|
|
|
|
* tokenize condition and run simple simplifications on it
|
|
|
|
* @param code code
|
|
|
|
* @return true if success.
|
|
|
|
*/
|
|
|
|
bool tokenizeCondition(const std::string &code);
|
2009-01-26 17:38:08 +01:00
|
|
|
|
|
|
|
/** Set variable id */
|
2012-04-22 11:36:31 +02:00
|
|
|
void setVarId();
|
2009-01-26 17:38:08 +01:00
|
|
|
|
2009-11-10 22:10:56 +01:00
|
|
|
/**
|
2013-12-30 17:45:28 +01:00
|
|
|
* Basic simplification of tokenlist
|
|
|
|
*
|
2014-03-11 15:57:28 +01:00
|
|
|
* @param FileName The filename to run; used to do
|
|
|
|
* markup checks.
|
|
|
|
*
|
2013-12-30 17:45:28 +01:00
|
|
|
* @return false if there is an error that requires aborting
|
|
|
|
* the checking of this file.
|
|
|
|
*/
|
2014-03-11 15:57:28 +01:00
|
|
|
bool simplifyTokenList1(const char FileName[]);
|
2013-12-30 17:45:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Most aggressive simplification of tokenlist
|
|
|
|
*
|
|
|
|
* @return false if there is an error that requires aborting
|
|
|
|
* the checking of this file.
|
|
|
|
*/
|
|
|
|
bool simplifyTokenList2();
|
2009-01-26 17:38:08 +01:00
|
|
|
|
2011-11-20 18:08:07 +01:00
|
|
|
/**
|
|
|
|
* Deletes dead code between 'begin' and 'end'.
|
|
|
|
* In general not everything can be erased, such as:
|
|
|
|
* - code after labels;
|
|
|
|
* - code outside the scope where the function is called;
|
|
|
|
* - code after a change of scope caused by 'switch(...);'
|
|
|
|
* instructions, like 'case %any%;' or 'default;'
|
2011-11-20 19:01:31 +01:00
|
|
|
* Also, if the dead code contains a 'switch' block
|
|
|
|
* and inside it there's a label, the function removes all
|
|
|
|
* the 'switch(..)' tokens and every occurrence of 'case %any%; | default;'
|
|
|
|
* expression, such as the 'switch' block is reduced to a simple block.
|
2011-11-20 18:08:07 +01:00
|
|
|
*
|
|
|
|
* @param begin Tokens after this have a possibility to be erased.
|
|
|
|
* @param end Tokens before this have a possibility to be erased.
|
|
|
|
*/
|
|
|
|
static void eraseDeadCode(Token *begin, const Token *end);
|
|
|
|
|
2011-05-18 07:25:30 +02:00
|
|
|
/**
|
2015-01-31 10:50:39 +01:00
|
|
|
* Simplify '* & ( %name% ) =' or any combination of '* &' and '()'
|
|
|
|
* parentheses around '%name%' to '%name% ='
|
2011-05-18 07:25:30 +02:00
|
|
|
*/
|
2012-02-26 11:56:32 +01:00
|
|
|
void simplifyMulAndParens();
|
2011-05-18 07:25:30 +02:00
|
|
|
|
2009-10-07 09:54:34 +02:00
|
|
|
/**
|
|
|
|
* Calculates sizeof value for given type.
|
|
|
|
* @param type Token which will contain e.g. "int", "*", or string.
|
|
|
|
* @return sizeof for given type, or 0 if it can't be calculated.
|
|
|
|
*/
|
2009-10-10 21:54:58 +02:00
|
|
|
unsigned int sizeOfType(const Token *type) const;
|
2009-01-26 17:38:08 +01:00
|
|
|
|
2012-06-24 13:39:14 +02:00
|
|
|
/**
|
|
|
|
* Try to determine if function parameter is passed by value by looking
|
|
|
|
* at the function declaration.
|
|
|
|
* @param fpar token for function parameter in the function call
|
|
|
|
* @return true if the parameter is passed by value. if unsure, false is returned
|
|
|
|
*/
|
|
|
|
bool isFunctionParameterPassedByValue(const Token *fpar) const;
|
|
|
|
|
2009-10-17 23:11:48 +02:00
|
|
|
/**
|
2011-01-01 09:26:24 +01:00
|
|
|
* get error messages that the tokenizer generate
|
2009-10-17 23:11:48 +02:00
|
|
|
*/
|
2012-08-01 21:04:47 +02:00
|
|
|
static void getErrorMessages(ErrorLogger *errorLogger, const Settings *settings);
|
2009-10-17 23:11:48 +02:00
|
|
|
|
2010-09-09 19:40:36 +02:00
|
|
|
/** Simplify assignment in function call "f(x=g());" => "x=g();f(x);"
|
|
|
|
*/
|
|
|
|
void simplifyAssignmentInFunctionCall();
|
|
|
|
|
2012-09-22 18:41:33 +02:00
|
|
|
/** Simplify assignment where rhs is a block : "x=({123;});" => "{x=123;}" */
|
|
|
|
void simplifyAssignmentBlock();
|
|
|
|
|
2009-11-21 19:53:07 +01:00
|
|
|
/**
|
|
|
|
* Simplify constant calculations such as "1+2" => "3"
|
|
|
|
* @return true if modifications to token-list are done.
|
|
|
|
* false if no modifications are done.
|
|
|
|
*/
|
|
|
|
bool simplifyCalculations();
|
|
|
|
|
2013-05-03 06:50:48 +02:00
|
|
|
/**
|
|
|
|
* Simplify dereferencing a pointer offset by a number:
|
|
|
|
* "*(ptr + num)" => "ptr[num]"
|
|
|
|
* "*(ptr - num)" => "ptr[-num]"
|
|
|
|
*/
|
|
|
|
void simplifyOffsetPointerDereference();
|
|
|
|
|
2010-02-20 18:13:09 +01:00
|
|
|
/** Insert array size where it isn't given */
|
|
|
|
void arraySize();
|
|
|
|
|
2012-10-09 20:44:30 +02:00
|
|
|
/** Simplify labels and 'case|default' syntaxes.
|
|
|
|
*/
|
2014-03-27 18:41:52 +01:00
|
|
|
void simplifyLabelsCaseDefault();
|
2010-02-21 09:47:41 +01:00
|
|
|
|
2011-01-30 08:34:58 +01:00
|
|
|
/** Remove macros in global scope */
|
|
|
|
void removeMacrosInGlobalScope();
|
|
|
|
|
2015-01-17 07:42:49 +01:00
|
|
|
/** Remove undefined macro in class definition:
|
|
|
|
* class DLLEXPORT Fred { };
|
|
|
|
* class Fred FINAL : Base { };
|
|
|
|
*/
|
|
|
|
void removeMacroInClassDef();
|
|
|
|
|
2012-11-29 08:44:12 +01:00
|
|
|
/** Remove unknown macro in variable declarations: PROGMEM char x; */
|
|
|
|
void removeMacroInVarDecl();
|
|
|
|
|
2010-01-31 09:33:57 +01:00
|
|
|
/** Remove redundant assignment */
|
|
|
|
void removeRedundantAssignment();
|
|
|
|
|
2012-01-27 13:56:06 +01:00
|
|
|
/** Simplifies some realloc usage like
|
|
|
|
* 'x = realloc (0, n);' => 'x = malloc(n);'
|
|
|
|
* 'x = realloc (y, 0);' => 'x = 0; free(y);'
|
|
|
|
*/
|
|
|
|
void simplifyRealloc();
|
|
|
|
|
2013-11-02 23:56:10 +01:00
|
|
|
/** Add parentheses for sizeof: sizeof x => sizeof(x) */
|
|
|
|
void sizeofAddParentheses();
|
|
|
|
|
2009-09-06 13:22:01 +02:00
|
|
|
/**
|
|
|
|
* Replace sizeof() to appropriate size.
|
2012-08-22 17:28:06 +02:00
|
|
|
* @return true if modifications to token-list are done.
|
|
|
|
* false if no modifications are done.
|
2009-09-06 13:22:01 +02:00
|
|
|
*/
|
2012-08-22 17:28:06 +02:00
|
|
|
bool simplifySizeof();
|
2009-09-06 13:22:01 +02:00
|
|
|
|
2009-03-18 20:32:05 +01:00
|
|
|
/**
|
2010-01-30 09:33:16 +01:00
|
|
|
* Simplify variable declarations (split up)
|
2011-11-05 12:23:05 +01:00
|
|
|
* \param only_k_r_fpar Only simplify K&R function parameters
|
2009-03-18 20:32:05 +01:00
|
|
|
*/
|
2011-11-05 12:23:05 +01:00
|
|
|
void simplifyVarDecl(bool only_k_r_fpar);
|
2013-05-12 10:19:43 +02:00
|
|
|
void simplifyVarDecl(Token * tokBegin, Token * tokEnd, bool only_k_r_fpar);
|
2009-03-18 20:32:05 +01:00
|
|
|
|
2010-01-30 09:33:16 +01:00
|
|
|
/**
|
|
|
|
* Simplify variable initialization
|
2012-01-27 13:56:06 +01:00
|
|
|
* '; int *p(0);' => '; int *p = 0;'
|
2010-01-30 09:33:16 +01:00
|
|
|
*/
|
|
|
|
void simplifyInitVar();
|
2010-04-14 19:04:16 +02:00
|
|
|
Token * initVar(Token * tok);
|
2010-01-30 09:33:16 +01:00
|
|
|
|
2011-09-18 16:31:31 +02:00
|
|
|
/**
|
|
|
|
* Convert platform dependent types to standard types.
|
|
|
|
* 32 bits: size_t -> unsigned long
|
|
|
|
* 64 bits: size_t -> unsigned long long
|
|
|
|
*/
|
|
|
|
void simplifyPlatformTypes();
|
|
|
|
|
2010-03-28 15:56:13 +02:00
|
|
|
/**
|
2010-12-15 18:45:53 +01:00
|
|
|
* Collapse compound standard types into a single token.
|
2010-03-28 15:56:13 +02:00
|
|
|
* unsigned long long int => long _isUnsigned=true,_isLong=true
|
|
|
|
*/
|
|
|
|
void simplifyStdType();
|
|
|
|
|
2009-06-05 23:33:13 +02:00
|
|
|
/**
|
2012-11-02 14:52:56 +01:00
|
|
|
* Simplify easy constant '?:' operation
|
2009-06-05 23:33:13 +02:00
|
|
|
* Example: 0 ? (2/0) : 0 => 0
|
2009-06-10 23:12:26 +02:00
|
|
|
* @return true if something is modified
|
|
|
|
* false if nothing is done.
|
2009-06-05 23:33:13 +02:00
|
|
|
*/
|
2012-11-02 14:52:56 +01:00
|
|
|
bool simplifyConstTernaryOp();
|
2009-03-18 20:32:05 +01:00
|
|
|
|
2010-10-31 08:47:13 +01:00
|
|
|
/**
|
|
|
|
* Simplify compound assignments
|
|
|
|
* Example: ";a+=b;" => ";a=a+b;"
|
|
|
|
*/
|
|
|
|
void simplifyCompoundAssignment();
|
|
|
|
|
2014-07-02 08:59:04 +02:00
|
|
|
/**
|
|
|
|
* Simplify the location of "static" and "const" qualifiers in
|
|
|
|
* a variable declaration or definition.
|
|
|
|
* Example: "int static const a;" => "static const a;"
|
|
|
|
* Example: "long long const static b;" => "static const long long b;"
|
|
|
|
*/
|
|
|
|
void simplifyStaticConst();
|
|
|
|
|
2009-03-23 18:20:56 +01:00
|
|
|
/**
|
2013-07-28 11:58:14 +02:00
|
|
|
* Simplify assignments in "if" and "while" conditions
|
2009-03-23 18:20:56 +01:00
|
|
|
* Example: "if(a=b);" => "a=b;if(a);"
|
2013-07-28 11:58:14 +02:00
|
|
|
* Example: "while(a=b) { f(a); }" => "a = b; while(a){ f(a); a = b; }"
|
|
|
|
* Example: "do { f(a); } while(a=b);" => "do { f(a); a = b; } while(a);"
|
2009-03-23 18:20:56 +01:00
|
|
|
*/
|
2013-07-28 11:58:14 +02:00
|
|
|
void simplifyIfAndWhileAssign();
|
2009-03-23 18:20:56 +01:00
|
|
|
|
2010-05-01 10:26:15 +02:00
|
|
|
/**
|
2010-12-15 18:45:53 +01:00
|
|
|
* Simplify multiple assignments.
|
2010-05-01 10:26:15 +02:00
|
|
|
* Example: "a = b = c = 0;" => "a = 0; b = 0; c = 0;"
|
|
|
|
*/
|
|
|
|
void simplifyVariableMultipleAssign();
|
|
|
|
|
2009-03-24 18:23:21 +01:00
|
|
|
/**
|
2010-03-17 22:16:18 +01:00
|
|
|
* simplify if-not
|
2009-03-24 18:23:21 +01:00
|
|
|
* Example: "if(0==x);" => "if(!x);"
|
|
|
|
*/
|
2009-08-29 21:19:45 +02:00
|
|
|
void simplifyIfNot();
|
2009-03-24 18:23:21 +01:00
|
|
|
|
2009-07-25 13:11:29 +02:00
|
|
|
/**
|
2010-03-17 22:16:18 +01:00
|
|
|
* simplify if-not NULL
|
2011-04-16 12:07:56 +02:00
|
|
|
* Example: "if(0!=x);" => "if(x);"
|
|
|
|
* Special case: 'x = (0 != x);' is removed.
|
2009-07-25 13:11:29 +02:00
|
|
|
*/
|
2009-08-29 21:21:06 +02:00
|
|
|
void simplifyIfNotNull();
|
2009-07-25 13:11:29 +02:00
|
|
|
|
2010-03-17 22:16:18 +01:00
|
|
|
/** @brief simplify if (a) { if (a) */
|
2010-01-22 20:20:43 +01:00
|
|
|
void simplifyIfSameInnerCondition();
|
|
|
|
|
2009-05-31 10:42:27 +02:00
|
|
|
/**
|
2014-03-16 18:51:05 +01:00
|
|
|
* Simplify the 'C Alternative Tokens'
|
2009-08-29 15:29:19 +02:00
|
|
|
* Examples:
|
2014-03-16 18:51:05 +01:00
|
|
|
* "if(s and t)" => "if(s && t)"
|
|
|
|
* "while((r bitand s) and not t)" => while((r & s) && !t)"
|
|
|
|
* "a and_eq b;" => "a &= b;"
|
2009-05-31 10:42:27 +02:00
|
|
|
*/
|
2014-03-16 18:51:05 +01:00
|
|
|
bool simplifyCAlternativeTokens();
|
2009-05-31 10:42:27 +02:00
|
|
|
|
2009-06-10 23:12:26 +02:00
|
|
|
/**
|
2010-03-17 22:16:18 +01:00
|
|
|
* Simplify comma into a semicolon when possible:
|
|
|
|
* - "delete a, delete b" => "delete a; delete b;"
|
|
|
|
* - "a = 0, b = 0;" => "a = 0; b = 0;"
|
|
|
|
* - "return a(), b;" => "a(); return b;"
|
2009-06-10 23:12:26 +02:00
|
|
|
*/
|
2009-08-29 21:23:39 +02:00
|
|
|
void simplifyComma();
|
2009-06-10 23:12:26 +02:00
|
|
|
|
2013-02-02 16:01:34 +01:00
|
|
|
/** Add braces to an if-block, for-block, etc.
|
2013-02-05 21:13:57 +01:00
|
|
|
* @return true if no syntax errors
|
2009-02-07 21:06:00 +01:00
|
|
|
*/
|
2013-02-05 21:13:57 +01:00
|
|
|
bool simplifyAddBraces();
|
2009-01-26 17:38:08 +01:00
|
|
|
|
2013-02-02 16:01:34 +01:00
|
|
|
/** Add braces to an if-block, for-block, etc.
|
|
|
|
* for command starting at token including else-block
|
2013-02-05 21:13:57 +01:00
|
|
|
* @return last token of command
|
|
|
|
* or input token in case of an error where no braces are added
|
|
|
|
* or NULL when syntaxError is called
|
2013-02-02 16:01:34 +01:00
|
|
|
*/
|
|
|
|
Token * simplifyAddBracesToCommand(Token * tok);
|
|
|
|
|
|
|
|
/** Add pair of braces to an single if-block, else-block, for-block, etc.
|
|
|
|
* for command starting at token
|
2013-02-05 21:13:57 +01:00
|
|
|
* @return last token of command
|
|
|
|
* or input token in case of an error where no braces are added
|
|
|
|
* or NULL when syntaxError is called
|
2009-08-22 12:42:19 +02:00
|
|
|
*/
|
2013-02-02 16:01:34 +01:00
|
|
|
Token * simplifyAddBracesPair(Token *tok, bool commandWithCondition);
|
2009-08-22 12:42:19 +02:00
|
|
|
|
2009-09-30 13:35:00 +02:00
|
|
|
/**
|
|
|
|
* typedef A mytype;
|
|
|
|
* mytype c;
|
|
|
|
*
|
|
|
|
* Becomes:
|
|
|
|
* typedef A mytype;
|
|
|
|
* A c;
|
|
|
|
*/
|
|
|
|
void simplifyTypedef();
|
|
|
|
|
2013-11-19 18:07:12 +01:00
|
|
|
/**
|
|
|
|
* Simplify float casts (float)1 => 1.0
|
|
|
|
*/
|
|
|
|
void simplifyFloatCasts();
|
|
|
|
|
2009-08-29 21:06:14 +02:00
|
|
|
/**
|
|
|
|
* Simplify casts
|
2009-02-07 21:06:00 +01:00
|
|
|
*/
|
2009-08-29 21:06:14 +02:00
|
|
|
void simplifyCasts();
|
2009-02-07 21:06:00 +01:00
|
|
|
|
2012-01-26 17:07:10 +01:00
|
|
|
/**
|
|
|
|
* Change (multiple) arrays to (multiple) pointers.
|
|
|
|
*/
|
|
|
|
void simplifyUndefinedSizeArray();
|
|
|
|
|
2009-02-07 21:06:00 +01:00
|
|
|
/**
|
|
|
|
* A simplify function that replaces a variable with its value in cases
|
|
|
|
* when the value is known. e.g. "x=10; if(x)" => "x=10;if(10)"
|
|
|
|
*
|
|
|
|
* @return true if modifications to token-list are done.
|
|
|
|
* false if no modifications are done.
|
|
|
|
*/
|
|
|
|
bool simplifyKnownVariables();
|
|
|
|
|
2011-02-12 09:24:20 +01:00
|
|
|
/**
|
|
|
|
* Utility function for simplifyKnownVariables. Get data about an
|
|
|
|
* assigned variable.
|
|
|
|
*/
|
2012-05-17 10:33:24 +02:00
|
|
|
static bool simplifyKnownVariablesGetData(unsigned int varid, Token **_tok2, Token **_tok3, std::string &value, unsigned int &valueVarId, bool &valueIsPointer, bool floatvar);
|
2011-02-12 09:24:20 +01:00
|
|
|
|
2011-02-11 20:12:51 +01:00
|
|
|
/**
|
|
|
|
* utility function for simplifyKnownVariables. Perform simplification
|
|
|
|
* of a given variable
|
|
|
|
*/
|
2012-05-17 10:33:24 +02:00
|
|
|
bool simplifyKnownVariablesSimplify(Token **tok2, Token *tok3, unsigned int varid, const std::string &structname, std::string &value, unsigned int valueVarId, bool valueIsPointer, const Token * const valueToken, int indentlevel) const;
|
2011-02-11 20:12:51 +01:00
|
|
|
|
2015-01-31 10:50:39 +01:00
|
|
|
/** Simplify useless C++ empty namespaces, like: 'namespace %name% { }'*/
|
2012-08-28 22:32:12 +02:00
|
|
|
void simplifyEmptyNamespaces();
|
|
|
|
|
2011-10-15 01:34:07 +02:00
|
|
|
/** Simplify redundant code placed after control flow statements :
|
2011-12-03 01:58:26 +01:00
|
|
|
* 'return', 'throw', 'goto', 'break' and 'continue'
|
2011-10-15 01:34:07 +02:00
|
|
|
*/
|
2011-10-15 12:45:48 +02:00
|
|
|
void simplifyFlowControl();
|
2011-10-15 01:34:07 +02:00
|
|
|
|
2009-09-05 18:46:27 +02:00
|
|
|
/** Expand nested strcat() calls. */
|
|
|
|
void simplifyNestedStrcat();
|
|
|
|
|
2009-02-17 20:18:26 +01:00
|
|
|
/** Simplify "if else" */
|
2009-08-29 21:28:39 +02:00
|
|
|
void elseif();
|
2009-02-17 20:18:26 +01:00
|
|
|
|
2009-01-26 17:38:08 +01:00
|
|
|
/** Simplify conditions
|
|
|
|
* @return true if something is modified
|
|
|
|
* false if nothing is done.
|
|
|
|
*/
|
|
|
|
bool simplifyConditions();
|
|
|
|
|
2010-12-15 18:45:53 +01:00
|
|
|
/** Remove redundant code, e.g. if( false ) { int a; } should be
|
2009-01-26 17:38:08 +01:00
|
|
|
* removed, because it is never executed.
|
|
|
|
* @return true if something is modified
|
|
|
|
* false if nothing is done.
|
|
|
|
*/
|
2011-10-17 02:16:49 +02:00
|
|
|
bool removeRedundantConditions();
|
2009-01-26 17:38:08 +01:00
|
|
|
|
2011-09-03 20:45:48 +02:00
|
|
|
/**
|
|
|
|
* Remove redundant for:
|
|
|
|
* "for (x=0;x<1;x++) { }" => "{ x = 1; }"
|
|
|
|
*/
|
|
|
|
void removeRedundantFor();
|
|
|
|
|
|
|
|
|
2010-10-27 10:34:06 +02:00
|
|
|
/**
|
|
|
|
* Reduces "; ;" to ";", except in "( ; ; )"
|
|
|
|
*/
|
|
|
|
void removeRedundantSemicolons();
|
|
|
|
|
2009-01-26 17:38:08 +01:00
|
|
|
/** Simplify function calls - constant return value
|
|
|
|
* @return true if something is modified
|
|
|
|
* false if nothing is done.
|
|
|
|
*/
|
|
|
|
bool simplifyFunctionReturn();
|
|
|
|
|
2010-03-13 11:52:48 +01:00
|
|
|
/** Struct initialization */
|
|
|
|
void simplifyStructInit();
|
|
|
|
|
2010-03-18 18:14:52 +01:00
|
|
|
/** Struct simplification
|
|
|
|
* "struct S { } s;" => "struct S { }; S s;"
|
|
|
|
*/
|
|
|
|
|
|
|
|
void simplifyStructDecl();
|
|
|
|
|
2009-01-26 17:38:08 +01:00
|
|
|
/**
|
2013-01-16 15:37:07 +01:00
|
|
|
* Remove redundant parentheses:
|
2009-06-12 15:04:58 +02:00
|
|
|
* - "((x))" => "(x)"
|
|
|
|
* - "(function())" => "function()"
|
2009-06-12 16:14:01 +02:00
|
|
|
* - "(delete x)" => "delete x"
|
|
|
|
* - "(delete [] x)" => "delete [] x"
|
2009-01-26 17:38:08 +01:00
|
|
|
* @return true if modifications to token-list are done.
|
|
|
|
* false if no modifications are done.
|
|
|
|
*/
|
2013-01-16 15:37:07 +01:00
|
|
|
bool simplifyRedundantParentheses();
|
2009-01-26 17:38:08 +01:00
|
|
|
|
2013-01-13 20:52:38 +01:00
|
|
|
void simplifyCharAt();
|
|
|
|
|
2010-01-31 16:29:12 +01:00
|
|
|
/** Simplify references */
|
|
|
|
void simplifyReference();
|
|
|
|
|
2009-01-26 23:26:50 +01:00
|
|
|
/**
|
|
|
|
* Simplify functions like "void f(x) int x; {"
|
|
|
|
* into "void f(int x) {"
|
|
|
|
*/
|
2014-03-27 18:41:52 +01:00
|
|
|
void simplifyFunctionParameters();
|
2009-01-26 23:26:50 +01:00
|
|
|
|
2009-05-03 21:23:47 +02:00
|
|
|
/**
|
|
|
|
* Simplify templates
|
|
|
|
*/
|
|
|
|
void simplifyTemplates();
|
|
|
|
|
2011-12-24 21:51:55 +01:00
|
|
|
void simplifyDoublePlusAndDoubleMinus();
|
|
|
|
|
2011-12-24 22:23:08 +01:00
|
|
|
void simplifyRedundantConsecutiveBraces();
|
|
|
|
|
|
|
|
void simplifyArrayAccessSyntax();
|
|
|
|
|
|
|
|
void simplifyParameterVoid();
|
|
|
|
|
2013-03-02 18:19:53 +01:00
|
|
|
void fillTypeSizes();
|
|
|
|
|
|
|
|
void combineOperators();
|
|
|
|
|
|
|
|
void combineStrings();
|
|
|
|
|
2012-01-04 12:55:51 +01:00
|
|
|
void concatenateDoubleSharp();
|
|
|
|
|
2012-12-01 00:37:10 +01:00
|
|
|
void simplifyFileAndLineMacro();
|
2012-01-04 12:55:51 +01:00
|
|
|
|
|
|
|
void simplifyNull();
|
|
|
|
|
2012-12-01 00:43:23 +01:00
|
|
|
void concatenateNegativeNumberAndAnyPositive();
|
2012-01-04 12:55:51 +01:00
|
|
|
|
2012-04-16 16:25:04 +02:00
|
|
|
void simplifyExternC();
|
|
|
|
|
2013-01-16 15:37:07 +01:00
|
|
|
void simplifyRoundCurlyParentheses();
|
2012-01-04 12:55:51 +01:00
|
|
|
|
2011-12-24 22:23:08 +01:00
|
|
|
void simplifyDebugNew();
|
|
|
|
|
2012-01-04 12:55:51 +01:00
|
|
|
void simplifySQL();
|
|
|
|
|
2011-12-24 22:23:08 +01:00
|
|
|
bool hasEnumsWithTypedef();
|
|
|
|
|
|
|
|
void simplifyDefaultAndDeleteInsideClass();
|
|
|
|
|
2014-03-27 18:41:52 +01:00
|
|
|
void findComplicatedSyntaxErrorsInTemplates();
|
2011-12-24 22:23:08 +01:00
|
|
|
|
2009-09-12 22:54:47 +02:00
|
|
|
/**
|
|
|
|
* Simplify e.g. 'atol("0")' into '0'
|
|
|
|
*/
|
2014-10-31 17:52:29 +01:00
|
|
|
void simplifyMathFunctions();
|
2009-09-12 22:54:47 +02:00
|
|
|
|
2012-09-03 18:51:15 +02:00
|
|
|
/**
|
|
|
|
* Simplify e.g. 'sin(0)' into '0'
|
|
|
|
*/
|
|
|
|
void simplifyMathExpressions();
|
|
|
|
|
2009-09-27 16:04:10 +02:00
|
|
|
/**
|
|
|
|
* Modify strings in the token list by replacing hex and oct
|
|
|
|
* values. E.g. "\x61" -> "a" and "\000" -> "\0"
|
|
|
|
* @param source The string to be modified, e.g. "\x61"
|
|
|
|
* @return Modified string, e.g. "a"
|
|
|
|
*/
|
2012-05-17 10:33:24 +02:00
|
|
|
static std::string simplifyString(const std::string &source);
|
2009-09-27 16:04:10 +02:00
|
|
|
|
2009-11-12 22:49:39 +01:00
|
|
|
/**
|
|
|
|
* Change "int const x;" into "const int x;"
|
|
|
|
*/
|
|
|
|
void simplifyConst();
|
|
|
|
|
2009-12-28 08:37:34 +01:00
|
|
|
/**
|
|
|
|
* simplify "while (0)"
|
|
|
|
*/
|
|
|
|
void simplifyWhile0();
|
|
|
|
|
2010-05-30 12:49:39 +02:00
|
|
|
/**
|
|
|
|
* Simplify while(func() && errno==EINTR)
|
|
|
|
*/
|
|
|
|
void simplifyErrNoInWhile();
|
|
|
|
|
2010-03-06 15:28:52 +01:00
|
|
|
/**
|
|
|
|
* Simplify while(func(f))
|
|
|
|
*/
|
|
|
|
void simplifyFuncInWhile();
|
|
|
|
|
2010-01-04 17:22:06 +01:00
|
|
|
/**
|
|
|
|
* Replace enum with constant value
|
|
|
|
*/
|
|
|
|
void simplifyEnum();
|
|
|
|
|
2010-01-12 21:25:31 +01:00
|
|
|
/**
|
|
|
|
* Remove "std::" before some function names
|
|
|
|
*/
|
|
|
|
void simplifyStd();
|
|
|
|
|
2011-10-16 08:09:57 +02:00
|
|
|
/** Simplify pointer to standard type (C only) */
|
|
|
|
void simplifyPointerToStandardType();
|
|
|
|
|
2010-01-20 21:19:06 +01:00
|
|
|
/** Simplify function pointers */
|
|
|
|
void simplifyFunctionPointers();
|
|
|
|
|
2009-10-01 19:45:48 +02:00
|
|
|
/**
|
2012-08-01 21:04:47 +02:00
|
|
|
* Remove exception specifications.
|
2009-10-01 19:45:48 +02:00
|
|
|
*/
|
2012-08-01 21:04:47 +02:00
|
|
|
void removeExceptionSpecifications();
|
2009-10-01 19:45:48 +02:00
|
|
|
|
2011-02-10 04:02:17 +01:00
|
|
|
|
2009-11-28 22:08:43 +01:00
|
|
|
/**
|
|
|
|
* Send error message to error logger about internal bug.
|
2010-01-17 16:38:28 +01:00
|
|
|
* @param tok the token that this bug concerns.
|
2009-11-28 22:08:43 +01:00
|
|
|
*/
|
|
|
|
void cppcheckError(const Token *tok) const;
|
|
|
|
|
2009-03-15 00:39:45 +01:00
|
|
|
/**
|
|
|
|
* Setup links for tokens so that one can call Token::link().
|
|
|
|
*/
|
2014-03-27 18:41:52 +01:00
|
|
|
void createLinks();
|
2009-03-15 00:39:45 +01:00
|
|
|
|
2012-03-20 19:00:16 +01:00
|
|
|
/**
|
|
|
|
* Setup links between < and >.
|
|
|
|
*/
|
|
|
|
void createLinks2();
|
|
|
|
|
2010-07-22 19:57:48 +02:00
|
|
|
/** Syntax error */
|
2012-05-17 10:33:24 +02:00
|
|
|
void syntaxError(const Token *tok) const;
|
2010-07-22 19:57:48 +02:00
|
|
|
|
|
|
|
/** Syntax error. Example: invalid number of ')' */
|
2012-05-17 10:33:24 +02:00
|
|
|
void syntaxError(const Token *tok, char c) const;
|
2009-05-07 22:17:29 +02:00
|
|
|
|
2013-03-18 19:09:04 +01:00
|
|
|
/** Report that there is an unhandled "class x y {" code */
|
2013-06-01 14:35:21 +02:00
|
|
|
void unhandled_macro_class_x_y(const Token *tok) const;
|
2013-03-18 19:09:04 +01:00
|
|
|
|
2009-09-13 15:35:37 +02:00
|
|
|
/**
|
|
|
|
* assert that tokens are ok - used during debugging for example
|
2014-09-01 08:47:46 +02:00
|
|
|
* to catch problems in simplifyTokenList1/2.
|
2009-09-13 15:35:37 +02:00
|
|
|
*/
|
2014-03-27 18:41:52 +01:00
|
|
|
void validate() const;
|
2009-09-13 15:35:37 +02:00
|
|
|
|
2010-04-24 09:40:05 +02:00
|
|
|
/**
|
|
|
|
* Remove __declspec()
|
|
|
|
*/
|
|
|
|
void simplifyDeclspec();
|
|
|
|
|
2010-04-21 21:08:47 +02:00
|
|
|
/**
|
|
|
|
* Remove calling convention
|
|
|
|
*/
|
|
|
|
void simplifyCallingConvention();
|
|
|
|
|
2010-05-27 18:15:42 +02:00
|
|
|
/**
|
|
|
|
* Remove __attribute__ ((?))
|
|
|
|
*/
|
|
|
|
void simplifyAttribute();
|
|
|
|
|
2010-06-30 08:10:39 +02:00
|
|
|
/**
|
|
|
|
* Remove keywords "volatile", "inline", "register", and "restrict"
|
|
|
|
*/
|
|
|
|
void simplifyKeyword();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove __asm
|
|
|
|
*/
|
|
|
|
void simplifyAsm();
|
|
|
|
|
2010-08-15 11:54:28 +02:00
|
|
|
/**
|
|
|
|
* Simplify bitfields - the field width is removed as we don't use it.
|
|
|
|
*/
|
|
|
|
void simplifyBitfields();
|
|
|
|
|
2010-06-30 08:10:39 +02:00
|
|
|
/**
|
|
|
|
* Remove __builtin_expect(...), likely(...), and unlikely(...)
|
|
|
|
*/
|
|
|
|
void simplifyBuiltinExpect();
|
|
|
|
|
2011-02-02 07:40:08 +01:00
|
|
|
/**
|
|
|
|
* Remove unnecessary member qualification
|
|
|
|
*/
|
|
|
|
void removeUnnecessaryQualification();
|
|
|
|
|
2011-06-29 03:46:54 +02:00
|
|
|
/**
|
|
|
|
* unnecessary member qualification error
|
|
|
|
*/
|
2012-05-17 10:33:24 +02:00
|
|
|
void unnecessaryQualificationError(const Token *tok, const std::string &qualification) const;
|
2011-06-29 03:46:54 +02:00
|
|
|
|
2012-07-15 11:05:19 +02:00
|
|
|
/**
|
|
|
|
* Add std:: in front of std classes, when using namespace std; was given
|
|
|
|
*/
|
|
|
|
void simplifyNamespaceStd();
|
|
|
|
|
2010-08-18 22:42:04 +02:00
|
|
|
/**
|
|
|
|
* Remove Microsoft MFC 'DECLARE_MESSAGE_MAP()'
|
|
|
|
*/
|
|
|
|
void simplifyMicrosoftMFC();
|
|
|
|
|
2010-09-01 18:10:12 +02:00
|
|
|
/**
|
2011-09-23 01:59:56 +02:00
|
|
|
* Convert Microsoft memory functions
|
|
|
|
* CopyMemory(dst, src, len) -> memcpy(dst, src, len)
|
|
|
|
* FillMemory(dst, len, val) -> memset(dst, val, len)
|
|
|
|
* MoveMemory(dst, src, len) -> memmove(dst, src, len)
|
|
|
|
* ZeroMemory(dst, len) -> memset(dst, 0, len)
|
|
|
|
*/
|
|
|
|
void simplifyMicrosoftMemoryFunctions();
|
|
|
|
|
2011-09-24 20:51:03 +02:00
|
|
|
/**
|
|
|
|
* Convert Microsoft string functions
|
|
|
|
* _tcscpy -> strcpy
|
|
|
|
*/
|
|
|
|
void simplifyMicrosoftStringFunctions();
|
|
|
|
|
2011-09-23 01:59:56 +02:00
|
|
|
/**
|
|
|
|
* Remove Borland code
|
|
|
|
*/
|
2010-09-01 18:10:12 +02:00
|
|
|
void simplifyBorland();
|
|
|
|
|
2010-12-02 17:41:49 +01:00
|
|
|
/**
|
|
|
|
* Remove Qt signals and slots
|
|
|
|
*/
|
|
|
|
void simplifyQtSignalsSlots();
|
|
|
|
|
2011-01-27 18:44:20 +01:00
|
|
|
/**
|
|
|
|
* Collapse operator name tokens into single token
|
|
|
|
* operator = => operator=
|
|
|
|
*/
|
|
|
|
void simplifyOperatorName();
|
|
|
|
|
2010-02-16 07:33:23 +01:00
|
|
|
/**
|
|
|
|
* check for duplicate enum definition
|
|
|
|
*/
|
2012-05-17 11:54:17 +02:00
|
|
|
bool duplicateDefinition(Token **tokPtr, const Token *name) const;
|
2010-02-16 07:33:23 +01:00
|
|
|
|
2012-04-22 11:28:46 +02:00
|
|
|
/**
|
|
|
|
* report error message
|
|
|
|
*/
|
|
|
|
void reportError(const Token* tok, const Severity::SeverityType severity, const std::string& id, const std::string& msg, bool inconclusive = false) const;
|
|
|
|
void reportError(const std::list<const Token*>& callstack, Severity::SeverityType severity, const std::string& id, const std::string& msg, bool inconclusive = false) const;
|
|
|
|
|
2010-02-16 07:33:23 +01:00
|
|
|
/**
|
|
|
|
* duplicate enum definition error
|
|
|
|
*/
|
2012-05-17 11:54:17 +02:00
|
|
|
void duplicateEnumError(const Token *tok1, const Token *tok2, const std::string & type) const;
|
2010-02-16 07:33:23 +01:00
|
|
|
|
2015-03-15 10:04:44 +01:00
|
|
|
bool duplicateTypedef(Token **tokPtr, const Token *name, const Token *typeDef, const std::set<std::string>& structs) const;
|
2012-05-17 11:54:17 +02:00
|
|
|
void duplicateTypedefError(const Token *tok1, const Token *tok2, const std::string & type) const;
|
2010-12-04 15:49:25 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Report error - duplicate declarations
|
|
|
|
*/
|
2012-05-17 11:54:17 +02:00
|
|
|
void duplicateDeclarationError(const Token *tok1, const Token *tok2, const std::string &type) const;
|
2010-03-17 22:08:02 +01:00
|
|
|
|
2010-08-26 20:44:13 +02:00
|
|
|
void unsupportedTypedef(const Token *tok) const;
|
|
|
|
|
2010-09-30 21:22:49 +02:00
|
|
|
/** Was there templates in the code? */
|
2014-11-20 14:20:09 +01:00
|
|
|
bool codeWithTemplates() const {
|
2010-09-30 21:22:49 +02:00
|
|
|
return _codeWithTemplates;
|
|
|
|
}
|
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
void setSettings(const Settings *settings) {
|
2010-12-01 18:00:55 +01:00
|
|
|
_settings = settings;
|
2012-05-05 18:33:26 +02:00
|
|
|
list.setSettings(settings);
|
2010-12-01 18:00:55 +01:00
|
|
|
}
|
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
const SymbolDatabase *getSymbolDatabase() const {
|
2012-08-12 12:01:24 +02:00
|
|
|
return _symbolDatabase;
|
|
|
|
}
|
|
|
|
void createSymbolDatabase();
|
2012-08-11 20:47:11 +02:00
|
|
|
void deleteSymbolDatabase();
|
2010-12-07 07:08:49 +01:00
|
|
|
|
2014-03-27 18:41:52 +01:00
|
|
|
void printDebugOutput() const;
|
|
|
|
|
2014-07-14 15:51:45 +02:00
|
|
|
void dump(std::ostream &out) const;
|
|
|
|
|
2011-01-16 18:13:54 +01:00
|
|
|
Token *deleteInvalidTypedef(Token *typeDef);
|
2011-01-04 07:43:40 +01:00
|
|
|
|
2011-02-26 14:42:19 +01:00
|
|
|
/**
|
|
|
|
* Get variable count.
|
|
|
|
* @return number of variables
|
|
|
|
*/
|
2014-11-20 14:20:09 +01:00
|
|
|
unsigned int varIdCount() const {
|
2011-02-26 14:42:19 +01:00
|
|
|
return _varId;
|
|
|
|
}
|
|
|
|
|
2011-06-26 22:53:16 +02:00
|
|
|
/**
|
|
|
|
* Simplify e.g. 'return(strncat(temp,"a",1));' into
|
|
|
|
* strncat(temp,"a",1); return temp;
|
|
|
|
*/
|
2012-01-26 11:49:08 +01:00
|
|
|
void simplifyReturnStrncat();
|
2011-06-26 22:53:16 +02:00
|
|
|
|
2011-09-28 13:36:48 +02:00
|
|
|
/**
|
|
|
|
* Output list of unknown types.
|
|
|
|
*/
|
2014-03-27 18:41:52 +01:00
|
|
|
void printUnknownTypes() const;
|
2011-09-28 13:36:48 +02:00
|
|
|
|
2012-05-05 18:33:26 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Token list: stores all tokens.
|
|
|
|
*/
|
|
|
|
TokenList list;
|
|
|
|
// Implement tokens() as a wrapper for convinience when using the TokenList
|
2014-11-20 14:20:09 +01:00
|
|
|
const Token* tokens() const {
|
2012-05-05 18:33:26 +02:00
|
|
|
return list.front();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy tokens.
|
|
|
|
* @param dest destination token where copied tokens will be inserted after
|
|
|
|
* @param first first token to copy
|
|
|
|
* @param last last token to copy
|
2012-07-08 19:32:33 +02:00
|
|
|
* @param one_line true=>copy all tokens to the same line as dest. false=>copy all tokens to dest while keeping the 'line breaks'
|
2012-05-05 18:33:26 +02:00
|
|
|
* @return new location of last token copied
|
|
|
|
*/
|
|
|
|
static Token *copyTokens(Token *dest, const Token *first, const Token *last, bool one_line = true);
|
2011-01-01 11:26:48 +01:00
|
|
|
|
2013-10-01 20:30:59 +02:00
|
|
|
/**
|
2014-10-21 14:02:35 +02:00
|
|
|
* Helper function to check whether number is zero (0 or 0.0 or 0E+0) or not?
|
|
|
|
* @param s the string to check
|
2013-10-03 15:41:12 +02:00
|
|
|
* @return true in case is is zero and false otherwise.
|
2013-10-01 20:30:59 +02:00
|
|
|
*/
|
|
|
|
static bool isZeroNumber(const std::string &s);
|
|
|
|
|
|
|
|
/**
|
2014-10-21 14:02:35 +02:00
|
|
|
* Helper function to check whether number is one (1 or 0.1E+1 or 1E+0) or not?
|
|
|
|
* @param s the string to check
|
2013-10-03 15:41:12 +02:00
|
|
|
* @return true in case is is one and false otherwise.
|
2013-10-01 20:30:59 +02:00
|
|
|
*/
|
|
|
|
static bool isOneNumber(const std::string &s);
|
|
|
|
|
2013-10-03 15:41:12 +02:00
|
|
|
/**
|
2014-10-21 14:02:35 +02:00
|
|
|
* Helper function to check whether number is two (2 or 0.2E+1 or 2E+0) or not?
|
|
|
|
* @param s the string to check
|
2013-10-03 15:41:12 +02:00
|
|
|
* @return true in case is is two and false otherwise.
|
|
|
|
*/
|
|
|
|
static bool isTwoNumber(const std::string &s);
|
|
|
|
|
2014-04-26 18:31:56 +02:00
|
|
|
/**
|
|
|
|
* Helper function to check for start of function execution scope.
|
|
|
|
* Do not use this in checks. Use the symbol database.
|
|
|
|
* @param tok --> pointer to end parentheses of parameter list
|
|
|
|
* @return pointer to start brace of function scope or nullptr if not start.
|
|
|
|
*/
|
|
|
|
static const Token * startOfExecutableScope(const Token * tok);
|
|
|
|
|
2012-09-08 12:42:24 +02:00
|
|
|
private:
|
|
|
|
/** Disable copy constructor, no implementation */
|
|
|
|
Tokenizer(const Tokenizer &);
|
|
|
|
|
|
|
|
/** Disable assignment operator, no implementation */
|
|
|
|
Tokenizer &operator=(const Tokenizer &);
|
|
|
|
|
2014-04-26 18:31:56 +02:00
|
|
|
static Token * startOfFunction(Token * tok);
|
2014-11-20 14:20:09 +01:00
|
|
|
static Token * startOfExecutableScope(Token * tok) {
|
2014-04-26 18:31:56 +02:00
|
|
|
return const_cast<Token*>(startOfExecutableScope(const_cast<const Token *>(tok)));
|
|
|
|
}
|
|
|
|
|
2014-06-08 13:28:15 +02:00
|
|
|
/** Set pod types */
|
|
|
|
void setPodTypes();
|
|
|
|
|
2011-01-01 11:26:48 +01:00
|
|
|
/** settings */
|
2010-12-01 18:00:55 +01:00
|
|
|
const Settings * _settings;
|
2011-01-01 11:26:48 +01:00
|
|
|
|
|
|
|
/** errorlogger */
|
2014-05-20 21:55:08 +02:00
|
|
|
ErrorLogger* const _errorLogger;
|
2010-01-23 22:18:11 +01:00
|
|
|
|
2011-10-24 02:52:55 +02:00
|
|
|
/** Symbol database that all checks etc can use */
|
2012-08-12 12:01:24 +02:00
|
|
|
SymbolDatabase *_symbolDatabase;
|
2011-10-24 02:52:55 +02:00
|
|
|
|
2010-01-23 22:18:11 +01:00
|
|
|
/** E.g. "A" for code where "#ifdef A" is true. This is used to
|
|
|
|
print additional information in error situations. */
|
|
|
|
std::string _configuration;
|
2010-09-30 21:22:49 +02:00
|
|
|
|
2011-10-24 02:52:55 +02:00
|
|
|
/** sizeof information for known types */
|
|
|
|
std::map<std::string, unsigned int> _typeSize;
|
|
|
|
|
|
|
|
/** variable count */
|
|
|
|
unsigned int _varId;
|
|
|
|
|
2010-09-30 21:22:49 +02:00
|
|
|
/**
|
|
|
|
* was there any templates? templates that are "unused" are
|
|
|
|
* removed from the token list
|
|
|
|
*/
|
|
|
|
bool _codeWithTemplates;
|
2012-04-10 13:45:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* TimerResults
|
|
|
|
*/
|
|
|
|
TimerResults *m_timerResults;
|
2013-11-02 17:31:14 +01:00
|
|
|
#ifdef MAXTIME
|
|
|
|
/** Tokenizer maxtime */
|
|
|
|
std::time_t maxtime;
|
|
|
|
#endif
|
2009-01-26 17:38:08 +01:00
|
|
|
};
|
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @}
|
|
|
|
|
2009-01-26 17:38:08 +01:00
|
|
|
//---------------------------------------------------------------------------
|
2013-09-04 20:59:49 +02:00
|
|
|
#endif // tokenizeH
|