2014-01-04 20:57:02 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2018-01-14 15:37:52 +01:00
|
|
|
* Copyright (C) 2007-2017 Cppcheck team.
|
2014-01-04 20:57:02 +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 valueflowH
|
|
|
|
#define valueflowH
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2017-05-27 04:33:47 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
2017-05-15 20:05:11 +02:00
|
|
|
#include <list>
|
2015-07-29 19:54:57 +02:00
|
|
|
#include <string>
|
2017-05-27 04:33:47 +02:00
|
|
|
#include <utility>
|
2015-07-29 19:54:57 +02:00
|
|
|
|
2014-01-05 20:06:46 +01:00
|
|
|
class ErrorLogger;
|
|
|
|
class Settings;
|
2017-05-27 04:33:47 +02:00
|
|
|
class SymbolDatabase;
|
|
|
|
class Token;
|
|
|
|
class TokenList;
|
2014-01-04 20:57:02 +01:00
|
|
|
|
|
|
|
namespace ValueFlow {
|
2015-10-07 13:38:34 +02:00
|
|
|
class CPPCHECKLIB Value {
|
2014-01-07 19:20:56 +01:00
|
|
|
public:
|
2017-05-16 22:38:13 +02:00
|
|
|
typedef std::pair<const Token *, std::string> ErrorPathItem;
|
|
|
|
typedef std::list<ErrorPathItem> ErrorPath;
|
|
|
|
|
2017-09-20 22:41:36 +02:00
|
|
|
explicit Value(long long val = 0) : valueType(INT), intvalue(val), tokvalue(nullptr), floatValue(0.0), moveKind(NonMovedVariable), varvalue(val), condition(nullptr), varId(0U), conditional(false), defaultArg(false), valueKind(ValueKind::Possible) {}
|
2017-05-16 23:12:35 +02:00
|
|
|
Value(const Token *c, long long val);
|
2014-01-18 19:30:44 +01:00
|
|
|
|
2016-08-15 14:19:35 +02:00
|
|
|
bool operator==(const Value &rhs) const {
|
2016-11-13 22:33:39 +01:00
|
|
|
if (valueType != rhs.valueType)
|
|
|
|
return false;
|
|
|
|
switch (valueType) {
|
|
|
|
case INT:
|
|
|
|
if (intvalue != rhs.intvalue)
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
case TOK:
|
|
|
|
if (tokvalue != rhs.tokvalue)
|
|
|
|
return false;
|
|
|
|
break;
|
2016-11-13 22:59:56 +01:00
|
|
|
case FLOAT:
|
|
|
|
// TODO: Write some better comparison
|
|
|
|
if (floatValue > rhs.floatValue || floatValue < rhs.floatValue)
|
|
|
|
return false;
|
|
|
|
break;
|
2016-11-20 15:14:49 +01:00
|
|
|
case MOVED:
|
|
|
|
if (moveKind != rhs.moveKind)
|
|
|
|
return false;
|
|
|
|
break;
|
2017-04-23 18:05:14 +02:00
|
|
|
case UNINIT:
|
|
|
|
break;
|
2016-11-13 22:33:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
return varvalue == rhs.varvalue &&
|
2016-08-15 14:19:35 +02:00
|
|
|
condition == rhs.condition &&
|
|
|
|
varId == rhs.varId &&
|
|
|
|
conditional == rhs.conditional &&
|
|
|
|
defaultArg == rhs.defaultArg &&
|
|
|
|
valueKind == rhs.valueKind;
|
|
|
|
}
|
|
|
|
|
2017-05-19 16:32:58 +02:00
|
|
|
std::string infoString() const;
|
|
|
|
|
2017-04-23 18:05:14 +02:00
|
|
|
enum ValueType { INT, TOK, FLOAT, MOVED, UNINIT } valueType;
|
2016-11-13 22:33:39 +01:00
|
|
|
bool isIntValue() const {
|
|
|
|
return valueType == INT;
|
|
|
|
}
|
|
|
|
bool isTokValue() const {
|
|
|
|
return valueType == TOK;
|
|
|
|
}
|
2016-11-13 22:59:56 +01:00
|
|
|
bool isFloatValue() const {
|
|
|
|
return valueType == FLOAT;
|
|
|
|
}
|
2016-11-20 15:14:49 +01:00
|
|
|
bool isMovedValue() const {
|
|
|
|
return valueType == MOVED;
|
|
|
|
}
|
2017-04-23 18:05:14 +02:00
|
|
|
bool isUninitValue() const {
|
|
|
|
return valueType == UNINIT;
|
|
|
|
}
|
2016-11-13 22:33:39 +01:00
|
|
|
|
2014-01-18 19:30:44 +01:00
|
|
|
/** int value */
|
2014-04-02 20:09:53 +02:00
|
|
|
long long intvalue;
|
2014-01-18 19:30:44 +01:00
|
|
|
|
2014-08-03 20:11:22 +02:00
|
|
|
/** token value - the token that has the value. this is used for pointer aliases, strings, etc. */
|
|
|
|
const Token *tokvalue;
|
|
|
|
|
2016-11-13 22:59:56 +01:00
|
|
|
/** float value */
|
|
|
|
double floatValue;
|
|
|
|
|
2016-11-20 15:14:49 +01:00
|
|
|
/** kind of moved */
|
2016-12-12 14:29:27 +01:00
|
|
|
enum MoveKind {NonMovedVariable, MovedVariable, ForwardedVariable} moveKind;
|
2016-11-20 15:14:49 +01:00
|
|
|
|
2014-01-20 21:45:30 +01:00
|
|
|
/** For calculated values - variable value that calculated value depends on */
|
2014-04-02 20:09:53 +02:00
|
|
|
long long varvalue;
|
|
|
|
|
2017-05-16 22:38:13 +02:00
|
|
|
/** Condition that this value depends on */
|
2014-05-19 14:37:54 +02:00
|
|
|
const Token *condition;
|
|
|
|
|
2017-05-16 22:38:13 +02:00
|
|
|
ErrorPath errorPath;
|
2017-05-15 20:05:11 +02:00
|
|
|
|
2014-05-19 14:37:54 +02:00
|
|
|
/** For calculated values - varId that calculated value depends on */
|
|
|
|
unsigned int varId;
|
|
|
|
|
2014-04-02 20:09:53 +02:00
|
|
|
/** Conditional value */
|
|
|
|
bool conditional;
|
|
|
|
|
2015-02-01 15:23:15 +01:00
|
|
|
/** Is this value passed as default parameter to the function? */
|
2015-02-01 15:05:00 +01:00
|
|
|
bool defaultArg;
|
2015-07-16 17:33:16 +02:00
|
|
|
|
2016-11-20 15:14:49 +01:00
|
|
|
static const char * toString(MoveKind moveKind) {
|
|
|
|
switch (moveKind) {
|
2016-12-12 14:29:27 +01:00
|
|
|
case NonMovedVariable:
|
|
|
|
return "NonMovedVariable";
|
2016-11-20 15:14:49 +01:00
|
|
|
case MovedVariable:
|
|
|
|
return "MovedVariable";
|
|
|
|
case ForwardedVariable:
|
|
|
|
return "ForwardedVariable";
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2015-07-16 17:33:16 +02:00
|
|
|
/** How known is this value */
|
|
|
|
enum ValueKind {
|
|
|
|
/** This value is possible, other unlisted values may also be possible */
|
|
|
|
Possible,
|
|
|
|
/** Only listed values are possible */
|
2017-09-20 22:41:36 +02:00
|
|
|
Known,
|
|
|
|
/** Inconclusive */
|
|
|
|
Inconclusive
|
2015-07-16 17:33:16 +02:00
|
|
|
} valueKind;
|
2015-07-25 19:36:29 +02:00
|
|
|
|
|
|
|
void setKnown() {
|
|
|
|
valueKind = ValueKind::Known;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isKnown() const {
|
|
|
|
return valueKind == ValueKind::Known;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setPossible() {
|
|
|
|
valueKind = ValueKind::Possible;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isPossible() const {
|
|
|
|
return valueKind == ValueKind::Possible;
|
|
|
|
}
|
|
|
|
|
2017-09-20 22:41:36 +02:00
|
|
|
void setInconclusive(bool inconclusive = true) {
|
|
|
|
if (inconclusive)
|
|
|
|
valueKind = ValueKind::Inconclusive;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isInconclusive() const {
|
|
|
|
return valueKind == ValueKind::Inconclusive;
|
|
|
|
}
|
|
|
|
|
2015-07-25 19:36:29 +02:00
|
|
|
void changeKnownToPossible() {
|
|
|
|
if (isKnown())
|
|
|
|
valueKind = ValueKind::Possible;
|
|
|
|
}
|
2017-05-23 11:43:56 +02:00
|
|
|
|
|
|
|
bool errorSeverity() const {
|
|
|
|
return !condition && !defaultArg;
|
|
|
|
}
|
2014-01-04 20:57:02 +01:00
|
|
|
};
|
|
|
|
|
2016-05-07 20:18:07 +02:00
|
|
|
/// Constant folding of expression. This can be used before the full ValueFlow has been executed (ValueFlow::setValues).
|
2016-07-08 20:39:34 +02:00
|
|
|
const ValueFlow::Value * valueFlowConstantFoldAST(const Token *expr, const Settings *settings);
|
2016-05-07 20:18:07 +02:00
|
|
|
|
|
|
|
/// Perform valueflow analysis.
|
2015-02-01 12:10:20 +01:00
|
|
|
void setValues(TokenList *tokenlist, SymbolDatabase* symboldatabase, ErrorLogger *errorLogger, const Settings *settings);
|
2015-07-29 19:54:57 +02:00
|
|
|
|
|
|
|
std::string eitherTheConditionIsRedundant(const Token *condition);
|
2014-01-04 20:57:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // valueflowH
|