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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <libsolidity/formal/SymbolicIntVariable.h>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
|
|
|
using namespace dev::solidity;
|
|
|
|
|
2018-02-28 17:00:13 +00:00
|
|
|
SymbolicIntVariable::SymbolicIntVariable(
|
2018-10-12 13:44:46 +00:00
|
|
|
Type const& _type,
|
|
|
|
string const& _uniqueName,
|
2018-02-28 17:00:13 +00:00
|
|
|
smt::SolverInterface& _interface
|
|
|
|
):
|
2018-10-12 13:44:46 +00:00
|
|
|
SymbolicVariable(_type, _uniqueName, _interface)
|
2018-01-17 20:02:23 +00:00
|
|
|
{
|
2018-09-03 15:45:58 +00:00
|
|
|
solAssert(
|
2018-10-12 13:44:46 +00:00
|
|
|
_type.category() == Type::Category::Integer ||
|
|
|
|
_type.category() == Type::Category::Address,
|
2018-09-03 15:45:58 +00:00
|
|
|
""
|
|
|
|
);
|
2018-04-05 10:20:41 +00:00
|
|
|
}
|
|
|
|
|
2018-10-17 09:32:01 +00:00
|
|
|
smt::Expression SymbolicIntVariable::valueAtIndex(int _index) const
|
2018-04-05 10:20:41 +00:00
|
|
|
{
|
2018-10-17 09:32:01 +00:00
|
|
|
return m_interface.newInteger(uniqueSymbol(_index));
|
2018-01-17 20:02:23 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 15:32:17 +00:00
|
|
|
void SymbolicIntVariable::setZeroValue()
|
2018-01-17 20:02:23 +00:00
|
|
|
{
|
2018-10-17 09:32:01 +00:00
|
|
|
m_interface.addAssertion(currentValue() == 0);
|
2018-01-17 20:02:23 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 15:32:17 +00:00
|
|
|
void SymbolicIntVariable::setUnknownValue()
|
2018-01-17 20:02:23 +00:00
|
|
|
{
|
2018-10-12 13:44:46 +00:00
|
|
|
if (m_type.category() == Type::Category::Integer)
|
|
|
|
{
|
|
|
|
auto intType = dynamic_cast<IntegerType const*>(&m_type);
|
|
|
|
solAssert(intType, "");
|
2018-10-17 09:32:01 +00:00
|
|
|
m_interface.addAssertion(currentValue() >= minValue(*intType));
|
|
|
|
m_interface.addAssertion(currentValue() <= maxValue(*intType));
|
2018-10-12 13:44:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
solAssert(m_type.category() == Type::Category::Address, "");
|
|
|
|
IntegerType addrType{160};
|
2018-10-17 09:32:01 +00:00
|
|
|
m_interface.addAssertion(currentValue() >= minValue(addrType));
|
|
|
|
m_interface.addAssertion(currentValue() <= maxValue(addrType));
|
2018-10-12 13:44:46 +00:00
|
|
|
}
|
2018-01-17 20:02:23 +00:00
|
|
|
}
|
|
|
|
|
2018-02-17 08:34:38 +00:00
|
|
|
smt::Expression SymbolicIntVariable::minValue(IntegerType const& _t)
|
2018-01-17 20:02:23 +00:00
|
|
|
{
|
|
|
|
return smt::Expression(_t.minValue());
|
|
|
|
}
|
|
|
|
|
2018-02-17 08:34:38 +00:00
|
|
|
smt::Expression SymbolicIntVariable::maxValue(IntegerType const& _t)
|
2018-01-17 20:02:23 +00:00
|
|
|
{
|
|
|
|
return smt::Expression(_t.maxValue());
|
|
|
|
}
|