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/>.
|
|
|
|
*/
|
|
|
|
|
2018-10-22 08:29:03 +00:00
|
|
|
#include <libsolidity/formal/SymbolicVariables.h>
|
2018-01-17 20:02:23 +00:00
|
|
|
|
2018-10-17 13:56:44 +00:00
|
|
|
#include <libsolidity/formal/SymbolicTypes.h>
|
2018-10-22 08:29:03 +00:00
|
|
|
#include <libsolidity/ast/AST.h>
|
2019-04-15 13:33:39 +00:00
|
|
|
#include <libsolidity/ast/TypeProvider.h>
|
2018-10-22 08:29:03 +00:00
|
|
|
|
2018-01-17 20:02:23 +00:00
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
2019-05-09 10:16:52 +00:00
|
|
|
using namespace dev::solidity::smt;
|
2018-01-17 20:02:23 +00:00
|
|
|
|
2018-10-22 08:29:03 +00:00
|
|
|
SymbolicVariable::SymbolicVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
solidity::TypePointer _type,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-05-09 10:16:52 +00:00
|
|
|
SolverInterface& _interface
|
2018-10-22 08:29:03 +00:00
|
|
|
):
|
|
|
|
m_type(move(_type)),
|
2019-04-12 12:44:18 +00:00
|
|
|
m_uniqueName(move(_uniqueName)),
|
2018-10-22 08:29:03 +00:00
|
|
|
m_interface(_interface),
|
2019-05-09 08:56:58 +00:00
|
|
|
m_ssa(make_unique<SSAVariable>())
|
2018-10-22 08:29:03 +00:00
|
|
|
{
|
2019-04-12 12:44:18 +00:00
|
|
|
solAssert(m_type, "");
|
|
|
|
m_sort = smtSort(*m_type);
|
|
|
|
solAssert(m_sort, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
SymbolicVariable::SymbolicVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
SortPointer _sort,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-05-09 10:16:52 +00:00
|
|
|
SolverInterface& _interface
|
2019-04-12 12:44:18 +00:00
|
|
|
):
|
|
|
|
m_sort(move(_sort)),
|
|
|
|
m_uniqueName(move(_uniqueName)),
|
|
|
|
m_interface(_interface),
|
2019-05-09 08:56:58 +00:00
|
|
|
m_ssa(make_unique<SSAVariable>())
|
2019-04-12 12:44:18 +00:00
|
|
|
{
|
|
|
|
solAssert(m_sort, "");
|
2018-10-22 08:29:03 +00:00
|
|
|
}
|
|
|
|
|
2019-05-09 10:16:52 +00:00
|
|
|
Expression SymbolicVariable::currentValue() const
|
2018-12-05 08:56:52 +00:00
|
|
|
{
|
|
|
|
return valueAtIndex(m_ssa->index());
|
|
|
|
}
|
|
|
|
|
2018-10-25 14:00:09 +00:00
|
|
|
string SymbolicVariable::currentName() const
|
|
|
|
{
|
|
|
|
return uniqueSymbol(m_ssa->index());
|
|
|
|
}
|
|
|
|
|
2019-05-09 10:16:52 +00:00
|
|
|
Expression SymbolicVariable::valueAtIndex(int _index) const
|
2018-12-05 08:56:52 +00:00
|
|
|
{
|
2019-04-12 12:44:18 +00:00
|
|
|
return m_interface.newVariable(uniqueSymbol(_index), m_sort);
|
2018-12-05 08:56:52 +00:00
|
|
|
}
|
|
|
|
|
2018-10-22 08:29:03 +00:00
|
|
|
string SymbolicVariable::uniqueSymbol(unsigned _index) const
|
|
|
|
{
|
|
|
|
return m_uniqueName + "_" + to_string(_index);
|
|
|
|
}
|
|
|
|
|
2019-05-09 10:16:52 +00:00
|
|
|
Expression SymbolicVariable::increaseIndex()
|
2018-12-05 08:56:52 +00:00
|
|
|
{
|
|
|
|
++(*m_ssa);
|
|
|
|
return currentValue();
|
|
|
|
}
|
|
|
|
|
2018-10-22 08:29:03 +00:00
|
|
|
SymbolicBoolVariable::SymbolicBoolVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
solidity::TypePointer _type,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-05-09 10:16:52 +00:00
|
|
|
SolverInterface& _interface
|
2018-10-22 08:29:03 +00:00
|
|
|
):
|
2019-04-12 12:44:18 +00:00
|
|
|
SymbolicVariable(move(_type), move(_uniqueName), _interface)
|
2018-10-22 08:29:03 +00:00
|
|
|
{
|
2019-05-09 10:16:52 +00:00
|
|
|
solAssert(m_type->category() == solidity::Type::Category::Bool, "");
|
2018-10-22 08:29:03 +00:00
|
|
|
}
|
|
|
|
|
2018-02-28 17:00:13 +00:00
|
|
|
SymbolicIntVariable::SymbolicIntVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
solidity::TypePointer _type,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-05-09 10:16:52 +00:00
|
|
|
SolverInterface& _interface
|
2018-02-28 17:00:13 +00:00
|
|
|
):
|
2019-04-12 12:44:18 +00:00
|
|
|
SymbolicVariable(move(_type), move(_uniqueName), _interface)
|
2018-01-17 20:02:23 +00:00
|
|
|
{
|
2018-10-18 13:03:52 +00:00
|
|
|
solAssert(isNumber(m_type->category()), "");
|
2018-04-05 10:20:41 +00:00
|
|
|
}
|
|
|
|
|
2018-10-22 08:29:03 +00:00
|
|
|
SymbolicAddressVariable::SymbolicAddressVariable(
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-05-09 10:16:52 +00:00
|
|
|
SolverInterface& _interface
|
2018-10-22 08:29:03 +00:00
|
|
|
):
|
2019-04-15 16:10:43 +00:00
|
|
|
SymbolicIntVariable(TypeProvider::uint(160), move(_uniqueName), _interface)
|
2018-10-22 08:29:03 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SymbolicFixedBytesVariable::SymbolicFixedBytesVariable(
|
|
|
|
unsigned _numBytes,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-05-09 10:16:52 +00:00
|
|
|
SolverInterface& _interface
|
2018-10-22 08:29:03 +00:00
|
|
|
):
|
2019-04-15 16:10:43 +00:00
|
|
|
SymbolicIntVariable(TypeProvider::uint(_numBytes * 8), move(_uniqueName), _interface)
|
2018-10-22 08:29:03 +00:00
|
|
|
{
|
|
|
|
}
|
2018-12-10 10:34:29 +00:00
|
|
|
|
|
|
|
SymbolicFunctionVariable::SymbolicFunctionVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
solidity::TypePointer _type,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-05-09 10:16:52 +00:00
|
|
|
SolverInterface& _interface
|
2018-12-10 10:34:29 +00:00
|
|
|
):
|
2019-04-12 12:44:18 +00:00
|
|
|
SymbolicVariable(move(_type), move(_uniqueName), _interface),
|
|
|
|
m_declaration(m_interface.newVariable(currentName(), m_sort))
|
2018-12-10 10:34:29 +00:00
|
|
|
{
|
2019-05-09 10:16:52 +00:00
|
|
|
solAssert(m_type->category() == solidity::Type::Category::Function, "");
|
2018-12-10 10:34:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SymbolicFunctionVariable::resetDeclaration()
|
|
|
|
{
|
2019-04-12 12:44:18 +00:00
|
|
|
m_declaration = m_interface.newVariable(currentName(), m_sort);
|
2018-12-10 10:34:29 +00:00
|
|
|
}
|
|
|
|
|
2019-05-09 10:16:52 +00:00
|
|
|
Expression SymbolicFunctionVariable::increaseIndex()
|
2018-12-10 10:34:29 +00:00
|
|
|
{
|
|
|
|
++(*m_ssa);
|
|
|
|
resetDeclaration();
|
|
|
|
return currentValue();
|
|
|
|
}
|
|
|
|
|
2019-05-09 10:16:52 +00:00
|
|
|
Expression SymbolicFunctionVariable::operator()(vector<Expression> _arguments) const
|
2018-12-10 10:34:29 +00:00
|
|
|
{
|
|
|
|
return m_declaration(_arguments);
|
|
|
|
}
|
2018-11-09 16:06:30 +00:00
|
|
|
|
|
|
|
SymbolicMappingVariable::SymbolicMappingVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
solidity::TypePointer _type,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-05-09 10:16:52 +00:00
|
|
|
SolverInterface& _interface
|
2018-11-09 16:06:30 +00:00
|
|
|
):
|
2019-04-12 12:44:18 +00:00
|
|
|
SymbolicVariable(move(_type), move(_uniqueName), _interface)
|
2018-11-09 16:06:30 +00:00
|
|
|
{
|
|
|
|
solAssert(isMapping(m_type->category()), "");
|
|
|
|
}
|
2019-02-20 11:34:52 +00:00
|
|
|
|
|
|
|
SymbolicArrayVariable::SymbolicArrayVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
solidity::TypePointer _type,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-05-09 10:16:52 +00:00
|
|
|
SolverInterface& _interface
|
2019-02-20 11:34:52 +00:00
|
|
|
):
|
2019-04-12 12:44:18 +00:00
|
|
|
SymbolicVariable(move(_type), move(_uniqueName), _interface)
|
2019-02-20 11:34:52 +00:00
|
|
|
{
|
|
|
|
solAssert(isArray(m_type->category()), "");
|
|
|
|
}
|
2019-03-06 00:10:43 +00:00
|
|
|
|
|
|
|
SymbolicEnumVariable::SymbolicEnumVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
solidity::TypePointer _type,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-05-09 10:16:52 +00:00
|
|
|
SolverInterface& _interface
|
2019-03-06 00:10:43 +00:00
|
|
|
):
|
2019-04-12 12:44:18 +00:00
|
|
|
SymbolicVariable(move(_type), move(_uniqueName), _interface)
|
2019-03-06 00:10:43 +00:00
|
|
|
{
|
|
|
|
solAssert(isEnum(m_type->category()), "");
|
|
|
|
}
|
2019-04-26 12:57:29 +00:00
|
|
|
|
|
|
|
SymbolicTupleVariable::SymbolicTupleVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
solidity::TypePointer _type,
|
2019-04-26 12:57:29 +00:00
|
|
|
string _uniqueName,
|
2019-05-09 10:16:52 +00:00
|
|
|
SolverInterface& _interface
|
2019-04-26 12:57:29 +00:00
|
|
|
):
|
|
|
|
SymbolicVariable(move(_type), move(_uniqueName), _interface)
|
|
|
|
{
|
|
|
|
solAssert(isTuple(m_type->category()), "");
|
|
|
|
}
|
|
|
|
|
|
|
|
void SymbolicTupleVariable::setComponents(vector<shared_ptr<SymbolicVariable>> _components)
|
|
|
|
{
|
|
|
|
solAssert(m_components.empty(), "");
|
2019-05-09 10:16:52 +00:00
|
|
|
auto const& tupleType = dynamic_cast<solidity::TupleType const*>(m_type);
|
2019-04-26 12:57:29 +00:00
|
|
|
solAssert(_components.size() == tupleType->components().size(), "");
|
|
|
|
m_components = move(_components);
|
|
|
|
}
|