2018-01-17 20:02:23 +00:00
|
|
|
/*
|
|
|
|
This file is part of solidity.
|
|
|
|
|
|
|
|
solidity 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.
|
|
|
|
|
|
|
|
solidity 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 solidity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-10-15 15:32:17 +00:00
|
|
|
#include <libsolidity/formal/SSAVariable.h>
|
|
|
|
|
2018-01-17 20:02:23 +00:00
|
|
|
#include <libsolidity/formal/SolverInterface.h>
|
|
|
|
|
2018-10-12 13:44:46 +00:00
|
|
|
#include <libsolidity/ast/Types.h>
|
2018-01-17 20:02:23 +00:00
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
|
|
|
|
2018-10-12 13:44:46 +00:00
|
|
|
class Type;
|
2018-01-17 20:02:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class represents the symbolic version of a program variable.
|
|
|
|
*/
|
|
|
|
class SymbolicVariable
|
|
|
|
{
|
|
|
|
public:
|
2018-02-28 17:00:13 +00:00
|
|
|
SymbolicVariable(
|
2018-10-12 13:44:46 +00:00
|
|
|
Type const& _type,
|
|
|
|
std::string const& _uniqueName,
|
2018-02-28 17:00:13 +00:00
|
|
|
smt::SolverInterface& _interface
|
|
|
|
);
|
2018-05-02 11:29:16 +00:00
|
|
|
virtual ~SymbolicVariable() = default;
|
2018-01-17 20:02:23 +00:00
|
|
|
|
2018-10-17 09:32:01 +00:00
|
|
|
smt::Expression currentValue() const
|
2018-01-17 20:02:23 +00:00
|
|
|
{
|
2018-10-17 09:32:01 +00:00
|
|
|
return valueAtIndex(m_ssa->index());
|
2018-01-17 20:02:23 +00:00
|
|
|
}
|
|
|
|
|
2018-10-17 09:32:01 +00:00
|
|
|
virtual smt::Expression valueAtIndex(int _index) const = 0;
|
2018-10-15 15:32:17 +00:00
|
|
|
|
2018-10-17 09:32:01 +00:00
|
|
|
smt::Expression increaseIndex()
|
2018-10-15 15:32:17 +00:00
|
|
|
{
|
|
|
|
++(*m_ssa);
|
2018-10-17 09:32:01 +00:00
|
|
|
return currentValue();
|
2018-10-15 15:32:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int index() const { return m_ssa->index(); }
|
|
|
|
int& index() { return m_ssa->index(); }
|
2018-01-17 20:02:23 +00:00
|
|
|
|
2018-02-17 08:35:37 +00:00
|
|
|
/// Sets the var to the default value of its type.
|
2018-10-17 13:56:44 +00:00
|
|
|
/// Inherited types must implement.
|
2018-10-15 15:32:17 +00:00
|
|
|
virtual void setZeroValue() = 0;
|
2018-10-17 13:56:44 +00:00
|
|
|
/// The unknown value is the full range of valid values.
|
|
|
|
/// It is sub-type dependent, but not mandatory.
|
|
|
|
virtual void setUnknownValue() {}
|
2018-01-17 20:02:23 +00:00
|
|
|
|
|
|
|
protected:
|
2018-10-17 09:32:01 +00:00
|
|
|
std::string uniqueSymbol(int _index) const;
|
2018-01-17 20:02:23 +00:00
|
|
|
|
2018-10-12 13:44:46 +00:00
|
|
|
Type const& m_type;
|
|
|
|
std::string m_uniqueName;
|
2018-01-17 20:02:23 +00:00
|
|
|
smt::SolverInterface& m_interface;
|
2018-10-15 15:32:17 +00:00
|
|
|
std::shared_ptr<SSAVariable> m_ssa = nullptr;
|
2018-01-17 20:02:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|