2019-10-30 17:57:46 +01:00
|
|
|
#ifndef GUARD_PROGRAMMEMORY_H
|
|
|
|
#define GUARD_PROGRAMMEMORY_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "valueflow.h"
|
|
|
|
#include "mathlib.h"
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
struct ProgramMemory {
|
|
|
|
std::map<int, ValueFlow::Value> values;
|
|
|
|
|
|
|
|
void setValue(nonneg int varid, const ValueFlow::Value &value);
|
|
|
|
|
|
|
|
bool getIntValue(nonneg int varid, MathLib::bigint* result) const;
|
|
|
|
void setIntValue(nonneg int varid, MathLib::bigint value);
|
|
|
|
|
|
|
|
bool getTokValue(nonneg int varid, const Token** result) const;
|
|
|
|
bool hasValue(nonneg int varid);
|
|
|
|
|
|
|
|
void swap(ProgramMemory &pm);
|
|
|
|
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
bool empty() const;
|
|
|
|
|
|
|
|
void replace(const ProgramMemory &pm);
|
|
|
|
|
|
|
|
void insert(const ProgramMemory &pm);
|
|
|
|
};
|
|
|
|
|
|
|
|
void execute(const Token *expr,
|
2019-10-30 17:58:19 +01:00
|
|
|
ProgramMemory * const programMemory,
|
|
|
|
MathLib::bigint *result,
|
|
|
|
bool *error);
|
2019-10-30 17:57:46 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Is condition always false when variable has given value?
|
|
|
|
* \param condition top ast token in condition
|
|
|
|
* \param programMemory program memory
|
|
|
|
*/
|
|
|
|
bool conditionIsFalse(const Token *condition, const ProgramMemory &programMemory);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Is condition always true when variable has given value?
|
|
|
|
* \param condition top ast token in condition
|
|
|
|
* \param programMemory program memory
|
|
|
|
*/
|
|
|
|
bool conditionIsTrue(const Token *condition, const ProgramMemory &programMemory);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get program memory by looking backwards from given token.
|
|
|
|
*/
|
|
|
|
ProgramMemory getProgramMemory(const Token *tok, nonneg int varid, const ValueFlow::Value &value);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|