2014-10-13 16:22:15 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2014-10-16 12:08:54 +00:00
|
|
|
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.
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2014-10-16 12:08:54 +00:00
|
|
|
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.
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
2016-11-18 23:13:20 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2014-10-13 16:22:15 +00:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2014
|
|
|
|
* Solidity data types
|
|
|
|
*/
|
|
|
|
|
2015-10-20 22:21:52 +00:00
|
|
|
#include <libsolidity/ast/Types.h>
|
2017-01-19 12:18:56 +00:00
|
|
|
|
|
|
|
#include <libsolidity/ast/AST.h>
|
|
|
|
|
2014-10-23 19:46:39 +00:00
|
|
|
#include <libdevcore/CommonIO.h>
|
2014-10-20 10:41:56 +00:00
|
|
|
#include <libdevcore/CommonData.h>
|
2018-10-18 11:35:20 +00:00
|
|
|
#include <libdevcore/Keccak256.h>
|
2016-08-05 17:27:44 +00:00
|
|
|
#include <libdevcore/UTF8.h>
|
2018-03-15 18:53:29 +00:00
|
|
|
#include <libdevcore/Algorithms.h>
|
2017-01-19 12:18:56 +00:00
|
|
|
|
|
|
|
#include <boost/algorithm/string/join.hpp>
|
2017-01-20 10:47:20 +00:00
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
2017-03-15 11:12:41 +00:00
|
|
|
#include <boost/algorithm/string/predicate.hpp>
|
2018-05-22 15:20:40 +00:00
|
|
|
#include <boost/algorithm/string/classification.hpp>
|
|
|
|
#include <boost/algorithm/string/split.hpp>
|
2017-01-19 12:18:56 +00:00
|
|
|
#include <boost/range/adaptor/reversed.hpp>
|
2017-06-08 09:14:58 +00:00
|
|
|
#include <boost/range/algorithm/copy.hpp>
|
2017-01-19 12:18:56 +00:00
|
|
|
#include <boost/range/adaptor/sliced.hpp>
|
|
|
|
#include <boost/range/adaptor/transformed.hpp>
|
2017-10-25 08:12:07 +00:00
|
|
|
#include <boost/algorithm/string.hpp>
|
2017-01-19 12:18:56 +00:00
|
|
|
|
|
|
|
#include <limits>
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2014-11-04 12:24:35 +00:00
|
|
|
using namespace std;
|
2015-06-30 19:08:34 +00:00
|
|
|
using namespace dev;
|
2018-11-14 16:11:55 +00:00
|
|
|
using namespace langutil;
|
2015-06-30 19:08:34 +00:00
|
|
|
using namespace dev::solidity;
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2018-03-26 17:48:20 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
|
|
|
unsigned int mostSignificantBit(bigint const& _number)
|
|
|
|
{
|
|
|
|
#if BOOST_VERSION < 105500
|
|
|
|
solAssert(_number > 0, "");
|
|
|
|
bigint number = _number;
|
|
|
|
unsigned int result = 0;
|
|
|
|
while (number != 0)
|
|
|
|
{
|
|
|
|
number >>= 1;
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
return --result;
|
|
|
|
#else
|
|
|
|
return boost::multiprecision::msb(_number);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Check whether (_base ** _exp) fits into 4096 bits.
|
|
|
|
bool fitsPrecisionExp(bigint const& _base, bigint const& _exp)
|
|
|
|
{
|
|
|
|
if (_base == 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
solAssert(_base > 0, "");
|
|
|
|
|
|
|
|
size_t const bitsMax = 4096;
|
|
|
|
|
|
|
|
unsigned mostSignificantBaseBit = mostSignificantBit(_base);
|
|
|
|
if (mostSignificantBaseBit == 0) // _base == 1
|
|
|
|
return true;
|
|
|
|
if (mostSignificantBaseBit > bitsMax) // _base >= 2 ^ 4096
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bigint bitsNeeded = _exp * (mostSignificantBaseBit + 1);
|
|
|
|
|
|
|
|
return bitsNeeded <= bitsMax;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks whether _mantissa * (X ** _exp) fits into 4096 bits,
|
|
|
|
/// where X is given indirectly via _log2OfBase = log2(X).
|
|
|
|
bool fitsPrecisionBaseX(
|
|
|
|
bigint const& _mantissa,
|
|
|
|
double _log2OfBase,
|
|
|
|
uint32_t _exp
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if (_mantissa == 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
solAssert(_mantissa > 0, "");
|
|
|
|
|
|
|
|
size_t const bitsMax = 4096;
|
|
|
|
|
|
|
|
unsigned mostSignificantMantissaBit = mostSignificantBit(_mantissa);
|
|
|
|
if (mostSignificantMantissaBit > bitsMax) // _mantissa >= 2 ^ 4096
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bigint bitsNeeded = mostSignificantMantissaBit + bigint(floor(double(_exp) * _log2OfBase)) + 1;
|
|
|
|
return bitsNeeded <= bitsMax;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks whether _mantissa * (10 ** _expBase10) fits into 4096 bits.
|
|
|
|
bool fitsPrecisionBase10(bigint const& _mantissa, uint32_t _expBase10)
|
|
|
|
{
|
|
|
|
double const log2Of10AwayFromZero = 3.3219280948873624;
|
|
|
|
return fitsPrecisionBaseX(_mantissa, log2Of10AwayFromZero, _expBase10);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks whether _mantissa * (2 ** _expBase10) fits into 4096 bits.
|
|
|
|
bool fitsPrecisionBase2(bigint const& _mantissa, uint32_t _expBase2)
|
|
|
|
{
|
|
|
|
return fitsPrecisionBaseX(_mantissa, 1.0, _expBase2);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-03-13 18:48:24 +00:00
|
|
|
void StorageOffsets::computeOffsets(TypePointers const& _types)
|
2015-03-13 09:52:34 +00:00
|
|
|
{
|
2015-03-13 18:48:24 +00:00
|
|
|
bigint slotOffset = 0;
|
|
|
|
unsigned byteOffset = 0;
|
|
|
|
map<size_t, pair<u256, unsigned>> offsets;
|
|
|
|
for (size_t i = 0; i < _types.size(); ++i)
|
2015-03-13 09:52:34 +00:00
|
|
|
{
|
2015-03-13 18:48:24 +00:00
|
|
|
TypePointer const& type = _types[i];
|
|
|
|
if (!type->canBeStored())
|
|
|
|
continue;
|
2015-08-31 16:44:29 +00:00
|
|
|
if (byteOffset + type->storageBytes() > 32)
|
2015-03-13 09:52:34 +00:00
|
|
|
{
|
2015-03-13 18:48:24 +00:00
|
|
|
// would overflow, go to next slot
|
2015-03-13 09:52:34 +00:00
|
|
|
++slotOffset;
|
2015-03-13 18:48:24 +00:00
|
|
|
byteOffset = 0;
|
|
|
|
}
|
2015-03-13 09:52:34 +00:00
|
|
|
if (slotOffset >= bigint(1) << 256)
|
2015-10-02 12:41:40 +00:00
|
|
|
BOOST_THROW_EXCEPTION(Error(Error::Type::TypeError) << errinfo_comment("Object too large for storage."));
|
2015-03-13 18:48:24 +00:00
|
|
|
offsets[i] = make_pair(u256(slotOffset), byteOffset);
|
2015-08-31 16:44:29 +00:00
|
|
|
solAssert(type->storageSize() >= 1, "Invalid storage size.");
|
|
|
|
if (type->storageSize() == 1 && byteOffset + type->storageBytes() <= 32)
|
|
|
|
byteOffset += type->storageBytes();
|
2015-03-13 18:48:24 +00:00
|
|
|
else
|
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
slotOffset += type->storageSize();
|
2015-03-13 18:48:24 +00:00
|
|
|
byteOffset = 0;
|
|
|
|
}
|
2015-03-13 09:52:34 +00:00
|
|
|
}
|
2015-03-13 18:48:24 +00:00
|
|
|
if (byteOffset > 0)
|
|
|
|
++slotOffset;
|
|
|
|
if (slotOffset >= bigint(1) << 256)
|
2015-10-02 12:41:40 +00:00
|
|
|
BOOST_THROW_EXCEPTION(Error(Error::Type::TypeError) << errinfo_comment("Object too large for storage."));
|
2015-03-13 18:48:24 +00:00
|
|
|
m_storageSize = u256(slotOffset);
|
|
|
|
swap(m_offsets, offsets);
|
|
|
|
}
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
pair<u256, unsigned> const* StorageOffsets::offset(size_t _index) const
|
2015-03-13 18:48:24 +00:00
|
|
|
{
|
|
|
|
if (m_offsets.count(_index))
|
|
|
|
return &m_offsets.at(_index);
|
2015-03-13 09:52:34 +00:00
|
|
|
else
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-11-25 13:23:35 +00:00
|
|
|
void MemberList::combine(MemberList const & _other)
|
|
|
|
{
|
|
|
|
m_memberTypes += _other.m_memberTypes;
|
|
|
|
}
|
|
|
|
|
2016-02-18 12:29:02 +00:00
|
|
|
pair<u256, unsigned> const* MemberList::memberStorageOffset(string const& _name) const
|
2015-03-13 18:48:24 +00:00
|
|
|
{
|
|
|
|
if (!m_storageOffsets)
|
|
|
|
{
|
|
|
|
TypePointers memberTypes;
|
|
|
|
memberTypes.reserve(m_memberTypes.size());
|
2015-04-15 15:40:50 +00:00
|
|
|
for (auto const& member: m_memberTypes)
|
|
|
|
memberTypes.push_back(member.type);
|
2015-03-13 18:48:24 +00:00
|
|
|
m_storageOffsets.reset(new StorageOffsets());
|
|
|
|
m_storageOffsets->computeOffsets(memberTypes);
|
|
|
|
}
|
|
|
|
for (size_t index = 0; index < m_memberTypes.size(); ++index)
|
2015-04-15 15:40:50 +00:00
|
|
|
if (m_memberTypes[index].name == _name)
|
2015-08-31 16:44:29 +00:00
|
|
|
return m_storageOffsets->offset(index);
|
2015-03-13 18:48:24 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
u256 const& MemberList::storageSize() const
|
2015-03-13 09:52:34 +00:00
|
|
|
{
|
|
|
|
// trigger lazy computation
|
2015-08-31 16:44:29 +00:00
|
|
|
memberStorageOffset("");
|
|
|
|
return m_storageOffsets->storageSize();
|
2015-03-13 09:52:34 +00:00
|
|
|
}
|
|
|
|
|
2017-01-19 12:18:56 +00:00
|
|
|
/// Helper functions for type identifier
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
|
|
|
string parenthesizeIdentifier(string const& _internal)
|
|
|
|
{
|
2018-02-24 00:13:34 +00:00
|
|
|
return "(" + _internal + ")";
|
2017-01-19 12:18:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class Range>
|
|
|
|
string identifierList(Range const&& _list)
|
|
|
|
{
|
2018-02-24 00:13:34 +00:00
|
|
|
return parenthesizeIdentifier(boost::algorithm::join(_list, ","));
|
2017-01-19 12:18:56 +00:00
|
|
|
}
|
|
|
|
|
2018-02-24 00:13:34 +00:00
|
|
|
string richIdentifier(TypePointer const& _type)
|
2017-01-19 12:18:56 +00:00
|
|
|
{
|
2018-02-24 00:13:34 +00:00
|
|
|
return _type ? _type->richIdentifier() : "";
|
2017-01-19 12:18:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
string identifierList(vector<TypePointer> const& _list)
|
|
|
|
{
|
2018-02-24 00:13:34 +00:00
|
|
|
return identifierList(_list | boost::adaptors::transformed(richIdentifier));
|
2017-01-19 12:18:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
string identifierList(TypePointer const& _type)
|
|
|
|
{
|
2018-02-24 00:13:34 +00:00
|
|
|
return parenthesizeIdentifier(richIdentifier(_type));
|
2017-01-19 12:18:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
string identifierList(TypePointer const& _type1, TypePointer const& _type2)
|
|
|
|
{
|
|
|
|
TypePointers list;
|
|
|
|
list.push_back(_type1);
|
|
|
|
list.push_back(_type2);
|
|
|
|
return identifierList(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
string parenthesizeUserIdentifier(string const& _internal)
|
|
|
|
{
|
2018-02-24 00:13:34 +00:00
|
|
|
return parenthesizeIdentifier(_internal);
|
2017-01-19 12:18:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-02-23 17:27:27 +00:00
|
|
|
string Type::escapeIdentifier(string const& _identifier)
|
|
|
|
{
|
|
|
|
string ret = _identifier;
|
2018-02-24 00:13:34 +00:00
|
|
|
// FIXME: should be _$$$_
|
|
|
|
boost::algorithm::replace_all(ret, "$", "$$$");
|
2018-02-23 17:27:27 +00:00
|
|
|
boost::algorithm::replace_all(ret, ",", "_$_");
|
|
|
|
boost::algorithm::replace_all(ret, "(", "$_");
|
|
|
|
boost::algorithm::replace_all(ret, ")", "_$");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-08-07 21:29:21 +00:00
|
|
|
string Type::identifier() const
|
|
|
|
{
|
|
|
|
string ret = escapeIdentifier(richIdentifier());
|
|
|
|
solAssert(ret.find_first_of("0123456789") != 0, "Identifier cannot start with a number.");
|
|
|
|
solAssert(
|
|
|
|
ret.find_first_not_of("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMONPQRSTUVWXYZ_$") == string::npos,
|
|
|
|
"Identifier contains invalid characters."
|
|
|
|
);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-02-08 21:43:22 +00:00
|
|
|
TypePointer Type::fromElementaryTypeName(ElementaryTypeNameToken const& _type)
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
2018-10-22 14:48:21 +00:00
|
|
|
solAssert(TokenTraits::isElementaryTypeName(_type.token()),
|
2016-02-18 16:34:07 +00:00
|
|
|
"Expected an elementary type name but got " + _type.toString()
|
|
|
|
);
|
2014-11-05 13:20:56 +00:00
|
|
|
|
2018-10-22 14:48:21 +00:00
|
|
|
Token token = _type.token();
|
2016-05-10 09:15:41 +00:00
|
|
|
unsigned m = _type.firstNumber();
|
|
|
|
unsigned n = _type.secondNumber();
|
2016-02-08 21:43:22 +00:00
|
|
|
|
|
|
|
switch (token)
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2016-02-08 21:43:22 +00:00
|
|
|
case Token::IntM:
|
2016-02-15 16:34:45 +00:00
|
|
|
return make_shared<IntegerType>(m, IntegerType::Modifier::Signed);
|
2016-02-08 21:43:22 +00:00
|
|
|
case Token::UIntM:
|
2016-02-15 16:34:45 +00:00
|
|
|
return make_shared<IntegerType>(m, IntegerType::Modifier::Unsigned);
|
2016-02-08 21:43:22 +00:00
|
|
|
case Token::BytesM:
|
2016-02-15 16:34:45 +00:00
|
|
|
return make_shared<FixedBytesType>(m);
|
2016-02-18 22:39:11 +00:00
|
|
|
case Token::FixedMxN:
|
|
|
|
return make_shared<FixedPointType>(m, n, FixedPointType::Modifier::Signed);
|
|
|
|
case Token::UFixedMxN:
|
|
|
|
return make_shared<FixedPointType>(m, n, FixedPointType::Modifier::Unsigned);
|
2016-02-08 21:43:22 +00:00
|
|
|
case Token::Int:
|
|
|
|
return make_shared<IntegerType>(256, IntegerType::Modifier::Signed);
|
|
|
|
case Token::UInt:
|
|
|
|
return make_shared<IntegerType>(256, IntegerType::Modifier::Unsigned);
|
2016-02-18 22:39:11 +00:00
|
|
|
case Token::Fixed:
|
2018-02-16 15:11:07 +00:00
|
|
|
return make_shared<FixedPointType>(128, 18, FixedPointType::Modifier::Signed);
|
2016-02-18 22:39:11 +00:00
|
|
|
case Token::UFixed:
|
2018-02-16 15:11:07 +00:00
|
|
|
return make_shared<FixedPointType>(128, 18, FixedPointType::Modifier::Unsigned);
|
2016-02-08 21:43:22 +00:00
|
|
|
case Token::Byte:
|
2015-03-11 16:41:12 +00:00
|
|
|
return make_shared<FixedBytesType>(1);
|
2016-02-08 21:43:22 +00:00
|
|
|
case Token::Address:
|
2018-09-05 15:59:55 +00:00
|
|
|
return make_shared<AddressType>(StateMutability::NonPayable);
|
2016-02-08 21:43:22 +00:00
|
|
|
case Token::Bool:
|
2015-01-07 20:35:35 +00:00
|
|
|
return make_shared<BoolType>();
|
2016-02-08 21:43:22 +00:00
|
|
|
case Token::Bytes:
|
2015-06-17 10:01:39 +00:00
|
|
|
return make_shared<ArrayType>(DataLocation::Storage);
|
2016-02-08 21:43:22 +00:00
|
|
|
case Token::String:
|
2015-06-17 10:01:39 +00:00
|
|
|
return make_shared<ArrayType>(DataLocation::Storage, true);
|
2016-02-08 21:43:22 +00:00
|
|
|
//no types found
|
|
|
|
default:
|
2017-07-19 01:19:00 +00:00
|
|
|
solAssert(
|
|
|
|
false,
|
2016-02-08 21:43:22 +00:00
|
|
|
"Unable to convert elementary typename " + _type.toString() + " to type."
|
2017-07-19 01:19:00 +00:00
|
|
|
);
|
2016-02-08 21:43:22 +00:00
|
|
|
}
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
|
2015-02-10 16:53:43 +00:00
|
|
|
TypePointer Type::fromElementaryTypeName(string const& _name)
|
|
|
|
{
|
2018-05-22 15:20:40 +00:00
|
|
|
vector<string> nameParts;
|
|
|
|
boost::split(nameParts, _name, boost::is_any_of(" "));
|
|
|
|
solAssert(nameParts.size() == 1 || nameParts.size() == 2, "Cannot parse elementary type: " + _name);
|
2018-10-22 14:48:21 +00:00
|
|
|
Token token;
|
2018-05-22 15:20:40 +00:00
|
|
|
unsigned short firstNum, secondNum;
|
2018-10-22 14:48:21 +00:00
|
|
|
tie(token, firstNum, secondNum) = TokenTraits::fromIdentifierOrKeyword(nameParts[0]);
|
2017-12-30 12:45:39 +00:00
|
|
|
auto t = fromElementaryTypeName(ElementaryTypeNameToken(token, firstNum, secondNum));
|
|
|
|
if (auto* ref = dynamic_cast<ReferenceType const*>(t.get()))
|
2018-05-22 15:20:40 +00:00
|
|
|
{
|
|
|
|
DataLocation location = DataLocation::Storage;
|
|
|
|
if (nameParts.size() == 2)
|
|
|
|
{
|
|
|
|
if (nameParts[1] == "storage")
|
|
|
|
location = DataLocation::Storage;
|
|
|
|
else if (nameParts[1] == "calldata")
|
|
|
|
location = DataLocation::CallData;
|
|
|
|
else if (nameParts[1] == "memory")
|
|
|
|
location = DataLocation::Memory;
|
|
|
|
else
|
|
|
|
solAssert(false, "Unknown data location: " + nameParts[1]);
|
|
|
|
}
|
2017-12-30 12:45:39 +00:00
|
|
|
return ref->copyForLocation(location, true);
|
2018-05-22 15:20:40 +00:00
|
|
|
}
|
2018-09-05 15:59:55 +00:00
|
|
|
else if (t->category() == Type::Category::Address)
|
|
|
|
{
|
|
|
|
if (nameParts.size() == 2)
|
|
|
|
{
|
|
|
|
if (nameParts[1] == "payable")
|
|
|
|
return make_shared<AddressType>(StateMutability::Payable);
|
|
|
|
else
|
|
|
|
solAssert(false, "Invalid state mutability for address type: " + nameParts[1]);
|
|
|
|
}
|
|
|
|
return make_shared<AddressType>(StateMutability::NonPayable);
|
|
|
|
}
|
2017-12-30 12:45:39 +00:00
|
|
|
else
|
2018-05-22 15:20:40 +00:00
|
|
|
{
|
|
|
|
solAssert(nameParts.size() == 1, "Storage location suffix only allowed for reference types");
|
2017-12-30 12:45:39 +00:00
|
|
|
return t;
|
2018-05-22 15:20:40 +00:00
|
|
|
}
|
2015-02-10 16:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TypePointer Type::forLiteral(Literal const& _literal)
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
switch (_literal.token())
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::TrueLiteral:
|
|
|
|
case Token::FalseLiteral:
|
2015-01-07 20:35:35 +00:00
|
|
|
return make_shared<BoolType>();
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::Number:
|
2018-08-06 12:59:37 +00:00
|
|
|
return RationalNumberType::forLiteral(_literal);
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::StringLiteral:
|
2015-07-07 23:13:56 +00:00
|
|
|
return make_shared<StringLiteralType>(_literal);
|
2014-10-13 16:22:15 +00:00
|
|
|
default:
|
2016-05-10 10:42:38 +00:00
|
|
|
return TypePointer();
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-18 17:53:43 +00:00
|
|
|
TypePointer Type::commonType(TypePointer const& _a, TypePointer const& _b)
|
|
|
|
{
|
2016-10-21 10:30:58 +00:00
|
|
|
if (!_a || !_b)
|
|
|
|
return TypePointer();
|
2017-02-16 10:45:06 +00:00
|
|
|
else if (_a->mobileType() && _b->isImplicitlyConvertibleTo(*_a->mobileType()))
|
2016-10-26 13:57:42 +00:00
|
|
|
return _a->mobileType();
|
2017-02-16 10:45:06 +00:00
|
|
|
else if (_b->mobileType() && _a->isImplicitlyConvertibleTo(*_b->mobileType()))
|
2016-10-26 13:57:42 +00:00
|
|
|
return _b->mobileType();
|
2014-12-18 17:53:43 +00:00
|
|
|
else
|
|
|
|
return TypePointer();
|
|
|
|
}
|
|
|
|
|
2015-11-25 13:23:35 +00:00
|
|
|
MemberList const& Type::members(ContractDefinition const* _currentScope) const
|
|
|
|
{
|
|
|
|
if (!m_members[_currentScope])
|
|
|
|
{
|
|
|
|
MemberList::MemberMap members = nativeMembers(_currentScope);
|
|
|
|
if (_currentScope)
|
2016-04-26 23:02:10 +00:00
|
|
|
members += boundFunctions(*this, *_currentScope);
|
2015-11-25 13:23:35 +00:00
|
|
|
m_members[_currentScope] = unique_ptr<MemberList>(new MemberList(move(members)));
|
|
|
|
}
|
|
|
|
return *m_members[_currentScope];
|
|
|
|
}
|
|
|
|
|
2018-07-18 13:46:23 +00:00
|
|
|
TypePointer Type::fullEncodingType(bool _inLibraryCall, bool _encoderV2, bool _packed) const
|
|
|
|
{
|
|
|
|
TypePointer encodingType = mobileType();
|
|
|
|
if (encodingType)
|
|
|
|
encodingType = encodingType->interfaceType(_inLibraryCall);
|
|
|
|
if (encodingType)
|
|
|
|
encodingType = encodingType->encodingType();
|
2018-08-08 23:24:52 +00:00
|
|
|
// Structs are fine in the following circumstances:
|
|
|
|
// - ABIv2 without packed encoding or,
|
|
|
|
// - storage struct for a library
|
|
|
|
if (_inLibraryCall && encodingType->dataStoredIn(DataLocation::Storage))
|
|
|
|
return encodingType;
|
|
|
|
TypePointer baseType = encodingType;
|
|
|
|
while (auto const* arrayType = dynamic_cast<ArrayType const*>(baseType.get()))
|
|
|
|
baseType = arrayType->baseType();
|
|
|
|
if (dynamic_cast<StructType const*>(baseType.get()))
|
|
|
|
if (!_encoderV2 || _packed)
|
2018-07-18 13:46:23 +00:00
|
|
|
return TypePointer();
|
|
|
|
return encodingType;
|
|
|
|
}
|
|
|
|
|
2015-11-25 13:23:35 +00:00
|
|
|
MemberList::MemberMap Type::boundFunctions(Type const& _type, ContractDefinition const& _scope)
|
|
|
|
{
|
|
|
|
// Normalise data location of type.
|
|
|
|
TypePointer type = ReferenceType::copyForLocationIfReference(DataLocation::Storage, _type.shared_from_this());
|
|
|
|
set<Declaration const*> seenFunctions;
|
|
|
|
MemberList::MemberMap members;
|
|
|
|
for (ContractDefinition const* contract: _scope.annotation().linearizedBaseContracts)
|
|
|
|
for (UsingForDirective const* ufd: contract->usingForDirectives())
|
|
|
|
{
|
|
|
|
if (ufd->typeName() && *type != *ReferenceType::copyForLocationIfReference(
|
|
|
|
DataLocation::Storage,
|
|
|
|
ufd->typeName()->annotation().type
|
|
|
|
))
|
|
|
|
continue;
|
|
|
|
auto const& library = dynamic_cast<ContractDefinition const&>(
|
|
|
|
*ufd->libraryName().annotation().referencedDeclaration
|
|
|
|
);
|
2016-04-26 23:02:10 +00:00
|
|
|
for (FunctionDefinition const* function: library.definedFunctions())
|
2015-11-25 13:23:35 +00:00
|
|
|
{
|
2018-03-13 16:18:21 +00:00
|
|
|
if (!function->isVisibleAsLibraryMember() || seenFunctions.count(function))
|
2015-11-25 13:23:35 +00:00
|
|
|
continue;
|
2016-04-26 23:02:10 +00:00
|
|
|
seenFunctions.insert(function);
|
2018-11-22 14:37:26 +00:00
|
|
|
if (function->parameters().empty())
|
|
|
|
continue;
|
|
|
|
FunctionTypePointer fun = FunctionType(*function, false).asCallableFunction(true, true);
|
|
|
|
if (_type.isImplicitlyConvertibleTo(*fun->selfType()))
|
|
|
|
members.push_back(MemberList::Member(function->name(), fun, function));
|
2015-11-25 13:23:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return members;
|
|
|
|
}
|
2014-11-20 09:19:43 +00:00
|
|
|
|
2018-09-05 15:59:55 +00:00
|
|
|
AddressType::AddressType(StateMutability _stateMutability):
|
|
|
|
m_stateMutability(_stateMutability)
|
|
|
|
{
|
|
|
|
solAssert(m_stateMutability == StateMutability::Payable || m_stateMutability == StateMutability::NonPayable, "");
|
|
|
|
}
|
|
|
|
|
2018-09-03 15:45:58 +00:00
|
|
|
string AddressType::richIdentifier() const
|
|
|
|
{
|
2018-09-05 15:59:55 +00:00
|
|
|
if (m_stateMutability == StateMutability::Payable)
|
|
|
|
return "t_address_payable";
|
|
|
|
else
|
|
|
|
return "t_address";
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult AddressType::isImplicitlyConvertibleTo(Type const& _other) const
|
2018-09-05 15:59:55 +00:00
|
|
|
{
|
|
|
|
if (_other.category() != category())
|
|
|
|
return false;
|
|
|
|
AddressType const& other = dynamic_cast<AddressType const&>(_other);
|
|
|
|
|
|
|
|
return other.m_stateMutability <= m_stateMutability;
|
2018-09-03 15:45:58 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult AddressType::isExplicitlyConvertibleTo(Type const& _convertTo) const
|
2018-09-03 15:45:58 +00:00
|
|
|
{
|
2018-09-05 15:59:55 +00:00
|
|
|
if (auto const* contractType = dynamic_cast<ContractType const*>(&_convertTo))
|
|
|
|
return (m_stateMutability >= StateMutability::Payable) || !contractType->isPayable();
|
2018-09-03 15:45:58 +00:00
|
|
|
return isImplicitlyConvertibleTo(_convertTo) ||
|
|
|
|
_convertTo.category() == Category::Integer ||
|
|
|
|
(_convertTo.category() == Category::FixedBytes && 160 == dynamic_cast<FixedBytesType const&>(_convertTo).numBytes() * 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
string AddressType::toString(bool) const
|
2018-09-05 15:59:55 +00:00
|
|
|
{
|
|
|
|
if (m_stateMutability == StateMutability::Payable)
|
|
|
|
return "address payable";
|
|
|
|
else
|
|
|
|
return "address";
|
|
|
|
}
|
|
|
|
|
|
|
|
string AddressType::canonicalName() const
|
2018-09-03 15:45:58 +00:00
|
|
|
{
|
|
|
|
return "address";
|
|
|
|
}
|
|
|
|
|
|
|
|
u256 AddressType::literalValue(Literal const* _literal) const
|
|
|
|
{
|
|
|
|
solAssert(_literal, "");
|
|
|
|
solAssert(_literal->value().substr(0, 2) == "0x", "");
|
2018-10-01 12:36:57 +00:00
|
|
|
return u256(_literal->valueWithoutUnderscores());
|
2018-09-03 15:45:58 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
TypeResult AddressType::unaryOperatorResult(Token _operator) const
|
2018-09-03 15:45:58 +00:00
|
|
|
{
|
|
|
|
return _operator == Token::Delete ? make_shared<TupleType>() : TypePointer();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
TypeResult AddressType::binaryOperatorResult(Token _operator, TypePointer const& _other) const
|
2018-09-03 15:45:58 +00:00
|
|
|
{
|
|
|
|
// Addresses can only be compared.
|
2018-10-22 14:48:21 +00:00
|
|
|
if (!TokenTraits::isCompareOp(_operator))
|
2018-09-03 15:45:58 +00:00
|
|
|
return TypePointer();
|
|
|
|
|
|
|
|
return Type::commonType(shared_from_this(), _other);
|
|
|
|
}
|
|
|
|
|
2018-09-05 15:59:55 +00:00
|
|
|
bool AddressType::operator==(Type const& _other) const
|
|
|
|
{
|
|
|
|
if (_other.category() != category())
|
|
|
|
return false;
|
|
|
|
AddressType const& other = dynamic_cast<AddressType const&>(_other);
|
|
|
|
return other.m_stateMutability == m_stateMutability;
|
|
|
|
}
|
|
|
|
|
2018-09-03 15:45:58 +00:00
|
|
|
MemberList::MemberMap AddressType::nativeMembers(ContractDefinition const*) const
|
|
|
|
{
|
2018-09-05 15:59:55 +00:00
|
|
|
MemberList::MemberMap members = {
|
2018-09-03 15:45:58 +00:00
|
|
|
{"balance", make_shared<IntegerType>(256)},
|
|
|
|
{"call", make_shared<FunctionType>(strings{"bytes memory"}, strings{"bool", "bytes memory"}, FunctionType::Kind::BareCall, false, StateMutability::Payable)},
|
|
|
|
{"callcode", make_shared<FunctionType>(strings{"bytes memory"}, strings{"bool", "bytes memory"}, FunctionType::Kind::BareCallCode, false, StateMutability::Payable)},
|
|
|
|
{"delegatecall", make_shared<FunctionType>(strings{"bytes memory"}, strings{"bool", "bytes memory"}, FunctionType::Kind::BareDelegateCall, false)},
|
2018-09-05 15:59:55 +00:00
|
|
|
{"staticcall", make_shared<FunctionType>(strings{"bytes memory"}, strings{"bool", "bytes memory"}, FunctionType::Kind::BareStaticCall, false, StateMutability::View)}
|
2018-09-03 15:45:58 +00:00
|
|
|
};
|
2018-09-05 15:59:55 +00:00
|
|
|
if (m_stateMutability == StateMutability::Payable)
|
|
|
|
{
|
|
|
|
members.emplace_back(MemberList::Member{"send", make_shared<FunctionType>(strings{"uint"}, strings{"bool"}, FunctionType::Kind::Send)});
|
|
|
|
members.emplace_back(MemberList::Member{"transfer", make_shared<FunctionType>(strings{"uint"}, strings(), FunctionType::Kind::Transfer)});
|
|
|
|
}
|
|
|
|
return members;
|
2018-09-03 15:45:58 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 00:01:47 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2018-10-22 14:48:21 +00:00
|
|
|
bool isValidShiftAndAmountType(Token _operator, Type const& _shiftAmountType)
|
2016-12-06 22:45:17 +00:00
|
|
|
{
|
|
|
|
// Disable >>> here.
|
|
|
|
if (_operator == Token::SHR)
|
|
|
|
return false;
|
|
|
|
else if (IntegerType const* otherInt = dynamic_cast<decltype(otherInt)>(&_shiftAmountType))
|
2018-09-03 15:45:58 +00:00
|
|
|
return true;
|
2016-12-06 22:45:17 +00:00
|
|
|
else if (RationalNumberType const* otherRat = dynamic_cast<decltype(otherRat)>(&_shiftAmountType))
|
2018-03-22 04:20:50 +00:00
|
|
|
return !otherRat->isFractional() && otherRat->integerType() && !otherRat->integerType()->isSigned();
|
2016-12-06 22:45:17 +00:00
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-08-29 00:01:47 +00:00
|
|
|
}
|
|
|
|
|
2018-04-30 21:56:30 +00:00
|
|
|
IntegerType::IntegerType(unsigned _bits, IntegerType::Modifier _modifier):
|
2014-10-22 22:24:07 +00:00
|
|
|
m_bits(_bits), m_modifier(_modifier)
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
2016-02-18 12:29:02 +00:00
|
|
|
solAssert(
|
|
|
|
m_bits > 0 && m_bits <= 256 && m_bits % 8 == 0,
|
2018-04-30 21:56:30 +00:00
|
|
|
"Invalid bit number for integer type: " + dev::toString(m_bits)
|
2017-09-26 21:46:33 +00:00
|
|
|
);
|
2017-01-17 09:47:44 +00:00
|
|
|
}
|
|
|
|
|
2018-02-23 17:32:46 +00:00
|
|
|
string IntegerType::richIdentifier() const
|
2017-01-17 09:47:44 +00:00
|
|
|
{
|
2018-09-03 15:45:58 +00:00
|
|
|
return "t_" + string(isSigned() ? "" : "u") + "int" + to_string(numBits());
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult IntegerType::isImplicitlyConvertibleTo(Type const& _convertTo) const
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
2016-02-18 22:39:11 +00:00
|
|
|
if (_convertTo.category() == category())
|
2016-05-10 10:42:38 +00:00
|
|
|
{
|
2016-02-18 22:39:11 +00:00
|
|
|
IntegerType const& convertTo = dynamic_cast<IntegerType const&>(_convertTo);
|
|
|
|
if (convertTo.m_bits < m_bits)
|
|
|
|
return false;
|
|
|
|
else if (isSigned())
|
|
|
|
return convertTo.isSigned();
|
|
|
|
else
|
|
|
|
return !convertTo.isSigned() || convertTo.m_bits > m_bits;
|
|
|
|
}
|
|
|
|
else if (_convertTo.category() == Category::FixedPoint)
|
|
|
|
{
|
|
|
|
FixedPointType const& convertTo = dynamic_cast<FixedPointType const&>(_convertTo);
|
2018-09-03 15:45:58 +00:00
|
|
|
return maxValue() <= convertTo.maxIntegerValue() && minValue() >= convertTo.minIntegerValue();
|
2016-02-18 22:39:11 +00:00
|
|
|
}
|
2014-10-13 16:22:15 +00:00
|
|
|
else
|
2016-02-18 22:39:11 +00:00
|
|
|
return false;
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult IntegerType::isExplicitlyConvertibleTo(Type const& _convertTo) const
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
return _convertTo.category() == category() ||
|
2018-09-03 15:45:58 +00:00
|
|
|
_convertTo.category() == Category::Address ||
|
2015-08-31 16:44:29 +00:00
|
|
|
_convertTo.category() == Category::Contract ||
|
|
|
|
_convertTo.category() == Category::Enum ||
|
2018-05-08 12:26:01 +00:00
|
|
|
(_convertTo.category() == Category::FixedBytes && numBits() == dynamic_cast<FixedBytesType const&>(_convertTo).numBytes() * 8) ||
|
2016-05-13 05:38:41 +00:00
|
|
|
_convertTo.category() == Category::FixedPoint;
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
TypeResult IntegerType::unaryOperatorResult(Token _operator) const
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
2015-01-06 18:08:24 +00:00
|
|
|
// "delete" is ok for all integer types
|
2015-02-09 13:00:12 +00:00
|
|
|
if (_operator == Token::Delete)
|
2018-12-03 16:59:21 +00:00
|
|
|
return TypeResult{make_shared<TupleType>()};
|
2018-11-28 12:23:19 +00:00
|
|
|
// we allow -, ++ and --
|
|
|
|
else if (_operator == Token::Sub || _operator == Token::Inc ||
|
|
|
|
_operator == Token::Dec || _operator == Token::BitNot)
|
2018-12-03 16:59:21 +00:00
|
|
|
return TypeResult{shared_from_this()};
|
2015-01-06 18:08:24 +00:00
|
|
|
else
|
2018-12-03 16:59:21 +00:00
|
|
|
return TypeResult{""};
|
2014-10-20 10:41:56 +00:00
|
|
|
}
|
|
|
|
|
2014-10-29 18:28:30 +00:00
|
|
|
bool IntegerType::operator==(Type const& _other) const
|
2014-10-20 10:41:56 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_other.category() != category())
|
2014-10-20 10:41:56 +00:00
|
|
|
return false;
|
|
|
|
IntegerType const& other = dynamic_cast<IntegerType const&>(_other);
|
|
|
|
return other.m_bits == m_bits && other.m_modifier == m_modifier;
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
|
2015-06-09 12:26:08 +00:00
|
|
|
string IntegerType::toString(bool) const
|
2014-10-16 15:57:27 +00:00
|
|
|
{
|
2015-03-05 15:54:55 +00:00
|
|
|
string prefix = isSigned() ? "int" : "uint";
|
2014-10-16 15:57:27 +00:00
|
|
|
return prefix + dev::toString(m_bits);
|
|
|
|
}
|
|
|
|
|
2017-07-06 09:05:05 +00:00
|
|
|
bigint IntegerType::minValue() const
|
|
|
|
{
|
|
|
|
if (isSigned())
|
|
|
|
return -(bigint(1) << (m_bits - 1));
|
|
|
|
else
|
|
|
|
return bigint(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
bigint IntegerType::maxValue() const
|
|
|
|
{
|
|
|
|
if (isSigned())
|
|
|
|
return (bigint(1) << (m_bits - 1)) - 1;
|
|
|
|
else
|
|
|
|
return (bigint(1) << m_bits) - 1;
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
TypeResult IntegerType::binaryOperatorResult(Token _operator, TypePointer const& _other) const
|
2014-12-18 17:53:43 +00:00
|
|
|
{
|
2016-05-13 03:10:49 +00:00
|
|
|
if (
|
|
|
|
_other->category() != Category::RationalNumber &&
|
|
|
|
_other->category() != Category::FixedPoint &&
|
|
|
|
_other->category() != category()
|
|
|
|
)
|
2014-12-18 17:53:43 +00:00
|
|
|
return TypePointer();
|
2018-10-22 14:48:21 +00:00
|
|
|
if (TokenTraits::isShiftOp(_operator))
|
2016-12-05 17:40:50 +00:00
|
|
|
{
|
|
|
|
// Shifts are not symmetric with respect to the type
|
2016-12-06 22:45:17 +00:00
|
|
|
if (isValidShiftAndAmountType(_operator, *_other))
|
|
|
|
return shared_from_this();
|
|
|
|
else
|
|
|
|
return TypePointer();
|
2016-12-05 17:40:50 +00:00
|
|
|
}
|
|
|
|
|
2018-09-21 01:27:33 +00:00
|
|
|
auto commonType = Type::commonType(shared_from_this(), _other); //might be an integer or fixed point
|
2014-12-18 17:53:43 +00:00
|
|
|
if (!commonType)
|
|
|
|
return TypePointer();
|
2016-05-13 05:38:41 +00:00
|
|
|
|
2014-12-28 12:35:58 +00:00
|
|
|
// All integer types can be compared
|
2018-10-22 14:48:21 +00:00
|
|
|
if (TokenTraits::isCompareOp(_operator))
|
2014-12-28 12:35:58 +00:00
|
|
|
return commonType;
|
2018-10-22 14:48:21 +00:00
|
|
|
if (TokenTraits::isBooleanOp(_operator))
|
2015-08-06 13:33:06 +00:00
|
|
|
return TypePointer();
|
2016-05-13 05:38:41 +00:00
|
|
|
if (auto intType = dynamic_pointer_cast<IntegerType const>(commonType))
|
2016-05-18 20:53:36 +00:00
|
|
|
{
|
2016-10-24 18:12:31 +00:00
|
|
|
// Signed EXP is not allowed
|
|
|
|
if (Token::Exp == _operator && intType->isSigned())
|
|
|
|
return TypePointer();
|
2016-05-18 20:53:36 +00:00
|
|
|
}
|
|
|
|
else if (auto fixType = dynamic_pointer_cast<FixedPointType const>(commonType))
|
|
|
|
if (Token::Exp == _operator)
|
|
|
|
return TypePointer();
|
2015-03-09 12:49:53 +00:00
|
|
|
return commonType;
|
2014-12-18 17:53:43 +00:00
|
|
|
}
|
|
|
|
|
2018-04-30 21:50:27 +00:00
|
|
|
FixedPointType::FixedPointType(unsigned _totalBits, unsigned _fractionalDigits, FixedPointType::Modifier _modifier):
|
2016-12-22 18:20:03 +00:00
|
|
|
m_totalBits(_totalBits), m_fractionalDigits(_fractionalDigits), m_modifier(_modifier)
|
2016-02-18 22:39:11 +00:00
|
|
|
{
|
|
|
|
solAssert(
|
2018-05-01 05:58:04 +00:00
|
|
|
8 <= m_totalBits && m_totalBits <= 256 && m_totalBits % 8 == 0 && m_fractionalDigits <= 80,
|
2018-04-30 21:50:27 +00:00
|
|
|
"Invalid bit number(s) for fixed type: " +
|
2016-12-22 18:20:03 +00:00
|
|
|
dev::toString(_totalBits) + "x" + dev::toString(_fractionalDigits)
|
|
|
|
);
|
2017-01-17 09:47:44 +00:00
|
|
|
}
|
|
|
|
|
2018-02-23 17:32:46 +00:00
|
|
|
string FixedPointType::richIdentifier() const
|
2017-01-17 09:47:44 +00:00
|
|
|
{
|
2018-08-08 14:26:30 +00:00
|
|
|
return "t_" + string(isSigned() ? "" : "u") + "fixed" + to_string(m_totalBits) + "x" + to_string(m_fractionalDigits);
|
2016-02-18 22:39:11 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult FixedPointType::isImplicitlyConvertibleTo(Type const& _convertTo) const
|
2016-02-18 22:39:11 +00:00
|
|
|
{
|
|
|
|
if (_convertTo.category() == category())
|
|
|
|
{
|
|
|
|
FixedPointType const& convertTo = dynamic_cast<FixedPointType const&>(_convertTo);
|
2016-12-22 18:20:03 +00:00
|
|
|
if (convertTo.numBits() < m_totalBits || convertTo.fractionalDigits() < m_fractionalDigits)
|
2016-02-18 22:39:11 +00:00
|
|
|
return false;
|
|
|
|
else
|
2017-07-12 13:44:27 +00:00
|
|
|
return convertTo.maxIntegerValue() >= maxIntegerValue() && convertTo.minIntegerValue() <= minIntegerValue();
|
2016-02-18 22:39:11 +00:00
|
|
|
}
|
2016-05-05 22:47:08 +00:00
|
|
|
return false;
|
2016-02-18 22:39:11 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult FixedPointType::isExplicitlyConvertibleTo(Type const& _convertTo) const
|
2016-02-18 22:39:11 +00:00
|
|
|
{
|
2018-09-03 15:45:58 +00:00
|
|
|
return _convertTo.category() == category() || _convertTo.category() == Category::Integer;
|
2016-02-18 22:39:11 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
TypeResult FixedPointType::unaryOperatorResult(Token _operator) const
|
2016-02-18 22:39:11 +00:00
|
|
|
{
|
2017-08-09 22:16:58 +00:00
|
|
|
switch(_operator)
|
|
|
|
{
|
|
|
|
case Token::Delete:
|
|
|
|
// "delete" is ok for all fixed types
|
2018-05-07 22:31:34 +00:00
|
|
|
return TypeResult(make_shared<TupleType>());
|
2017-08-09 22:16:58 +00:00
|
|
|
case Token::Add:
|
|
|
|
case Token::Sub:
|
|
|
|
case Token::Inc:
|
|
|
|
case Token::Dec:
|
|
|
|
// for fixed, we allow +, -, ++ and --
|
2016-02-18 22:39:11 +00:00
|
|
|
return shared_from_this();
|
2017-08-09 22:16:58 +00:00
|
|
|
default:
|
2016-02-18 22:39:11 +00:00
|
|
|
return TypePointer();
|
2017-08-09 22:16:58 +00:00
|
|
|
}
|
2016-02-18 22:39:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool FixedPointType::operator==(Type const& _other) const
|
|
|
|
{
|
|
|
|
if (_other.category() != category())
|
|
|
|
return false;
|
|
|
|
FixedPointType const& other = dynamic_cast<FixedPointType const&>(_other);
|
2016-12-22 18:20:03 +00:00
|
|
|
return other.m_totalBits == m_totalBits && other.m_fractionalDigits == m_fractionalDigits && other.m_modifier == m_modifier;
|
2016-02-18 22:39:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
string FixedPointType::toString(bool) const
|
|
|
|
{
|
|
|
|
string prefix = isSigned() ? "fixed" : "ufixed";
|
2016-12-22 18:20:03 +00:00
|
|
|
return prefix + dev::toString(m_totalBits) + "x" + dev::toString(m_fractionalDigits);
|
2016-02-18 22:39:11 +00:00
|
|
|
}
|
|
|
|
|
2017-07-12 13:44:27 +00:00
|
|
|
bigint FixedPointType::maxIntegerValue() const
|
|
|
|
{
|
|
|
|
bigint maxValue = (bigint(1) << (m_totalBits - (isSigned() ? 1 : 0))) - 1;
|
2018-05-04 04:18:34 +00:00
|
|
|
return maxValue / boost::multiprecision::pow(bigint(10), m_fractionalDigits);
|
2017-07-12 13:44:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bigint FixedPointType::minIntegerValue() const
|
|
|
|
{
|
|
|
|
if (isSigned())
|
|
|
|
{
|
|
|
|
bigint minValue = -(bigint(1) << (m_totalBits - (isSigned() ? 1 : 0)));
|
2018-05-04 04:18:34 +00:00
|
|
|
return minValue / boost::multiprecision::pow(bigint(10), m_fractionalDigits);
|
2017-07-12 13:44:27 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return bigint(0);
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
TypeResult FixedPointType::binaryOperatorResult(Token _operator, TypePointer const& _other) const
|
2016-02-18 22:39:11 +00:00
|
|
|
{
|
2018-04-19 23:00:05 +00:00
|
|
|
auto commonType = Type::commonType(shared_from_this(), _other);
|
2016-02-18 22:39:11 +00:00
|
|
|
|
|
|
|
if (!commonType)
|
|
|
|
return TypePointer();
|
|
|
|
|
|
|
|
// All fixed types can be compared
|
2018-10-22 14:48:21 +00:00
|
|
|
if (TokenTraits::isCompareOp(_operator))
|
2016-02-18 22:39:11 +00:00
|
|
|
return commonType;
|
2018-10-22 14:48:21 +00:00
|
|
|
if (TokenTraits::isBitOp(_operator) || TokenTraits::isBooleanOp(_operator) || _operator == Token::Exp)
|
2016-02-18 22:39:11 +00:00
|
|
|
return TypePointer();
|
|
|
|
return commonType;
|
|
|
|
}
|
|
|
|
|
2018-04-19 23:00:05 +00:00
|
|
|
std::shared_ptr<IntegerType> FixedPointType::asIntegerType() const
|
|
|
|
{
|
2018-04-30 21:56:30 +00:00
|
|
|
return make_shared<IntegerType>(numBits(), isSigned() ? IntegerType::Modifier::Signed : IntegerType::Modifier::Unsigned);
|
2018-04-19 23:00:05 +00:00
|
|
|
}
|
|
|
|
|
2017-03-15 11:18:29 +00:00
|
|
|
tuple<bool, rational> RationalNumberType::parseRational(string const& _value)
|
2015-07-14 15:43:13 +00:00
|
|
|
{
|
2017-03-15 11:18:29 +00:00
|
|
|
rational value;
|
2015-07-14 15:43:13 +00:00
|
|
|
try
|
|
|
|
{
|
2017-03-15 11:18:29 +00:00
|
|
|
auto radixPoint = find(_value.begin(), _value.end(), '.');
|
|
|
|
|
|
|
|
if (radixPoint != _value.end())
|
2016-02-18 22:39:11 +00:00
|
|
|
{
|
2016-04-12 17:36:34 +00:00
|
|
|
if (
|
2017-03-15 11:18:29 +00:00
|
|
|
!all_of(radixPoint + 1, _value.end(), ::isdigit) ||
|
|
|
|
!all_of(_value.begin(), radixPoint, ::isdigit)
|
2016-04-12 17:36:34 +00:00
|
|
|
)
|
2016-10-20 09:33:17 +00:00
|
|
|
return make_tuple(false, rational(0));
|
2017-03-15 11:18:29 +00:00
|
|
|
|
|
|
|
// Only decimal notation allowed here, leading zeros would switch to octal.
|
2016-05-10 10:42:38 +00:00
|
|
|
auto fractionalBegin = find_if_not(
|
2017-03-15 11:18:29 +00:00
|
|
|
radixPoint + 1,
|
|
|
|
_value.end(),
|
2016-02-18 22:39:11 +00:00
|
|
|
[](char const& a) { return a == '0'; }
|
|
|
|
);
|
2016-04-12 17:36:34 +00:00
|
|
|
|
2017-03-15 11:18:29 +00:00
|
|
|
rational numerator;
|
|
|
|
rational denominator(1);
|
|
|
|
|
|
|
|
denominator = bigint(string(fractionalBegin, _value.end()));
|
2016-02-18 22:39:11 +00:00
|
|
|
denominator /= boost::multiprecision::pow(
|
2017-03-15 11:18:29 +00:00
|
|
|
bigint(10),
|
|
|
|
distance(radixPoint + 1, _value.end())
|
2016-02-18 22:39:11 +00:00
|
|
|
);
|
2017-03-15 11:18:29 +00:00
|
|
|
numerator = bigint(string(_value.begin(), radixPoint));
|
|
|
|
value = numerator + denominator;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
value = bigint(_value);
|
|
|
|
return make_tuple(true, value);
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
return make_tuple(false, rational(0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-06 12:59:37 +00:00
|
|
|
TypePointer RationalNumberType::forLiteral(Literal const& _literal)
|
|
|
|
{
|
|
|
|
solAssert(_literal.token() == Token::Number, "");
|
|
|
|
tuple<bool, rational> validLiteral = isValidLiteral(_literal);
|
|
|
|
if (get<0>(validLiteral))
|
|
|
|
{
|
|
|
|
TypePointer compatibleBytesType;
|
|
|
|
if (_literal.isHexNumber())
|
|
|
|
{
|
2018-10-02 13:31:55 +00:00
|
|
|
size_t const digitCount = _literal.valueWithoutUnderscores().length() - 2;
|
|
|
|
if (digitCount % 2 == 0 && (digitCount / 2) <= 32)
|
2018-08-06 12:59:37 +00:00
|
|
|
compatibleBytesType = make_shared<FixedBytesType>(digitCount / 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
return make_shared<RationalNumberType>(get<1>(validLiteral), compatibleBytesType);
|
|
|
|
}
|
|
|
|
return TypePointer();
|
|
|
|
}
|
|
|
|
|
2016-04-12 17:36:34 +00:00
|
|
|
tuple<bool, rational> RationalNumberType::isValidLiteral(Literal const& _literal)
|
2015-07-14 15:43:13 +00:00
|
|
|
{
|
2017-03-15 12:50:34 +00:00
|
|
|
rational value;
|
2015-07-14 15:43:13 +00:00
|
|
|
try
|
|
|
|
{
|
2018-10-02 13:31:55 +00:00
|
|
|
ASTString valueString = _literal.valueWithoutUnderscores();
|
2017-02-14 14:24:25 +00:00
|
|
|
|
2018-08-03 14:13:52 +00:00
|
|
|
auto expPoint = find(valueString.begin(), valueString.end(), 'e');
|
|
|
|
if (expPoint == valueString.end())
|
|
|
|
expPoint = find(valueString.begin(), valueString.end(), 'E');
|
|
|
|
|
|
|
|
if (boost::starts_with(valueString, "0x"))
|
2017-03-15 11:16:44 +00:00
|
|
|
{
|
|
|
|
// process as hex
|
2017-10-25 08:12:07 +00:00
|
|
|
value = bigint(valueString);
|
2017-03-15 11:16:44 +00:00
|
|
|
}
|
2018-08-03 14:13:52 +00:00
|
|
|
else if (expPoint != valueString.end())
|
2017-02-14 14:24:25 +00:00
|
|
|
{
|
2018-07-11 13:30:54 +00:00
|
|
|
// Parse mantissa and exponent. Checks numeric limit.
|
2018-08-03 14:13:52 +00:00
|
|
|
tuple<bool, rational> mantissa = parseRational(string(valueString.begin(), expPoint));
|
2017-02-14 14:24:25 +00:00
|
|
|
|
2018-07-11 13:30:54 +00:00
|
|
|
if (!get<0>(mantissa))
|
2017-02-14 14:24:25 +00:00
|
|
|
return make_tuple(false, rational(0));
|
2018-07-11 13:30:54 +00:00
|
|
|
value = get<1>(mantissa);
|
2017-02-14 14:24:25 +00:00
|
|
|
|
2018-07-11 13:30:54 +00:00
|
|
|
// 0E... is always zero.
|
|
|
|
if (value == 0)
|
|
|
|
return make_tuple(true, rational(0));
|
2018-03-26 17:48:20 +00:00
|
|
|
|
2018-08-03 14:13:52 +00:00
|
|
|
bigint exp = bigint(string(expPoint + 1, valueString.end()));
|
2018-03-26 17:48:20 +00:00
|
|
|
|
2018-07-11 13:30:54 +00:00
|
|
|
if (exp > numeric_limits<int32_t>::max() || exp < numeric_limits<int32_t>::min())
|
2017-03-15 11:18:29 +00:00
|
|
|
return make_tuple(false, rational(0));
|
2018-07-11 13:30:54 +00:00
|
|
|
|
|
|
|
uint32_t expAbs = bigint(abs(exp)).convert_to<uint32_t>();
|
2017-03-15 12:50:34 +00:00
|
|
|
|
2017-02-14 16:36:22 +00:00
|
|
|
if (exp < 0)
|
2017-02-14 17:25:04 +00:00
|
|
|
{
|
2018-03-26 17:48:20 +00:00
|
|
|
if (!fitsPrecisionBase10(abs(value.denominator()), expAbs))
|
|
|
|
return make_tuple(false, rational(0));
|
2017-03-15 12:50:34 +00:00
|
|
|
value /= boost::multiprecision::pow(
|
2017-02-14 16:36:22 +00:00
|
|
|
bigint(10),
|
2018-03-26 17:48:20 +00:00
|
|
|
expAbs
|
2017-02-14 16:36:22 +00:00
|
|
|
);
|
2017-02-14 17:25:04 +00:00
|
|
|
}
|
2018-03-26 17:48:20 +00:00
|
|
|
else if (exp > 0)
|
|
|
|
{
|
|
|
|
if (!fitsPrecisionBase10(abs(value.numerator()), expAbs))
|
|
|
|
return make_tuple(false, rational(0));
|
2017-03-15 12:50:34 +00:00
|
|
|
value *= boost::multiprecision::pow(
|
2017-02-14 16:36:22 +00:00
|
|
|
bigint(10),
|
2018-03-26 17:48:20 +00:00
|
|
|
expAbs
|
2017-02-14 16:36:22 +00:00
|
|
|
);
|
2018-03-26 17:48:20 +00:00
|
|
|
}
|
2016-02-18 22:39:11 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-03-15 11:18:29 +00:00
|
|
|
// parse as rational number
|
2018-08-03 14:13:52 +00:00
|
|
|
tuple<bool, rational> tmp = parseRational(valueString);
|
2017-03-15 11:18:29 +00:00
|
|
|
if (!get<0>(tmp))
|
|
|
|
return tmp;
|
|
|
|
value = get<1>(tmp);
|
2016-02-18 22:39:11 +00:00
|
|
|
}
|
|
|
|
}
|
2016-04-12 17:36:34 +00:00
|
|
|
catch (...)
|
2015-02-06 12:38:10 +00:00
|
|
|
{
|
2016-04-12 17:36:34 +00:00
|
|
|
return make_tuple(false, rational(0));
|
2015-02-06 12:38:10 +00:00
|
|
|
}
|
2016-05-05 22:47:08 +00:00
|
|
|
switch (_literal.subDenomination())
|
|
|
|
{
|
|
|
|
case Literal::SubDenomination::None:
|
|
|
|
case Literal::SubDenomination::Wei:
|
|
|
|
case Literal::SubDenomination::Second:
|
|
|
|
break;
|
|
|
|
case Literal::SubDenomination::Szabo:
|
2017-03-15 12:50:34 +00:00
|
|
|
value *= bigint("1000000000000");
|
2016-05-05 22:47:08 +00:00
|
|
|
break;
|
|
|
|
case Literal::SubDenomination::Finney:
|
2017-03-15 12:50:34 +00:00
|
|
|
value *= bigint("1000000000000000");
|
2016-05-05 22:47:08 +00:00
|
|
|
break;
|
|
|
|
case Literal::SubDenomination::Ether:
|
2017-03-15 12:50:34 +00:00
|
|
|
value *= bigint("1000000000000000000");
|
2016-05-05 22:47:08 +00:00
|
|
|
break;
|
|
|
|
case Literal::SubDenomination::Minute:
|
2017-03-15 12:50:34 +00:00
|
|
|
value *= bigint("60");
|
2016-05-05 22:47:08 +00:00
|
|
|
break;
|
|
|
|
case Literal::SubDenomination::Hour:
|
2017-03-15 12:50:34 +00:00
|
|
|
value *= bigint("3600");
|
2016-05-05 22:47:08 +00:00
|
|
|
break;
|
|
|
|
case Literal::SubDenomination::Day:
|
2017-03-15 12:50:34 +00:00
|
|
|
value *= bigint("86400");
|
2016-05-05 22:47:08 +00:00
|
|
|
break;
|
|
|
|
case Literal::SubDenomination::Week:
|
2017-03-15 12:50:34 +00:00
|
|
|
value *= bigint("604800");
|
2016-05-05 22:47:08 +00:00
|
|
|
break;
|
|
|
|
case Literal::SubDenomination::Year:
|
2017-03-15 12:50:34 +00:00
|
|
|
value *= bigint("31536000");
|
2016-05-05 22:47:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-15 12:50:34 +00:00
|
|
|
return make_tuple(true, value);
|
2014-12-19 10:31:17 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult RationalNumberType::isImplicitlyConvertibleTo(Type const& _convertTo) const
|
2014-12-19 10:31:17 +00:00
|
|
|
{
|
2018-06-24 02:15:25 +00:00
|
|
|
switch (_convertTo.category())
|
|
|
|
{
|
|
|
|
case Category::Integer:
|
2015-03-10 17:22:19 +00:00
|
|
|
{
|
2016-05-10 12:30:24 +00:00
|
|
|
if (isFractional())
|
2016-04-12 17:36:34 +00:00
|
|
|
return false;
|
2017-08-22 12:55:28 +00:00
|
|
|
IntegerType const& targetType = dynamic_cast<IntegerType const&>(_convertTo);
|
2018-02-16 04:23:27 +00:00
|
|
|
if (m_value == rational(0))
|
|
|
|
return true;
|
2018-04-30 21:56:30 +00:00
|
|
|
unsigned forSignBit = (targetType.isSigned() ? 1 : 0);
|
2017-03-10 01:04:26 +00:00
|
|
|
if (m_value > rational(0))
|
2016-02-18 22:39:11 +00:00
|
|
|
{
|
2017-08-22 12:55:28 +00:00
|
|
|
if (m_value.numerator() <= (u256(-1) >> (256 - targetType.numBits() + forSignBit)))
|
2016-02-18 22:39:11 +00:00
|
|
|
return true;
|
2018-06-24 02:15:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (targetType.isSigned())
|
|
|
|
{
|
|
|
|
if (-m_value.numerator() <= (u256(1) << (targetType.numBits() - forSignBit)))
|
|
|
|
return true;
|
2015-06-03 14:14:23 +00:00
|
|
|
}
|
2016-03-03 18:48:42 +00:00
|
|
|
return false;
|
2016-02-18 22:39:11 +00:00
|
|
|
}
|
2018-06-24 02:15:25 +00:00
|
|
|
case Category::FixedPoint:
|
2016-02-18 22:39:11 +00:00
|
|
|
{
|
2016-05-05 22:47:08 +00:00
|
|
|
if (auto fixed = fixedPointType())
|
2017-07-12 13:44:27 +00:00
|
|
|
return fixed->isImplicitlyConvertibleTo(_convertTo);
|
2018-06-24 02:15:25 +00:00
|
|
|
return false;
|
2015-03-10 17:22:19 +00:00
|
|
|
}
|
2018-06-24 02:15:25 +00:00
|
|
|
case Category::FixedBytes:
|
2018-08-06 12:59:37 +00:00
|
|
|
return (m_value == rational(0)) || (m_compatibleBytesType && *m_compatibleBytesType == _convertTo);
|
2018-06-24 02:15:25 +00:00
|
|
|
default:
|
|
|
|
return false;
|
2015-06-04 16:06:06 +00:00
|
|
|
}
|
2014-12-19 10:31:17 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult RationalNumberType::isExplicitlyConvertibleTo(Type const& _convertTo) const
|
2014-12-19 10:31:17 +00:00
|
|
|
{
|
2018-08-06 12:59:37 +00:00
|
|
|
if (isImplicitlyConvertibleTo(_convertTo))
|
|
|
|
return true;
|
|
|
|
else if (_convertTo.category() != Category::FixedBytes)
|
|
|
|
{
|
|
|
|
TypePointer mobType = mobileType();
|
|
|
|
return (mobType && mobType->isExplicitlyConvertibleTo(_convertTo));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return false;
|
2014-12-19 10:31:17 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
TypeResult RationalNumberType::unaryOperatorResult(Token _operator) const
|
2014-12-19 10:31:17 +00:00
|
|
|
{
|
2016-02-18 22:39:11 +00:00
|
|
|
rational value;
|
2014-12-19 10:31:17 +00:00
|
|
|
switch (_operator)
|
|
|
|
{
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::BitNot:
|
2016-05-10 12:30:24 +00:00
|
|
|
if (isFractional())
|
2016-04-08 06:19:20 +00:00
|
|
|
return TypePointer();
|
2016-02-18 22:39:11 +00:00
|
|
|
value = ~m_value.numerator();
|
2014-12-19 10:31:17 +00:00
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::Add:
|
2016-03-18 20:03:26 +00:00
|
|
|
value = +(m_value);
|
2014-12-19 10:31:17 +00:00
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::Sub:
|
2016-03-18 20:03:26 +00:00
|
|
|
value = -(m_value);
|
2014-12-19 10:31:17 +00:00
|
|
|
break;
|
2015-03-04 18:55:52 +00:00
|
|
|
case Token::After:
|
|
|
|
return shared_from_this();
|
2014-12-19 10:31:17 +00:00
|
|
|
default:
|
|
|
|
return TypePointer();
|
|
|
|
}
|
2018-05-07 22:31:34 +00:00
|
|
|
return TypeResult(make_shared<RationalNumberType>(value));
|
2014-12-19 10:31:17 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
TypeResult RationalNumberType::binaryOperatorResult(Token _operator, TypePointer const& _other) const
|
2014-12-19 10:31:17 +00:00
|
|
|
{
|
2016-05-10 10:42:38 +00:00
|
|
|
if (_other->category() == Category::Integer || _other->category() == Category::FixedPoint)
|
2016-02-18 22:39:11 +00:00
|
|
|
{
|
2018-04-10 21:35:15 +00:00
|
|
|
auto commonType = Type::commonType(shared_from_this(), _other);
|
|
|
|
if (!commonType)
|
2016-02-18 22:39:11 +00:00
|
|
|
return TypePointer();
|
2018-04-10 21:35:15 +00:00
|
|
|
return commonType->binaryOperatorResult(_operator, _other);
|
2016-02-18 22:39:11 +00:00
|
|
|
}
|
2015-08-31 16:44:29 +00:00
|
|
|
else if (_other->category() != category())
|
2014-12-19 10:31:17 +00:00
|
|
|
return TypePointer();
|
|
|
|
|
2016-03-29 20:08:51 +00:00
|
|
|
RationalNumberType const& other = dynamic_cast<RationalNumberType const&>(*_other);
|
2018-10-22 14:48:21 +00:00
|
|
|
if (TokenTraits::isCompareOp(_operator))
|
2014-12-19 10:31:17 +00:00
|
|
|
{
|
2018-07-10 07:18:59 +00:00
|
|
|
// Since we do not have a "BoolConstantType", we have to do the actual comparison
|
2016-05-10 10:42:38 +00:00
|
|
|
// at runtime and convert to mobile typse first. Such a comparison is not a very common
|
|
|
|
// use-case and will be optimized away.
|
|
|
|
TypePointer thisMobile = mobileType();
|
|
|
|
TypePointer otherMobile = other.mobileType();
|
|
|
|
if (!thisMobile || !otherMobile)
|
|
|
|
return TypePointer();
|
|
|
|
return thisMobile->binaryOperatorResult(_operator, otherMobile);
|
2014-12-19 10:31:17 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-02-18 22:39:11 +00:00
|
|
|
rational value;
|
2016-05-10 12:30:24 +00:00
|
|
|
bool fractional = isFractional() || other.isFractional();
|
2014-12-19 10:31:17 +00:00
|
|
|
switch (_operator)
|
|
|
|
{
|
2016-02-18 22:39:11 +00:00
|
|
|
//bit operations will only be enabled for integers and fixed types that resemble integers
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::BitOr:
|
2016-04-08 06:19:20 +00:00
|
|
|
if (fractional)
|
|
|
|
return TypePointer();
|
2016-02-18 22:39:11 +00:00
|
|
|
value = m_value.numerator() | other.m_value.numerator();
|
2014-12-19 10:31:17 +00:00
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::BitXor:
|
2016-04-08 06:19:20 +00:00
|
|
|
if (fractional)
|
|
|
|
return TypePointer();
|
2016-02-18 22:39:11 +00:00
|
|
|
value = m_value.numerator() ^ other.m_value.numerator();
|
2014-12-19 10:31:17 +00:00
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::BitAnd:
|
2016-04-08 06:19:20 +00:00
|
|
|
if (fractional)
|
|
|
|
return TypePointer();
|
2016-02-18 22:39:11 +00:00
|
|
|
value = m_value.numerator() & other.m_value.numerator();
|
2014-12-19 10:31:17 +00:00
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::Add:
|
2016-03-03 18:48:42 +00:00
|
|
|
value = m_value + other.m_value;
|
2014-12-19 10:31:17 +00:00
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::Sub:
|
2016-03-03 18:48:42 +00:00
|
|
|
value = m_value - other.m_value;
|
2014-12-19 10:31:17 +00:00
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::Mul:
|
2014-12-19 10:31:17 +00:00
|
|
|
value = m_value * other.m_value;
|
2016-04-12 17:36:34 +00:00
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::Div:
|
2017-03-10 01:04:26 +00:00
|
|
|
if (other.m_value == rational(0))
|
2014-12-19 10:31:17 +00:00
|
|
|
return TypePointer();
|
2016-02-18 22:39:11 +00:00
|
|
|
else
|
|
|
|
value = m_value / other.m_value;
|
2014-12-19 10:31:17 +00:00
|
|
|
break;
|
2015-02-09 13:00:12 +00:00
|
|
|
case Token::Mod:
|
2017-03-10 01:04:26 +00:00
|
|
|
if (other.m_value == rational(0))
|
2014-12-19 10:31:17 +00:00
|
|
|
return TypePointer();
|
2016-04-08 06:19:20 +00:00
|
|
|
else if (fractional)
|
2016-02-18 22:39:11 +00:00
|
|
|
{
|
2016-04-11 21:35:17 +00:00
|
|
|
rational tempValue = m_value / other.m_value;
|
|
|
|
value = m_value - (tempValue.numerator() / tempValue.denominator()) * other.m_value;
|
2016-02-18 22:39:11 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
value = m_value.numerator() % other.m_value.numerator();
|
2018-05-22 15:20:40 +00:00
|
|
|
break;
|
2015-02-08 11:23:17 +00:00
|
|
|
case Token::Exp:
|
2016-02-18 22:39:11 +00:00
|
|
|
{
|
2016-05-10 12:30:24 +00:00
|
|
|
if (other.isFractional())
|
2015-02-10 14:43:13 +00:00
|
|
|
return TypePointer();
|
2018-03-26 17:48:20 +00:00
|
|
|
solAssert(other.m_value.denominator() == 1, "");
|
|
|
|
bigint const& exp = other.m_value.numerator();
|
|
|
|
|
|
|
|
// x ** 0 = 1
|
|
|
|
// for 0, 1 and -1 the size of the exponent doesn't have to be restricted
|
|
|
|
if (exp == 0)
|
|
|
|
value = 1;
|
|
|
|
else if (m_value.numerator() == 0 || m_value == 1)
|
|
|
|
value = m_value;
|
|
|
|
else if (m_value == -1)
|
|
|
|
{
|
|
|
|
bigint isOdd = abs(exp) & bigint(1);
|
|
|
|
value = 1 - 2 * isOdd.convert_to<int>();
|
|
|
|
}
|
2015-02-08 11:23:17 +00:00
|
|
|
else
|
2018-03-26 17:48:20 +00:00
|
|
|
{
|
|
|
|
if (abs(exp) > numeric_limits<uint32_t>::max())
|
|
|
|
return TypePointer(); // This will need too much memory to represent.
|
|
|
|
|
|
|
|
uint32_t absExp = bigint(abs(exp)).convert_to<uint32_t>();
|
|
|
|
|
|
|
|
// Limit size to 4096 bits
|
|
|
|
if (!fitsPrecisionExp(abs(m_value.numerator()), absExp) || !fitsPrecisionExp(abs(m_value.denominator()), absExp))
|
|
|
|
return TypePointer();
|
|
|
|
|
|
|
|
static auto const optimizedPow = [](bigint const& _base, uint32_t _exponent) -> bigint {
|
|
|
|
if (_base == 1)
|
|
|
|
return 1;
|
|
|
|
else if (_base == -1)
|
|
|
|
return 1 - 2 * int(_exponent & 1);
|
|
|
|
else
|
2018-05-04 04:18:34 +00:00
|
|
|
return boost::multiprecision::pow(_base, _exponent);
|
2018-03-26 17:48:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
bigint numerator = optimizedPow(m_value.numerator(), absExp);
|
|
|
|
bigint denominator = optimizedPow(m_value.denominator(), absExp);
|
|
|
|
|
|
|
|
if (exp >= 0)
|
2018-11-05 22:52:45 +00:00
|
|
|
value = makeRational(numerator, denominator);
|
2018-03-26 17:48:20 +00:00
|
|
|
else
|
|
|
|
// invert
|
2018-11-05 22:52:45 +00:00
|
|
|
value = makeRational(denominator, numerator);
|
2018-03-26 17:48:20 +00:00
|
|
|
}
|
2015-02-08 11:23:17 +00:00
|
|
|
break;
|
2016-02-18 22:39:11 +00:00
|
|
|
}
|
2016-05-17 15:04:10 +00:00
|
|
|
case Token::SHL:
|
|
|
|
{
|
|
|
|
if (fractional)
|
|
|
|
return TypePointer();
|
2016-06-07 18:36:42 +00:00
|
|
|
else if (other.m_value < 0)
|
2016-05-17 15:04:10 +00:00
|
|
|
return TypePointer();
|
2016-06-07 18:36:42 +00:00
|
|
|
else if (other.m_value > numeric_limits<uint32_t>::max())
|
|
|
|
return TypePointer();
|
2018-03-26 17:48:20 +00:00
|
|
|
if (m_value.numerator() == 0)
|
|
|
|
value = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
uint32_t exponent = other.m_value.numerator().convert_to<uint32_t>();
|
|
|
|
if (!fitsPrecisionBase2(abs(m_value.numerator()), exponent))
|
|
|
|
return TypePointer();
|
2018-05-04 04:18:34 +00:00
|
|
|
value = m_value.numerator() * boost::multiprecision::pow(bigint(2), exponent);
|
2018-03-26 17:48:20 +00:00
|
|
|
}
|
2016-05-17 15:04:10 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-09-07 23:26:14 +00:00
|
|
|
// NOTE: we're using >> (SAR) to denote right shifting. The type of the LValue
|
|
|
|
// determines the resulting type and the type of shift (SAR or SHR).
|
|
|
|
case Token::SAR:
|
2016-05-17 15:04:10 +00:00
|
|
|
{
|
|
|
|
if (fractional)
|
|
|
|
return TypePointer();
|
2016-06-07 18:36:42 +00:00
|
|
|
else if (other.m_value < 0)
|
2016-05-17 15:04:10 +00:00
|
|
|
return TypePointer();
|
2016-06-07 18:36:42 +00:00
|
|
|
else if (other.m_value > numeric_limits<uint32_t>::max())
|
|
|
|
return TypePointer();
|
2018-03-26 17:48:20 +00:00
|
|
|
if (m_value.numerator() == 0)
|
|
|
|
value = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
uint32_t exponent = other.m_value.numerator().convert_to<uint32_t>();
|
2018-05-04 04:18:34 +00:00
|
|
|
if (exponent > mostSignificantBit(boost::multiprecision::abs(m_value.numerator())))
|
2018-05-07 17:09:52 +00:00
|
|
|
value = m_value.numerator() < 0 ? -1 : 0;
|
2018-03-26 17:48:20 +00:00
|
|
|
else
|
2018-05-07 17:09:52 +00:00
|
|
|
{
|
|
|
|
if (m_value.numerator() < 0)
|
2018-06-12 13:53:15 +00:00
|
|
|
// Add 1 to the negative value before dividing to get a result that is strictly too large,
|
|
|
|
// then subtract 1 afterwards to round towards negative infinity.
|
|
|
|
// This is the same algorithm as used in ExpressionCompiler::appendShiftOperatorCode(...).
|
|
|
|
// To see this note that for negative x, xor(x,all_ones) = (-x-1) and
|
|
|
|
// therefore xor(div(xor(x,all_ones), exp(2, shift_amount)), all_ones) is
|
|
|
|
// -(-x - 1) / 2^shift_amount - 1, which is the same as
|
|
|
|
// (x + 1) / 2^shift_amount - 1.
|
2018-05-07 17:09:52 +00:00
|
|
|
value = rational((m_value.numerator() + 1) / boost::multiprecision::pow(bigint(2), exponent) - bigint(1), 1);
|
|
|
|
else
|
|
|
|
value = rational(m_value.numerator() / boost::multiprecision::pow(bigint(2), exponent), 1);
|
|
|
|
}
|
2018-03-26 17:48:20 +00:00
|
|
|
}
|
2016-05-17 15:04:10 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-12-19 10:31:17 +00:00
|
|
|
default:
|
|
|
|
return TypePointer();
|
|
|
|
}
|
2018-03-26 17:48:20 +00:00
|
|
|
|
|
|
|
// verify that numerator and denominator fit into 4096 bit after every operation
|
|
|
|
if (value.numerator() != 0 && max(mostSignificantBit(abs(value.numerator())), mostSignificantBit(abs(value.denominator()))) > 4096)
|
|
|
|
return TypePointer();
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
return TypeResult(make_shared<RationalNumberType>(value));
|
2014-12-19 10:31:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-23 17:32:46 +00:00
|
|
|
string RationalNumberType::richIdentifier() const
|
2017-01-17 09:47:44 +00:00
|
|
|
{
|
2018-08-07 01:40:39 +00:00
|
|
|
// rational seemingly will put the sign always on the numerator,
|
|
|
|
// but let just make it deterministic here.
|
|
|
|
bigint numerator = abs(m_value.numerator());
|
|
|
|
bigint denominator = abs(m_value.denominator());
|
|
|
|
if (m_value < 0)
|
|
|
|
return "t_rational_minus_" + numerator.str() + "_by_" + denominator.str();
|
|
|
|
else
|
|
|
|
return "t_rational_" + numerator.str() + "_by_" + denominator.str();
|
2017-01-17 09:47:44 +00:00
|
|
|
}
|
|
|
|
|
2016-03-29 20:08:51 +00:00
|
|
|
bool RationalNumberType::operator==(Type const& _other) const
|
2014-12-19 10:31:17 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_other.category() != category())
|
2014-12-19 10:31:17 +00:00
|
|
|
return false;
|
2016-03-29 20:08:51 +00:00
|
|
|
RationalNumberType const& other = dynamic_cast<RationalNumberType const&>(_other);
|
2016-02-18 22:39:11 +00:00
|
|
|
return m_value == other.m_value;
|
2014-12-19 10:31:17 +00:00
|
|
|
}
|
|
|
|
|
2018-02-13 10:43:47 +00:00
|
|
|
string RationalNumberType::bigintToReadableString(dev::bigint const& _num)
|
2017-12-19 15:45:04 +00:00
|
|
|
{
|
|
|
|
string str = _num.str();
|
2018-02-13 10:43:47 +00:00
|
|
|
if (str.size() > 32)
|
2017-12-19 15:45:04 +00:00
|
|
|
{
|
|
|
|
int omitted = str.size() - 8;
|
2018-02-13 10:43:47 +00:00
|
|
|
str = str.substr(0, 4) + "...(" + to_string(omitted) + " digits omitted)..." + str.substr(str.size() - 4, 4);
|
2017-12-19 15:45:04 +00:00
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2018-02-13 10:43:47 +00:00
|
|
|
string RationalNumberType::toString(bool) const
|
2014-12-19 10:31:17 +00:00
|
|
|
{
|
2016-05-10 12:30:24 +00:00
|
|
|
if (!isFractional())
|
2018-02-13 10:43:47 +00:00
|
|
|
return "int_const " + bigintToReadableString(m_value.numerator());
|
2017-12-19 15:45:04 +00:00
|
|
|
|
2018-02-13 10:43:47 +00:00
|
|
|
string numerator = bigintToReadableString(m_value.numerator());
|
|
|
|
string denominator = bigintToReadableString(m_value.denominator());
|
|
|
|
return "rational_const " + numerator + " / " + denominator;
|
2014-12-19 10:31:17 +00:00
|
|
|
}
|
|
|
|
|
2016-03-29 20:08:51 +00:00
|
|
|
u256 RationalNumberType::literalValue(Literal const*) const
|
2014-12-19 10:31:17 +00:00
|
|
|
{
|
2016-05-10 11:31:10 +00:00
|
|
|
// We ignore the literal and hope that the type was correctly determined to represent
|
|
|
|
// its value.
|
|
|
|
|
2015-02-04 15:37:54 +00:00
|
|
|
u256 value;
|
2018-05-22 15:20:40 +00:00
|
|
|
bigint shiftedValue;
|
2016-05-05 22:47:08 +00:00
|
|
|
|
2016-05-10 12:30:24 +00:00
|
|
|
if (!isFractional())
|
2016-05-10 11:31:10 +00:00
|
|
|
shiftedValue = m_value.numerator();
|
|
|
|
else
|
2016-05-05 22:47:08 +00:00
|
|
|
{
|
|
|
|
auto fixed = fixedPointType();
|
2018-09-21 16:06:25 +00:00
|
|
|
solAssert(fixed, "Rational number cannot be represented as fixed point type.");
|
2017-07-12 13:44:27 +00:00
|
|
|
int fractionalDigits = fixed->fractionalDigits();
|
2018-05-04 04:18:34 +00:00
|
|
|
shiftedValue = m_value.numerator() * boost::multiprecision::pow(bigint(10), fractionalDigits) / m_value.denominator();
|
2016-05-05 22:47:08 +00:00
|
|
|
}
|
2016-05-10 11:31:10 +00:00
|
|
|
|
2014-12-19 10:31:17 +00:00
|
|
|
// we ignore the literal and hope that the type was correctly determined
|
2018-09-21 16:06:25 +00:00
|
|
|
solAssert(shiftedValue <= u256(-1), "Number constant too large.");
|
2016-04-08 06:19:20 +00:00
|
|
|
solAssert(shiftedValue >= -(bigint(1) << 255), "Number constant too small.");
|
2015-02-04 15:37:54 +00:00
|
|
|
|
2017-03-10 01:04:26 +00:00
|
|
|
if (m_value >= rational(0))
|
2016-04-08 06:19:20 +00:00
|
|
|
value = u256(shiftedValue);
|
2014-12-19 10:31:17 +00:00
|
|
|
else
|
2016-04-12 17:36:34 +00:00
|
|
|
value = s2u(s256(shiftedValue));
|
2015-02-04 15:37:54 +00:00
|
|
|
return value;
|
2014-12-19 10:31:17 +00:00
|
|
|
}
|
|
|
|
|
2016-03-29 20:08:51 +00:00
|
|
|
TypePointer RationalNumberType::mobileType() const
|
2015-02-06 12:42:51 +00:00
|
|
|
{
|
2016-05-10 12:30:24 +00:00
|
|
|
if (!isFractional())
|
2016-05-10 08:26:53 +00:00
|
|
|
return integerType();
|
|
|
|
else
|
|
|
|
return fixedPointType();
|
2015-02-06 12:42:51 +00:00
|
|
|
}
|
|
|
|
|
2016-03-29 20:08:51 +00:00
|
|
|
shared_ptr<IntegerType const> RationalNumberType::integerType() const
|
2014-12-19 10:31:17 +00:00
|
|
|
{
|
2016-05-10 12:30:24 +00:00
|
|
|
solAssert(!isFractional(), "integerType() called for fractional number.");
|
|
|
|
bigint value = m_value.numerator();
|
2014-12-19 10:31:17 +00:00
|
|
|
bool negative = (value < 0);
|
|
|
|
if (negative) // convert to positive number of same bit requirements
|
2016-02-18 22:39:11 +00:00
|
|
|
value = ((0 - value) - 1) << 1;
|
2014-12-19 10:31:17 +00:00
|
|
|
if (value > u256(-1))
|
|
|
|
return shared_ptr<IntegerType const>();
|
|
|
|
else
|
2015-06-03 14:14:23 +00:00
|
|
|
return make_shared<IntegerType>(
|
|
|
|
max(bytesRequired(value), 1u) * 8,
|
|
|
|
negative ? IntegerType::Modifier::Signed : IntegerType::Modifier::Unsigned
|
|
|
|
);
|
2014-12-19 10:31:17 +00:00
|
|
|
}
|
|
|
|
|
2016-03-29 20:08:51 +00:00
|
|
|
shared_ptr<FixedPointType const> RationalNumberType::fixedPointType() const
|
2016-02-18 22:39:11 +00:00
|
|
|
{
|
2016-03-18 20:03:26 +00:00
|
|
|
bool negative = (m_value < 0);
|
2016-12-22 18:20:03 +00:00
|
|
|
unsigned fractionalDigits = 0;
|
2016-05-10 11:31:10 +00:00
|
|
|
rational value = abs(m_value); // We care about the sign later.
|
2018-05-22 15:20:40 +00:00
|
|
|
rational maxValue = negative ?
|
2016-05-10 12:57:29 +00:00
|
|
|
rational(bigint(1) << 255, 1):
|
|
|
|
rational((bigint(1) << 256) - 1, 1);
|
2016-04-12 17:36:34 +00:00
|
|
|
|
2016-12-22 18:20:03 +00:00
|
|
|
while (value * 10 <= maxValue && value.denominator() != 1 && fractionalDigits < 80)
|
2016-02-18 22:39:11 +00:00
|
|
|
{
|
2016-12-22 18:20:03 +00:00
|
|
|
value *= 10;
|
|
|
|
fractionalDigits++;
|
2016-04-08 06:19:20 +00:00
|
|
|
}
|
2018-05-22 15:20:40 +00:00
|
|
|
|
2016-04-11 23:12:11 +00:00
|
|
|
if (value > maxValue)
|
2016-04-08 06:19:20 +00:00
|
|
|
return shared_ptr<FixedPointType const>();
|
2017-07-12 13:44:27 +00:00
|
|
|
// This means we round towards zero for positive and negative values.
|
2016-05-05 22:47:08 +00:00
|
|
|
bigint v = value.numerator() / value.denominator();
|
2018-08-08 12:46:17 +00:00
|
|
|
|
|
|
|
if (negative && v != 0)
|
2016-05-10 11:31:10 +00:00
|
|
|
// modify value to satisfy bit requirements for negative numbers:
|
|
|
|
// add one bit for sign and decrement because negative numbers can be larger
|
2016-05-05 22:47:08 +00:00
|
|
|
v = (v - 1) << 1;
|
2016-05-10 12:07:11 +00:00
|
|
|
|
2016-05-05 22:47:08 +00:00
|
|
|
if (v > u256(-1))
|
2016-04-11 23:12:11 +00:00
|
|
|
return shared_ptr<FixedPointType const>();
|
2016-05-10 12:07:11 +00:00
|
|
|
|
2016-12-22 18:20:03 +00:00
|
|
|
unsigned totalBits = max(bytesRequired(v), 1u) * 8;
|
2016-05-10 12:07:11 +00:00
|
|
|
solAssert(totalBits <= 256, "");
|
2016-05-05 22:47:08 +00:00
|
|
|
|
2016-04-11 23:12:11 +00:00
|
|
|
return make_shared<FixedPointType>(
|
2016-12-22 18:20:03 +00:00
|
|
|
totalBits, fractionalDigits,
|
2016-04-11 23:12:11 +00:00
|
|
|
negative ? FixedPointType::Modifier::Signed : FixedPointType::Modifier::Unsigned
|
|
|
|
);
|
2016-02-18 22:39:11 +00:00
|
|
|
}
|
|
|
|
|
2015-07-07 23:13:56 +00:00
|
|
|
StringLiteralType::StringLiteralType(Literal const& _literal):
|
2015-08-31 16:44:29 +00:00
|
|
|
m_value(_literal.value())
|
2015-07-07 23:13:56 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult StringLiteralType::isImplicitlyConvertibleTo(Type const& _convertTo) const
|
2015-07-07 23:13:56 +00:00
|
|
|
{
|
|
|
|
if (auto fixedBytes = dynamic_cast<FixedBytesType const*>(&_convertTo))
|
|
|
|
return size_t(fixedBytes->numBytes()) >= m_value.size();
|
|
|
|
else if (auto arrayType = dynamic_cast<ArrayType const*>(&_convertTo))
|
2015-09-23 15:26:17 +00:00
|
|
|
return
|
|
|
|
arrayType->isByteArray() &&
|
2016-11-25 12:36:06 +00:00
|
|
|
!(arrayType->dataStoredIn(DataLocation::Storage) && arrayType->isPointer()) &&
|
2016-11-25 13:36:44 +00:00
|
|
|
!(arrayType->isString() && !isValidUTF8());
|
2015-07-07 23:13:56 +00:00
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-02-23 17:32:46 +00:00
|
|
|
string StringLiteralType::richIdentifier() const
|
2017-01-17 09:47:44 +00:00
|
|
|
{
|
|
|
|
// Since we have to return a valid identifier and the string itself may contain
|
|
|
|
// anything, we hash it.
|
|
|
|
return "t_stringliteral_" + toHex(keccak256(m_value).asBytes());
|
|
|
|
}
|
|
|
|
|
2015-07-07 23:13:56 +00:00
|
|
|
bool StringLiteralType::operator==(const Type& _other) const
|
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_other.category() != category())
|
2015-07-07 23:13:56 +00:00
|
|
|
return false;
|
|
|
|
return m_value == dynamic_cast<StringLiteralType const&>(_other).m_value;
|
|
|
|
}
|
|
|
|
|
2016-08-05 09:48:09 +00:00
|
|
|
std::string StringLiteralType::toString(bool) const
|
|
|
|
{
|
2016-08-08 18:12:52 +00:00
|
|
|
size_t invalidSequence;
|
2016-08-05 17:27:44 +00:00
|
|
|
|
2016-11-28 22:07:55 +00:00
|
|
|
if (!dev::validateUTF8(m_value, invalidSequence))
|
2016-08-05 17:27:44 +00:00
|
|
|
return "literal_string (contains invalid UTF-8 sequence at position " + dev::toString(invalidSequence) + ")";
|
|
|
|
|
2016-08-05 09:48:09 +00:00
|
|
|
return "literal_string \"" + m_value + "\"";
|
|
|
|
}
|
|
|
|
|
2015-07-07 23:13:56 +00:00
|
|
|
TypePointer StringLiteralType::mobileType() const
|
|
|
|
{
|
|
|
|
return make_shared<ArrayType>(DataLocation::Memory, true);
|
|
|
|
}
|
|
|
|
|
2016-11-25 12:36:06 +00:00
|
|
|
bool StringLiteralType::isValidUTF8() const
|
|
|
|
{
|
2016-11-28 22:07:55 +00:00
|
|
|
return dev::validateUTF8(m_value);
|
2016-11-25 12:36:06 +00:00
|
|
|
}
|
|
|
|
|
2018-05-01 05:58:04 +00:00
|
|
|
FixedBytesType::FixedBytesType(unsigned _bytes): m_bytes(_bytes)
|
2014-12-09 17:46:18 +00:00
|
|
|
{
|
2018-04-30 11:23:30 +00:00
|
|
|
solAssert(
|
|
|
|
m_bytes > 0 && m_bytes <= 32,
|
|
|
|
"Invalid byte number for fixed bytes type: " + dev::toString(m_bytes)
|
|
|
|
);
|
2014-12-09 17:46:18 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult FixedBytesType::isImplicitlyConvertibleTo(Type const& _convertTo) const
|
2014-12-09 17:46:18 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_convertTo.category() != category())
|
2014-12-09 17:46:18 +00:00
|
|
|
return false;
|
2015-03-05 15:54:55 +00:00
|
|
|
FixedBytesType const& convertTo = dynamic_cast<FixedBytesType const&>(_convertTo);
|
2014-12-09 17:46:18 +00:00
|
|
|
return convertTo.m_bytes >= m_bytes;
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult FixedBytesType::isExplicitlyConvertibleTo(Type const& _convertTo) const
|
2015-01-23 16:36:12 +00:00
|
|
|
{
|
2018-05-08 12:26:01 +00:00
|
|
|
return (_convertTo.category() == Category::Integer && numBytes() * 8 == dynamic_cast<IntegerType const&>(_convertTo).numBits()) ||
|
2018-09-03 15:45:58 +00:00
|
|
|
(_convertTo.category() == Category::Address && numBytes() == 20) ||
|
2016-05-10 10:43:05 +00:00
|
|
|
_convertTo.category() == Category::FixedPoint ||
|
2015-08-31 16:44:29 +00:00
|
|
|
_convertTo.category() == category();
|
2015-01-23 16:36:12 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
TypeResult FixedBytesType::unaryOperatorResult(Token _operator) const
|
2015-03-05 15:54:55 +00:00
|
|
|
{
|
|
|
|
// "delete" and "~" is okay for FixedBytesType
|
|
|
|
if (_operator == Token::Delete)
|
2018-05-07 22:31:34 +00:00
|
|
|
return TypeResult(make_shared<TupleType>());
|
2015-03-05 15:54:55 +00:00
|
|
|
else if (_operator == Token::BitNot)
|
|
|
|
return shared_from_this();
|
|
|
|
|
|
|
|
return TypePointer();
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
TypeResult FixedBytesType::binaryOperatorResult(Token _operator, TypePointer const& _other) const
|
2015-03-05 15:54:55 +00:00
|
|
|
{
|
2018-10-22 14:48:21 +00:00
|
|
|
if (TokenTraits::isShiftOp(_operator))
|
2016-12-05 17:40:50 +00:00
|
|
|
{
|
2016-12-06 22:45:17 +00:00
|
|
|
if (isValidShiftAndAmountType(_operator, *_other))
|
|
|
|
return shared_from_this();
|
|
|
|
else
|
2016-12-05 17:40:50 +00:00
|
|
|
return TypePointer();
|
|
|
|
}
|
|
|
|
|
2015-03-05 15:54:55 +00:00
|
|
|
auto commonType = dynamic_pointer_cast<FixedBytesType const>(Type::commonType(shared_from_this(), _other));
|
|
|
|
if (!commonType)
|
|
|
|
return TypePointer();
|
|
|
|
|
|
|
|
// FixedBytes can be compared and have bitwise operators applied to them
|
2018-10-22 14:48:21 +00:00
|
|
|
if (TokenTraits::isCompareOp(_operator) || TokenTraits::isBitOp(_operator))
|
2018-05-07 22:31:34 +00:00
|
|
|
return TypeResult(commonType);
|
2015-03-05 15:54:55 +00:00
|
|
|
|
|
|
|
return TypePointer();
|
|
|
|
}
|
|
|
|
|
2016-02-03 20:34:24 +00:00
|
|
|
MemberList::MemberMap FixedBytesType::nativeMembers(const ContractDefinition*) const
|
|
|
|
{
|
|
|
|
return MemberList::MemberMap{MemberList::Member{"length", make_shared<IntegerType>(8)}};
|
|
|
|
}
|
|
|
|
|
2018-02-23 17:32:46 +00:00
|
|
|
string FixedBytesType::richIdentifier() const
|
2017-01-17 09:47:44 +00:00
|
|
|
{
|
2018-08-08 14:26:30 +00:00
|
|
|
return "t_bytes" + to_string(m_bytes);
|
2017-01-17 09:47:44 +00:00
|
|
|
}
|
|
|
|
|
2015-03-05 15:54:55 +00:00
|
|
|
bool FixedBytesType::operator==(Type const& _other) const
|
2014-12-09 17:46:18 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_other.category() != category())
|
2014-12-09 17:46:18 +00:00
|
|
|
return false;
|
2015-03-05 15:54:55 +00:00
|
|
|
FixedBytesType const& other = dynamic_cast<FixedBytesType const&>(_other);
|
2014-12-09 17:46:18 +00:00
|
|
|
return other.m_bytes == m_bytes;
|
|
|
|
}
|
|
|
|
|
2014-12-19 10:31:17 +00:00
|
|
|
u256 BoolType::literalValue(Literal const* _literal) const
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
2014-12-19 10:31:17 +00:00
|
|
|
solAssert(_literal, "");
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_literal->token() == Token::TrueLiteral)
|
2014-10-30 00:20:32 +00:00
|
|
|
return u256(1);
|
2015-08-31 16:44:29 +00:00
|
|
|
else if (_literal->token() == Token::FalseLiteral)
|
2014-10-30 00:20:32 +00:00
|
|
|
return u256(0);
|
2014-10-20 10:41:56 +00:00
|
|
|
else
|
2017-07-19 01:19:00 +00:00
|
|
|
solAssert(false, "Bool type constructed from non-boolean literal.");
|
2014-10-20 10:41:56 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
TypeResult BoolType::unaryOperatorResult(Token _operator) const
|
2015-01-14 12:52:03 +00:00
|
|
|
{
|
2015-02-09 13:00:12 +00:00
|
|
|
if (_operator == Token::Delete)
|
2018-05-07 22:31:34 +00:00
|
|
|
return TypeResult(make_shared<TupleType>());
|
2015-02-09 13:00:12 +00:00
|
|
|
return (_operator == Token::Not) ? shared_from_this() : TypePointer();
|
2015-01-14 12:52:03 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
TypeResult BoolType::binaryOperatorResult(Token _operator, TypePointer const& _other) const
|
2014-12-18 17:53:43 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (category() != _other->category())
|
2014-12-18 17:53:43 +00:00
|
|
|
return TypePointer();
|
2018-04-27 09:35:58 +00:00
|
|
|
if (_operator == Token::Equal || _operator == Token::NotEqual || _operator == Token::And || _operator == Token::Or)
|
2015-01-06 17:55:31 +00:00
|
|
|
return _other;
|
2014-12-18 17:53:43 +00:00
|
|
|
else
|
|
|
|
return TypePointer();
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult ContractType::isImplicitlyConvertibleTo(Type const& _convertTo) const
|
2014-11-20 17:33:23 +00:00
|
|
|
{
|
2015-01-07 21:54:56 +00:00
|
|
|
if (*this == _convertTo)
|
2014-11-20 17:33:23 +00:00
|
|
|
return true;
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_convertTo.category() == Category::Contract)
|
2015-01-19 22:34:49 +00:00
|
|
|
{
|
2015-09-16 14:56:30 +00:00
|
|
|
auto const& bases = contractDefinition().annotation().linearizedBaseContracts;
|
2015-01-27 13:32:59 +00:00
|
|
|
if (m_super && bases.size() <= 1)
|
|
|
|
return false;
|
2018-06-19 19:32:03 +00:00
|
|
|
return find(
|
|
|
|
m_super ? ++bases.begin() : bases.begin(), bases.end(),
|
|
|
|
&dynamic_cast<ContractType const&>(_convertTo).contractDefinition()
|
|
|
|
) != bases.end();
|
2015-01-19 22:34:49 +00:00
|
|
|
}
|
2014-11-20 17:33:23 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult ContractType::isExplicitlyConvertibleTo(Type const& _convertTo) const
|
2015-01-07 21:54:56 +00:00
|
|
|
{
|
2018-09-05 15:59:55 +00:00
|
|
|
if (auto const* addressType = dynamic_cast<AddressType const*>(&_convertTo))
|
|
|
|
return isPayable() || (addressType->stateMutability() < StateMutability::Payable);
|
|
|
|
return isImplicitlyConvertibleTo(_convertTo);
|
2015-01-07 21:54:56 +00:00
|
|
|
}
|
|
|
|
|
2017-07-09 01:42:42 +00:00
|
|
|
bool ContractType::isPayable() const
|
|
|
|
{
|
|
|
|
auto fallbackFunction = m_contract.fallbackFunction();
|
|
|
|
return fallbackFunction && fallbackFunction->isPayable();
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
TypeResult ContractType::unaryOperatorResult(Token _operator) const
|
2015-01-14 12:52:03 +00:00
|
|
|
{
|
2018-03-16 15:06:40 +00:00
|
|
|
if (isSuper())
|
|
|
|
return TypePointer{};
|
2015-10-09 17:35:41 +00:00
|
|
|
return _operator == Token::Delete ? make_shared<TupleType>() : TypePointer();
|
2015-01-14 12:52:03 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
TypeResult ReferenceType::unaryOperatorResult(Token _operator) const
|
2015-06-26 17:14:26 +00:00
|
|
|
{
|
|
|
|
if (_operator != Token::Delete)
|
|
|
|
return TypePointer();
|
|
|
|
// delete can be used on everything except calldata references or storage pointers
|
|
|
|
// (storage references are ok)
|
|
|
|
switch (location())
|
|
|
|
{
|
|
|
|
case DataLocation::CallData:
|
|
|
|
return TypePointer();
|
|
|
|
case DataLocation::Memory:
|
2018-05-07 22:31:34 +00:00
|
|
|
return TypeResult(make_shared<TupleType>());
|
2015-06-26 17:14:26 +00:00
|
|
|
case DataLocation::Storage:
|
2015-10-09 17:35:41 +00:00
|
|
|
return m_isPointer ? TypePointer() : make_shared<TupleType>();
|
2015-06-26 17:14:26 +00:00
|
|
|
}
|
2015-06-29 11:23:02 +00:00
|
|
|
return TypePointer();
|
2015-06-26 17:14:26 +00:00
|
|
|
}
|
|
|
|
|
2015-06-17 10:01:39 +00:00
|
|
|
TypePointer ReferenceType::copyForLocationIfReference(DataLocation _location, TypePointer const& _type)
|
2015-06-09 12:26:08 +00:00
|
|
|
{
|
|
|
|
if (auto type = dynamic_cast<ReferenceType const*>(_type.get()))
|
|
|
|
return type->copyForLocation(_location, false);
|
|
|
|
return _type;
|
|
|
|
}
|
|
|
|
|
|
|
|
TypePointer ReferenceType::copyForLocationIfReference(TypePointer const& _type) const
|
|
|
|
{
|
|
|
|
return copyForLocationIfReference(m_location, _type);
|
|
|
|
}
|
|
|
|
|
|
|
|
string ReferenceType::stringForReferencePart() const
|
|
|
|
{
|
|
|
|
switch (m_location)
|
|
|
|
{
|
2015-06-17 10:01:39 +00:00
|
|
|
case DataLocation::Storage:
|
2015-06-09 12:26:08 +00:00
|
|
|
return string("storage ") + (m_isPointer ? "pointer" : "ref");
|
2015-06-17 10:01:39 +00:00
|
|
|
case DataLocation::CallData:
|
2015-06-09 12:26:08 +00:00
|
|
|
return "calldata";
|
2015-06-17 10:01:39 +00:00
|
|
|
case DataLocation::Memory:
|
2015-06-09 12:26:08 +00:00
|
|
|
return "memory";
|
|
|
|
}
|
2015-06-12 08:48:47 +00:00
|
|
|
solAssert(false, "");
|
|
|
|
return "";
|
2015-06-09 12:26:08 +00:00
|
|
|
}
|
|
|
|
|
2017-01-17 09:47:44 +00:00
|
|
|
string ReferenceType::identifierLocationSuffix() const
|
|
|
|
{
|
|
|
|
string id;
|
2018-05-23 04:31:20 +00:00
|
|
|
switch (location())
|
|
|
|
{
|
|
|
|
case DataLocation::Storage:
|
2017-01-17 09:47:44 +00:00
|
|
|
id += "_storage";
|
2018-05-23 04:31:20 +00:00
|
|
|
break;
|
|
|
|
case DataLocation::Memory:
|
2017-01-17 09:47:44 +00:00
|
|
|
id += "_memory";
|
2018-05-23 04:31:20 +00:00
|
|
|
break;
|
|
|
|
case DataLocation::CallData:
|
2017-01-17 09:47:44 +00:00
|
|
|
id += "_calldata";
|
2018-05-23 04:31:20 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-01-17 09:47:44 +00:00
|
|
|
if (isPointer())
|
|
|
|
id += "_ptr";
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult ArrayType::isImplicitlyConvertibleTo(const Type& _convertTo) const
|
2015-02-10 08:00:50 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_convertTo.category() != category())
|
2015-02-27 13:50:06 +00:00
|
|
|
return false;
|
|
|
|
auto& convertTo = dynamic_cast<ArrayType const&>(_convertTo);
|
2015-05-28 14:20:50 +00:00
|
|
|
if (convertTo.isByteArray() != isByteArray() || convertTo.isString() != isString())
|
2015-02-27 13:50:06 +00:00
|
|
|
return false;
|
2015-06-09 12:26:08 +00:00
|
|
|
// memory/calldata to storage can be converted, but only to a direct storage reference
|
2015-06-17 10:01:39 +00:00
|
|
|
if (convertTo.location() == DataLocation::Storage && location() != DataLocation::Storage && convertTo.isPointer())
|
2015-02-27 13:50:06 +00:00
|
|
|
return false;
|
2015-06-17 10:01:39 +00:00
|
|
|
if (convertTo.location() == DataLocation::CallData && location() != convertTo.location())
|
2015-06-09 12:26:08 +00:00
|
|
|
return false;
|
2015-06-17 10:01:39 +00:00
|
|
|
if (convertTo.location() == DataLocation::Storage && !convertTo.isPointer())
|
2015-06-09 12:26:08 +00:00
|
|
|
{
|
|
|
|
// Less restrictive conversion, since we need to copy anyway.
|
2015-08-31 16:44:29 +00:00
|
|
|
if (!baseType()->isImplicitlyConvertibleTo(*convertTo.baseType()))
|
2015-06-09 12:26:08 +00:00
|
|
|
return false;
|
|
|
|
if (convertTo.isDynamicallySized())
|
|
|
|
return true;
|
2015-08-31 16:44:29 +00:00
|
|
|
return !isDynamicallySized() && convertTo.length() >= length();
|
2015-06-09 12:26:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-06-23 12:55:33 +00:00
|
|
|
// Conversion to storage pointer or to memory, we de not copy element-for-element here, so
|
|
|
|
// require that the base type is the same, not only convertible.
|
|
|
|
// This disallows assignment of nested dynamic arrays from storage to memory for now.
|
|
|
|
if (
|
2015-08-31 16:44:29 +00:00
|
|
|
*copyForLocationIfReference(location(), baseType()) !=
|
|
|
|
*copyForLocationIfReference(location(), convertTo.baseType())
|
2015-06-23 12:55:33 +00:00
|
|
|
)
|
2015-06-09 12:26:08 +00:00
|
|
|
return false;
|
|
|
|
if (isDynamicallySized() != convertTo.isDynamicallySized())
|
|
|
|
return false;
|
|
|
|
// We also require that the size is the same.
|
2015-08-31 16:44:29 +00:00
|
|
|
if (!isDynamicallySized() && length() != convertTo.length())
|
2015-06-09 12:26:08 +00:00
|
|
|
return false;
|
2015-02-27 13:50:06 +00:00
|
|
|
return true;
|
2015-06-09 12:26:08 +00:00
|
|
|
}
|
2015-02-10 08:00:50 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult ArrayType::isExplicitlyConvertibleTo(const Type& _convertTo) const
|
2015-08-04 09:06:57 +00:00
|
|
|
{
|
|
|
|
if (isImplicitlyConvertibleTo(_convertTo))
|
|
|
|
return true;
|
|
|
|
// allow conversion bytes <-> string
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_convertTo.category() != category())
|
2015-08-04 09:06:57 +00:00
|
|
|
return false;
|
|
|
|
auto& convertTo = dynamic_cast<ArrayType const&>(_convertTo);
|
|
|
|
if (convertTo.location() != location())
|
|
|
|
return false;
|
|
|
|
if (!isByteArray() || !convertTo.isByteArray())
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-23 17:32:46 +00:00
|
|
|
string ArrayType::richIdentifier() const
|
2017-01-17 09:47:44 +00:00
|
|
|
{
|
|
|
|
string id;
|
|
|
|
if (isString())
|
2017-01-19 12:18:56 +00:00
|
|
|
id = "t_string";
|
2017-01-17 09:47:44 +00:00
|
|
|
else if (isByteArray())
|
2017-01-19 12:18:56 +00:00
|
|
|
id = "t_bytes";
|
2017-01-17 09:47:44 +00:00
|
|
|
else
|
|
|
|
{
|
2017-01-19 12:18:56 +00:00
|
|
|
id = "t_array";
|
|
|
|
id += identifierList(baseType());
|
2017-01-17 09:47:44 +00:00
|
|
|
if (isDynamicallySized())
|
2017-01-19 12:18:56 +00:00
|
|
|
id += "dyn";
|
2017-01-17 09:47:44 +00:00
|
|
|
else
|
2017-01-19 12:18:56 +00:00
|
|
|
id += length().str();
|
2017-01-17 09:47:44 +00:00
|
|
|
}
|
|
|
|
id += identifierLocationSuffix();
|
|
|
|
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2015-02-20 14:52:30 +00:00
|
|
|
bool ArrayType::operator==(Type const& _other) const
|
2015-02-09 17:45:00 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_other.category() != category())
|
2015-02-09 17:45:00 +00:00
|
|
|
return false;
|
2015-02-20 14:52:30 +00:00
|
|
|
ArrayType const& other = dynamic_cast<ArrayType const&>(_other);
|
2015-05-28 14:20:50 +00:00
|
|
|
if (
|
2015-06-09 12:26:08 +00:00
|
|
|
!ReferenceType::operator==(other) ||
|
2015-05-28 14:20:50 +00:00
|
|
|
other.isByteArray() != isByteArray() ||
|
|
|
|
other.isString() != isString() ||
|
|
|
|
other.isDynamicallySized() != isDynamicallySized()
|
|
|
|
)
|
2015-02-27 13:50:06 +00:00
|
|
|
return false;
|
2015-12-18 12:56:37 +00:00
|
|
|
if (*other.baseType() != *baseType())
|
|
|
|
return false;
|
2017-01-17 09:47:44 +00:00
|
|
|
return isDynamicallySized() || length() == other.length();
|
2015-02-09 17:45:00 +00:00
|
|
|
}
|
|
|
|
|
2017-07-11 20:56:09 +00:00
|
|
|
bool ArrayType::validForCalldata() const
|
|
|
|
{
|
2018-10-10 15:06:48 +00:00
|
|
|
if (auto arrayBaseType = dynamic_cast<ArrayType const*>(baseType().get()))
|
|
|
|
if (!arrayBaseType->validForCalldata())
|
|
|
|
return false;
|
2017-07-11 20:56:09 +00:00
|
|
|
return unlimitedCalldataEncodedSize(true) <= numeric_limits<unsigned>::max();
|
|
|
|
}
|
|
|
|
|
|
|
|
bigint ArrayType::unlimitedCalldataEncodedSize(bool _padded) const
|
2015-03-03 10:28:56 +00:00
|
|
|
{
|
|
|
|
if (isDynamicallySized())
|
2015-11-24 13:54:37 +00:00
|
|
|
return 32;
|
2015-08-31 16:44:29 +00:00
|
|
|
bigint size = bigint(length()) * (isByteArray() ? 1 : baseType()->calldataEncodedSize(_padded));
|
2015-03-05 17:22:17 +00:00
|
|
|
size = ((size + 31) / 32) * 32;
|
2017-07-11 20:56:09 +00:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned ArrayType::calldataEncodedSize(bool _padded) const
|
|
|
|
{
|
|
|
|
bigint size = unlimitedCalldataEncodedSize(_padded);
|
2015-03-03 10:28:56 +00:00
|
|
|
solAssert(size <= numeric_limits<unsigned>::max(), "Array size does not fit unsigned.");
|
|
|
|
return unsigned(size);
|
|
|
|
}
|
|
|
|
|
2017-08-07 10:41:45 +00:00
|
|
|
bool ArrayType::isDynamicallyEncoded() const
|
|
|
|
{
|
|
|
|
return isDynamicallySized() || baseType()->isDynamicallyEncoded();
|
|
|
|
}
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
u256 ArrayType::storageSize() const
|
2015-02-22 18:15:41 +00:00
|
|
|
{
|
|
|
|
if (isDynamicallySized())
|
|
|
|
return 1;
|
2015-03-16 16:52:19 +00:00
|
|
|
|
|
|
|
bigint size;
|
2015-08-31 16:44:29 +00:00
|
|
|
unsigned baseBytes = baseType()->storageBytes();
|
2015-03-16 16:52:19 +00:00
|
|
|
if (baseBytes == 0)
|
|
|
|
size = 1;
|
|
|
|
else if (baseBytes < 32)
|
2015-02-22 18:15:41 +00:00
|
|
|
{
|
2015-03-16 16:52:19 +00:00
|
|
|
unsigned itemsPerSlot = 32 / baseBytes;
|
2015-08-31 16:44:29 +00:00
|
|
|
size = (bigint(length()) + (itemsPerSlot - 1)) / itemsPerSlot;
|
2015-02-22 18:15:41 +00:00
|
|
|
}
|
2015-03-16 16:52:19 +00:00
|
|
|
else
|
2015-08-31 16:44:29 +00:00
|
|
|
size = bigint(length()) * baseType()->storageSize();
|
2015-03-16 16:52:19 +00:00
|
|
|
if (size >= bigint(1) << 256)
|
2015-10-02 12:41:40 +00:00
|
|
|
BOOST_THROW_EXCEPTION(Error(Error::Type::TypeError) << errinfo_comment("Array too large for storage."));
|
2015-03-16 16:52:19 +00:00
|
|
|
return max<u256>(1, u256(size));
|
2015-02-22 18:15:41 +00:00
|
|
|
}
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
unsigned ArrayType::sizeOnStack() const
|
2015-02-10 13:57:01 +00:00
|
|
|
{
|
2015-06-17 10:01:39 +00:00
|
|
|
if (m_location == DataLocation::CallData)
|
2015-03-03 10:28:56 +00:00
|
|
|
// offset [length] (stack top)
|
|
|
|
return 1 + (isDynamicallySized() ? 1 : 0);
|
2015-02-10 13:57:01 +00:00
|
|
|
else
|
2015-07-14 09:58:16 +00:00
|
|
|
// storage slot or memory offset
|
|
|
|
// byte offset inside storage value is omitted
|
2015-02-10 13:57:01 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-06-09 12:26:08 +00:00
|
|
|
string ArrayType::toString(bool _short) const
|
2015-02-16 16:33:13 +00:00
|
|
|
{
|
2015-06-09 12:26:08 +00:00
|
|
|
string ret;
|
2015-05-28 14:20:50 +00:00
|
|
|
if (isString())
|
2015-06-09 12:26:08 +00:00
|
|
|
ret = "string";
|
2015-05-28 14:20:50 +00:00
|
|
|
else if (isByteArray())
|
2015-06-09 12:26:08 +00:00
|
|
|
ret = "bytes";
|
|
|
|
else
|
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
ret = baseType()->toString(_short) + "[";
|
2015-06-09 12:26:08 +00:00
|
|
|
if (!isDynamicallySized())
|
2015-08-31 16:44:29 +00:00
|
|
|
ret += length().str();
|
2015-06-09 12:26:08 +00:00
|
|
|
ret += "]";
|
|
|
|
}
|
|
|
|
if (!_short)
|
|
|
|
ret += " " + stringForReferencePart();
|
|
|
|
return ret;
|
2015-02-20 14:52:30 +00:00
|
|
|
}
|
|
|
|
|
2017-06-08 09:14:58 +00:00
|
|
|
string ArrayType::canonicalName() const
|
2015-10-05 15:19:23 +00:00
|
|
|
{
|
|
|
|
string ret;
|
|
|
|
if (isString())
|
|
|
|
ret = "string";
|
|
|
|
else if (isByteArray())
|
|
|
|
ret = "bytes";
|
|
|
|
else
|
|
|
|
{
|
2017-06-08 09:14:58 +00:00
|
|
|
ret = baseType()->canonicalName() + "[";
|
2015-10-05 15:19:23 +00:00
|
|
|
if (!isDynamicallySized())
|
|
|
|
ret += length().str();
|
|
|
|
ret += "]";
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-06-08 09:14:58 +00:00
|
|
|
string ArrayType::signatureInExternalFunction(bool _structsByName) const
|
|
|
|
{
|
|
|
|
if (isByteArray())
|
|
|
|
return canonicalName();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
solAssert(baseType(), "");
|
|
|
|
return
|
|
|
|
baseType()->signatureInExternalFunction(_structsByName) +
|
|
|
|
"[" +
|
|
|
|
(isDynamicallySized() ? "" : length().str()) +
|
|
|
|
"]";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-25 13:23:35 +00:00
|
|
|
MemberList::MemberMap ArrayType::nativeMembers(ContractDefinition const*) const
|
2015-10-13 14:55:59 +00:00
|
|
|
{
|
2015-11-25 13:23:35 +00:00
|
|
|
MemberList::MemberMap members;
|
|
|
|
if (!isString())
|
2015-10-13 14:55:59 +00:00
|
|
|
{
|
2015-11-25 13:23:35 +00:00
|
|
|
members.push_back({"length", make_shared<IntegerType>(256)});
|
|
|
|
if (isDynamicallySized() && location() == DataLocation::Storage)
|
2018-03-09 16:46:24 +00:00
|
|
|
{
|
2015-11-25 13:23:35 +00:00
|
|
|
members.push_back({"push", make_shared<FunctionType>(
|
|
|
|
TypePointers{baseType()},
|
|
|
|
TypePointers{make_shared<IntegerType>(256)},
|
|
|
|
strings{string()},
|
|
|
|
strings{string()},
|
2017-03-16 11:58:17 +00:00
|
|
|
isByteArray() ? FunctionType::Kind::ByteArrayPush : FunctionType::Kind::ArrayPush
|
2015-11-25 13:23:35 +00:00
|
|
|
)});
|
2018-03-09 16:46:24 +00:00
|
|
|
members.push_back({"pop", make_shared<FunctionType>(
|
|
|
|
TypePointers{},
|
|
|
|
TypePointers{},
|
|
|
|
strings{string()},
|
|
|
|
strings{string()},
|
2018-04-04 16:21:06 +00:00
|
|
|
FunctionType::Kind::ArrayPop
|
2018-03-09 16:46:24 +00:00
|
|
|
)});
|
|
|
|
}
|
2015-10-13 14:55:59 +00:00
|
|
|
}
|
2015-11-25 13:23:35 +00:00
|
|
|
return members;
|
2015-10-13 14:55:59 +00:00
|
|
|
}
|
|
|
|
|
2015-10-02 11:11:38 +00:00
|
|
|
TypePointer ArrayType::encodingType() const
|
2015-03-19 15:48:54 +00:00
|
|
|
{
|
2015-10-02 11:11:38 +00:00
|
|
|
if (location() == DataLocation::Storage)
|
|
|
|
return make_shared<IntegerType>(256);
|
|
|
|
else
|
|
|
|
return this->copyForLocation(DataLocation::Memory, true);
|
|
|
|
}
|
|
|
|
|
2015-10-02 20:34:47 +00:00
|
|
|
TypePointer ArrayType::decodingType() const
|
|
|
|
{
|
|
|
|
if (location() == DataLocation::Storage)
|
|
|
|
return make_shared<IntegerType>(256);
|
|
|
|
else
|
|
|
|
return shared_from_this();
|
|
|
|
}
|
|
|
|
|
2015-10-02 11:11:38 +00:00
|
|
|
TypePointer ArrayType::interfaceType(bool _inLibrary) const
|
|
|
|
{
|
2016-11-11 11:07:30 +00:00
|
|
|
// Note: This has to fulfill canBeUsedExternally(_inLibrary) == !!interfaceType(_inLibrary)
|
2015-10-02 11:11:38 +00:00
|
|
|
if (_inLibrary && location() == DataLocation::Storage)
|
|
|
|
return shared_from_this();
|
|
|
|
|
2015-05-28 14:20:50 +00:00
|
|
|
if (m_arrayKind != ArrayKind::Ordinary)
|
2015-06-24 15:25:36 +00:00
|
|
|
return this->copyForLocation(DataLocation::Memory, true);
|
2015-10-02 11:11:38 +00:00
|
|
|
TypePointer baseExt = m_baseType->interfaceType(_inLibrary);
|
2015-06-26 14:52:30 +00:00
|
|
|
if (!baseExt)
|
2015-03-19 15:48:54 +00:00
|
|
|
return TypePointer();
|
|
|
|
|
2015-03-20 16:02:24 +00:00
|
|
|
if (isDynamicallySized())
|
2016-02-18 12:29:02 +00:00
|
|
|
return make_shared<ArrayType>(DataLocation::Memory, baseExt);
|
2015-03-19 15:48:54 +00:00
|
|
|
else
|
2016-02-18 12:29:02 +00:00
|
|
|
return make_shared<ArrayType>(DataLocation::Memory, baseExt, m_length);
|
2015-03-19 15:48:54 +00:00
|
|
|
}
|
|
|
|
|
2016-11-11 11:07:30 +00:00
|
|
|
bool ArrayType::canBeUsedExternally(bool _inLibrary) const
|
|
|
|
{
|
|
|
|
// Note: This has to fulfill canBeUsedExternally(_inLibrary) == !!interfaceType(_inLibrary)
|
|
|
|
if (_inLibrary && location() == DataLocation::Storage)
|
|
|
|
return true;
|
|
|
|
else if (m_arrayKind != ArrayKind::Ordinary)
|
|
|
|
return true;
|
|
|
|
else if (!m_baseType->canBeUsedExternally(_inLibrary))
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-09-23 15:31:37 +00:00
|
|
|
u256 ArrayType::memorySize() const
|
|
|
|
{
|
|
|
|
solAssert(!isDynamicallySized(), "");
|
|
|
|
solAssert(m_location == DataLocation::Memory, "");
|
2015-09-24 08:51:06 +00:00
|
|
|
bigint size = bigint(m_length) * m_baseType->memoryHeadSize();
|
|
|
|
solAssert(size <= numeric_limits<unsigned>::max(), "Array size does not fit u256.");
|
|
|
|
return u256(size);
|
2015-09-23 15:31:37 +00:00
|
|
|
}
|
|
|
|
|
2015-06-17 10:01:39 +00:00
|
|
|
TypePointer ArrayType::copyForLocation(DataLocation _location, bool _isPointer) const
|
2015-02-20 14:52:30 +00:00
|
|
|
{
|
|
|
|
auto copy = make_shared<ArrayType>(_location);
|
2015-06-09 12:26:08 +00:00
|
|
|
copy->m_isPointer = _isPointer;
|
2015-05-28 14:20:50 +00:00
|
|
|
copy->m_arrayKind = m_arrayKind;
|
2015-06-09 12:26:08 +00:00
|
|
|
copy->m_baseType = copy->copyForLocationIfReference(m_baseType);
|
2015-02-20 14:52:30 +00:00
|
|
|
copy->m_hasDynamicLength = m_hasDynamicLength;
|
|
|
|
copy->m_length = m_length;
|
|
|
|
return copy;
|
2015-02-16 16:33:13 +00:00
|
|
|
}
|
|
|
|
|
2018-02-23 17:32:46 +00:00
|
|
|
string ContractType::richIdentifier() const
|
2017-01-17 09:47:44 +00:00
|
|
|
{
|
2018-08-08 14:26:30 +00:00
|
|
|
return (m_super ? "t_super" : "t_contract") + parenthesizeUserIdentifier(m_contract.name()) + to_string(m_contract.id());
|
2017-01-17 09:47:44 +00:00
|
|
|
}
|
|
|
|
|
2014-10-29 18:28:30 +00:00
|
|
|
bool ContractType::operator==(Type const& _other) const
|
2014-10-20 10:41:56 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_other.category() != category())
|
2014-10-13 16:22:15 +00:00
|
|
|
return false;
|
2014-10-20 10:41:56 +00:00
|
|
|
ContractType const& other = dynamic_cast<ContractType const&>(_other);
|
2015-01-27 13:32:59 +00:00
|
|
|
return other.m_contract == m_contract && other.m_super == m_super;
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
|
2015-06-09 12:26:08 +00:00
|
|
|
string ContractType::toString(bool) const
|
2014-11-20 17:33:23 +00:00
|
|
|
{
|
2015-09-11 14:36:47 +00:00
|
|
|
return
|
|
|
|
string(m_contract.isLibrary() ? "library " : "contract ") +
|
|
|
|
string(m_super ? "super " : "") +
|
|
|
|
m_contract.name();
|
2014-11-20 17:33:23 +00:00
|
|
|
}
|
|
|
|
|
2017-06-08 09:14:58 +00:00
|
|
|
string ContractType::canonicalName() const
|
2015-10-05 15:19:23 +00:00
|
|
|
{
|
|
|
|
return m_contract.annotation().canonicalName;
|
|
|
|
}
|
|
|
|
|
2017-09-27 13:11:44 +00:00
|
|
|
MemberList::MemberMap ContractType::nativeMembers(ContractDefinition const* _contract) const
|
2014-12-04 18:38:24 +00:00
|
|
|
{
|
2017-09-25 11:58:32 +00:00
|
|
|
MemberList::MemberMap members;
|
2017-09-27 13:11:44 +00:00
|
|
|
solAssert(_contract, "");
|
2015-11-25 13:23:35 +00:00
|
|
|
if (m_super)
|
2014-12-04 18:38:24 +00:00
|
|
|
{
|
2015-11-25 13:23:35 +00:00
|
|
|
// add the most derived of all functions which are visible in derived contracts
|
2016-10-17 18:54:53 +00:00
|
|
|
auto bases = m_contract.annotation().linearizedBaseContracts;
|
2016-10-20 09:21:59 +00:00
|
|
|
solAssert(bases.size() >= 1, "linearizedBaseContracts should at least contain the most derived contract.");
|
|
|
|
// `sliced(1, ...)` ignores the most derived contract, which should not be searchable from `super`.
|
|
|
|
for (ContractDefinition const* base: bases | boost::adaptors::sliced(1, bases.size()))
|
2015-11-25 13:23:35 +00:00
|
|
|
for (FunctionDefinition const* function: base->definedFunctions())
|
|
|
|
{
|
2018-12-01 17:20:56 +00:00
|
|
|
if (!function->isVisibleInDerivedContracts() || !function->isImplemented())
|
2015-11-25 13:23:35 +00:00
|
|
|
continue;
|
2018-12-01 17:20:56 +00:00
|
|
|
|
2015-11-25 13:23:35 +00:00
|
|
|
auto functionType = make_shared<FunctionType>(*function, true);
|
|
|
|
bool functionWithEqualArgumentsFound = false;
|
|
|
|
for (auto const& member: members)
|
2015-04-15 15:40:50 +00:00
|
|
|
{
|
2015-11-25 13:23:35 +00:00
|
|
|
if (member.name != function->name())
|
2015-04-15 15:40:50 +00:00
|
|
|
continue;
|
2015-11-25 13:23:35 +00:00
|
|
|
auto memberType = dynamic_cast<FunctionType const*>(member.type.get());
|
|
|
|
solAssert(!!memberType, "Override changes type.");
|
2018-06-28 15:43:09 +00:00
|
|
|
if (!memberType->hasEqualParameterTypes(*functionType))
|
2015-11-25 13:23:35 +00:00
|
|
|
continue;
|
|
|
|
functionWithEqualArgumentsFound = true;
|
|
|
|
break;
|
2015-04-15 15:40:50 +00:00
|
|
|
}
|
2015-11-25 13:23:35 +00:00
|
|
|
if (!functionWithEqualArgumentsFound)
|
|
|
|
members.push_back(MemberList::Member(
|
|
|
|
function->name(),
|
|
|
|
functionType,
|
|
|
|
function
|
|
|
|
));
|
|
|
|
}
|
2014-12-04 18:38:24 +00:00
|
|
|
}
|
2016-04-26 23:02:10 +00:00
|
|
|
else if (!m_contract.isLibrary())
|
2015-12-18 14:56:26 +00:00
|
|
|
{
|
2015-11-25 13:23:35 +00:00
|
|
|
for (auto const& it: m_contract.interfaceFunctions())
|
|
|
|
members.push_back(MemberList::Member(
|
|
|
|
it.second->declaration().name(),
|
2018-11-22 13:41:07 +00:00
|
|
|
it.second->asCallableFunction(m_contract.isLibrary()),
|
2015-11-25 13:23:35 +00:00
|
|
|
&it.second->declaration()
|
|
|
|
));
|
2015-12-18 14:56:26 +00:00
|
|
|
}
|
2017-09-28 12:43:09 +00:00
|
|
|
return members;
|
|
|
|
}
|
|
|
|
|
2016-08-31 18:43:24 +00:00
|
|
|
shared_ptr<FunctionType const> const& ContractType::newExpressionType() const
|
2014-12-12 15:49:26 +00:00
|
|
|
{
|
|
|
|
if (!m_constructorType)
|
2016-08-31 18:43:24 +00:00
|
|
|
m_constructorType = FunctionType::newExpressionType(m_contract);
|
2014-12-12 15:49:26 +00:00
|
|
|
return m_constructorType;
|
|
|
|
}
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
vector<tuple<VariableDeclaration const*, u256, unsigned>> ContractType::stateVariables() const
|
2015-03-16 15:15:13 +00:00
|
|
|
{
|
|
|
|
vector<VariableDeclaration const*> variables;
|
2015-09-16 14:56:30 +00:00
|
|
|
for (ContractDefinition const* contract: boost::adaptors::reverse(m_contract.annotation().linearizedBaseContracts))
|
2015-11-23 22:57:17 +00:00
|
|
|
for (VariableDeclaration const* variable: contract->stateVariables())
|
2015-03-16 15:15:13 +00:00
|
|
|
if (!variable->isConstant())
|
2015-11-23 22:57:17 +00:00
|
|
|
variables.push_back(variable);
|
2015-03-16 15:15:13 +00:00
|
|
|
TypePointers types;
|
|
|
|
for (auto variable: variables)
|
2015-09-16 14:56:30 +00:00
|
|
|
types.push_back(variable->annotation().type);
|
2015-03-16 15:15:13 +00:00
|
|
|
StorageOffsets offsets;
|
|
|
|
offsets.computeOffsets(types);
|
|
|
|
|
|
|
|
vector<tuple<VariableDeclaration const*, u256, unsigned>> variablesAndOffsets;
|
|
|
|
for (size_t index = 0; index < variables.size(); ++index)
|
2015-08-31 16:44:29 +00:00
|
|
|
if (auto const* offset = offsets.offset(index))
|
2015-03-16 15:15:13 +00:00
|
|
|
variablesAndOffsets.push_back(make_tuple(variables[index], offset->first, offset->second));
|
|
|
|
return variablesAndOffsets;
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult StructType::isImplicitlyConvertibleTo(const Type& _convertTo) const
|
2015-06-09 12:26:08 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_convertTo.category() != category())
|
2015-06-09 12:26:08 +00:00
|
|
|
return false;
|
|
|
|
auto& convertTo = dynamic_cast<StructType const&>(_convertTo);
|
|
|
|
// memory/calldata to storage can be converted, but only to a direct storage reference
|
2015-06-17 10:01:39 +00:00
|
|
|
if (convertTo.location() == DataLocation::Storage && location() != DataLocation::Storage && convertTo.isPointer())
|
2015-06-09 12:26:08 +00:00
|
|
|
return false;
|
2015-06-17 10:01:39 +00:00
|
|
|
if (convertTo.location() == DataLocation::CallData && location() != convertTo.location())
|
2015-06-09 12:26:08 +00:00
|
|
|
return false;
|
|
|
|
return this->m_struct == convertTo.m_struct;
|
|
|
|
}
|
|
|
|
|
2018-02-23 17:32:46 +00:00
|
|
|
string StructType::richIdentifier() const
|
2017-01-17 09:47:44 +00:00
|
|
|
{
|
2018-08-08 14:26:30 +00:00
|
|
|
return "t_struct" + parenthesizeUserIdentifier(m_struct.name()) + to_string(m_struct.id()) + identifierLocationSuffix();
|
2017-01-17 09:47:44 +00:00
|
|
|
}
|
|
|
|
|
2014-10-29 18:28:30 +00:00
|
|
|
bool StructType::operator==(Type const& _other) const
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_other.category() != category())
|
2014-10-13 16:22:15 +00:00
|
|
|
return false;
|
2014-10-20 10:41:56 +00:00
|
|
|
StructType const& other = dynamic_cast<StructType const&>(_other);
|
2015-06-09 12:26:08 +00:00
|
|
|
return ReferenceType::operator==(other) && other.m_struct == m_struct;
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
unsigned StructType::calldataEncodedSize(bool _padded) const
|
2015-06-24 15:25:36 +00:00
|
|
|
{
|
|
|
|
unsigned size = 0;
|
2015-11-19 17:02:04 +00:00
|
|
|
for (auto const& member: members(nullptr))
|
2015-06-24 15:25:36 +00:00
|
|
|
if (!member.type->canLiveOutsideStorage())
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
unsigned memberSize = member.type->calldataEncodedSize(_padded);
|
2015-06-24 15:25:36 +00:00
|
|
|
if (memberSize == 0)
|
|
|
|
return 0;
|
|
|
|
size += memberSize;
|
|
|
|
}
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2017-08-07 10:41:45 +00:00
|
|
|
bool StructType::isDynamicallyEncoded() const
|
|
|
|
{
|
2017-08-24 13:20:49 +00:00
|
|
|
solAssert(!recursive(), "");
|
|
|
|
for (auto t: memoryMemberTypes())
|
|
|
|
{
|
|
|
|
solAssert(t, "Parameter should have external type.");
|
|
|
|
t = t->interfaceType(false);
|
|
|
|
if (t->isDynamicallyEncoded())
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2017-08-07 10:41:45 +00:00
|
|
|
}
|
|
|
|
|
2015-06-30 09:54:51 +00:00
|
|
|
u256 StructType::memorySize() const
|
|
|
|
{
|
|
|
|
u256 size;
|
2017-06-08 09:14:58 +00:00
|
|
|
for (auto const& t: memoryMemberTypes())
|
|
|
|
size += t->memoryHeadSize();
|
2015-06-30 09:54:51 +00:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
u256 StructType::storageSize() const
|
2014-11-07 01:06:37 +00:00
|
|
|
{
|
2015-11-19 17:02:04 +00:00
|
|
|
return max<u256>(1, members(nullptr).storageSize());
|
2014-11-07 01:06:37 +00:00
|
|
|
}
|
|
|
|
|
2015-06-09 12:26:08 +00:00
|
|
|
string StructType::toString(bool _short) const
|
2014-11-13 00:12:57 +00:00
|
|
|
{
|
2016-11-14 13:39:46 +00:00
|
|
|
string ret = "struct " + m_struct.annotation().canonicalName;
|
2015-06-09 12:26:08 +00:00
|
|
|
if (!_short)
|
|
|
|
ret += " " + stringForReferencePart();
|
|
|
|
return ret;
|
2014-11-13 00:12:57 +00:00
|
|
|
}
|
|
|
|
|
2015-11-25 13:23:35 +00:00
|
|
|
MemberList::MemberMap StructType::nativeMembers(ContractDefinition const*) const
|
2014-11-13 00:12:57 +00:00
|
|
|
{
|
2015-11-25 13:23:35 +00:00
|
|
|
MemberList::MemberMap members;
|
|
|
|
for (ASTPointer<VariableDeclaration> const& variable: m_struct.members())
|
2014-11-20 09:19:43 +00:00
|
|
|
{
|
2015-11-25 13:23:35 +00:00
|
|
|
TypePointer type = variable->annotation().type;
|
2017-02-16 11:36:43 +00:00
|
|
|
solAssert(type, "");
|
2015-11-25 13:23:35 +00:00
|
|
|
// Skip all mapping members if we are not in storage.
|
|
|
|
if (location() != DataLocation::Storage && !type->canLiveOutsideStorage())
|
|
|
|
continue;
|
|
|
|
members.push_back(MemberList::Member(
|
|
|
|
variable->name(),
|
|
|
|
copyForLocationIfReference(type),
|
|
|
|
variable.get())
|
|
|
|
);
|
2014-11-20 09:19:43 +00:00
|
|
|
}
|
2015-11-25 13:23:35 +00:00
|
|
|
return members;
|
2014-11-13 00:12:57 +00:00
|
|
|
}
|
|
|
|
|
2015-10-02 11:11:38 +00:00
|
|
|
TypePointer StructType::interfaceType(bool _inLibrary) const
|
|
|
|
{
|
2017-09-14 12:51:14 +00:00
|
|
|
if (!canBeUsedExternally(_inLibrary))
|
|
|
|
return TypePointer();
|
|
|
|
|
|
|
|
// Has to fulfill canBeUsedExternally(_inLibrary) == !!interfaceType(_inLibrary)
|
2015-10-02 11:11:38 +00:00
|
|
|
if (_inLibrary && location() == DataLocation::Storage)
|
|
|
|
return shared_from_this();
|
2017-09-14 12:51:14 +00:00
|
|
|
else
|
2017-01-24 11:44:49 +00:00
|
|
|
return copyForLocation(DataLocation::Memory, true);
|
2017-09-14 12:51:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool StructType::canBeUsedExternally(bool _inLibrary) const
|
|
|
|
{
|
|
|
|
if (_inLibrary && location() == DataLocation::Storage)
|
|
|
|
return true;
|
|
|
|
else if (recursive())
|
|
|
|
return false;
|
2017-06-01 09:48:38 +00:00
|
|
|
else
|
2017-09-14 12:51:14 +00:00
|
|
|
{
|
|
|
|
// Check that all members have interface types.
|
|
|
|
// We pass "false" to canBeUsedExternally (_inLibrary), because this struct will be
|
|
|
|
// passed by value and thus the encoding does not differ, but it will disallow
|
|
|
|
// mappings.
|
2018-11-28 15:16:02 +00:00
|
|
|
// Also return false if at least one struct member does not have a type.
|
|
|
|
// This might happen, for example, if the type of the member does not exist,
|
|
|
|
// which is reported as an error.
|
2017-09-14 12:51:14 +00:00
|
|
|
for (auto const& var: m_struct.members())
|
2018-09-21 13:25:05 +00:00
|
|
|
{
|
2018-11-28 15:16:02 +00:00
|
|
|
// If the struct member does not have a type return false.
|
|
|
|
// A TypeError is expected in this case.
|
|
|
|
if (!var->annotation().type)
|
|
|
|
return false;
|
2017-09-14 12:51:14 +00:00
|
|
|
if (!var->annotation().type->canBeUsedExternally(false))
|
|
|
|
return false;
|
2018-09-21 13:25:05 +00:00
|
|
|
}
|
2017-09-14 12:51:14 +00:00
|
|
|
}
|
|
|
|
return true;
|
2015-10-02 11:11:38 +00:00
|
|
|
}
|
|
|
|
|
2015-06-17 10:01:39 +00:00
|
|
|
TypePointer StructType::copyForLocation(DataLocation _location, bool _isPointer) const
|
2015-06-05 09:07:50 +00:00
|
|
|
{
|
2015-07-15 23:06:19 +00:00
|
|
|
auto copy = make_shared<StructType>(m_struct, _location);
|
2015-06-09 12:26:08 +00:00
|
|
|
copy->m_isPointer = _isPointer;
|
2015-06-05 09:07:50 +00:00
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
2017-06-08 09:14:58 +00:00
|
|
|
string StructType::signatureInExternalFunction(bool _structsByName) const
|
2015-10-05 15:19:23 +00:00
|
|
|
{
|
2017-06-08 09:14:58 +00:00
|
|
|
if (_structsByName)
|
|
|
|
return canonicalName();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TypePointers memberTypes = memoryMemberTypes();
|
|
|
|
auto memberTypeStrings = memberTypes | boost::adaptors::transformed([&](TypePointer _t) -> string
|
|
|
|
{
|
|
|
|
solAssert(_t, "Parameter should have external type.");
|
2017-06-13 08:51:49 +00:00
|
|
|
auto t = _t->interfaceType(_structsByName);
|
|
|
|
solAssert(t, "");
|
|
|
|
return t->signatureInExternalFunction(_structsByName);
|
2017-06-08 09:14:58 +00:00
|
|
|
});
|
|
|
|
return "(" + boost::algorithm::join(memberTypeStrings, ",") + ")";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
string StructType::canonicalName() const
|
|
|
|
{
|
|
|
|
return m_struct.annotation().canonicalName;
|
2015-10-05 15:19:23 +00:00
|
|
|
}
|
|
|
|
|
2015-06-30 19:08:34 +00:00
|
|
|
FunctionTypePointer StructType::constructorType() const
|
|
|
|
{
|
|
|
|
TypePointers paramTypes;
|
|
|
|
strings paramNames;
|
2015-11-19 17:02:04 +00:00
|
|
|
for (auto const& member: members(nullptr))
|
2015-06-30 19:08:34 +00:00
|
|
|
{
|
|
|
|
if (!member.type->canLiveOutsideStorage())
|
|
|
|
continue;
|
|
|
|
paramNames.push_back(member.name);
|
|
|
|
paramTypes.push_back(copyForLocationIfReference(DataLocation::Memory, member.type));
|
|
|
|
}
|
|
|
|
return make_shared<FunctionType>(
|
|
|
|
paramTypes,
|
|
|
|
TypePointers{copyForLocation(DataLocation::Memory, false)},
|
|
|
|
paramNames,
|
|
|
|
strings(),
|
2017-03-16 11:58:17 +00:00
|
|
|
FunctionType::Kind::Internal
|
2015-06-30 19:08:34 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
pair<u256, unsigned> const& StructType::storageOffsetsOfMember(string const& _name) const
|
2014-11-13 00:12:57 +00:00
|
|
|
{
|
2015-11-19 17:02:04 +00:00
|
|
|
auto const* offsets = members(nullptr).memberStorageOffset(_name);
|
2015-03-13 18:48:24 +00:00
|
|
|
solAssert(offsets, "Storage offset of non-existing member requested.");
|
|
|
|
return *offsets;
|
2014-11-13 00:12:57 +00:00
|
|
|
}
|
|
|
|
|
2015-06-30 09:54:51 +00:00
|
|
|
u256 StructType::memoryOffsetOfMember(string const& _name) const
|
|
|
|
{
|
|
|
|
u256 offset;
|
2015-11-19 17:02:04 +00:00
|
|
|
for (auto const& member: members(nullptr))
|
2015-06-30 09:54:51 +00:00
|
|
|
if (member.name == _name)
|
|
|
|
return offset;
|
|
|
|
else
|
|
|
|
offset += member.type->memoryHeadSize();
|
|
|
|
solAssert(false, "Member not found in struct.");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-06-08 09:14:58 +00:00
|
|
|
TypePointers StructType::memoryMemberTypes() const
|
|
|
|
{
|
|
|
|
TypePointers types;
|
|
|
|
for (ASTPointer<VariableDeclaration> const& variable: m_struct.members())
|
|
|
|
if (variable->annotation().type->canLiveOutsideStorage())
|
|
|
|
types.push_back(variable->annotation().type);
|
|
|
|
return types;
|
|
|
|
}
|
|
|
|
|
2015-07-15 23:06:19 +00:00
|
|
|
set<string> StructType::membersMissingInMemory() const
|
|
|
|
{
|
|
|
|
set<string> missing;
|
2015-08-31 16:44:29 +00:00
|
|
|
for (ASTPointer<VariableDeclaration> const& variable: m_struct.members())
|
2015-09-16 14:56:30 +00:00
|
|
|
if (!variable->annotation().type->canLiveOutsideStorage())
|
2015-08-31 16:44:29 +00:00
|
|
|
missing.insert(variable->name());
|
2015-07-15 23:06:19 +00:00
|
|
|
return missing;
|
|
|
|
}
|
|
|
|
|
2017-06-01 09:48:38 +00:00
|
|
|
bool StructType::recursive() const
|
|
|
|
{
|
2017-09-14 12:51:14 +00:00
|
|
|
if (!m_recursive.is_initialized())
|
2017-06-01 09:48:38 +00:00
|
|
|
{
|
2018-07-31 14:18:00 +00:00
|
|
|
auto visitor = [&](StructDefinition const& _struct, CycleDetector<StructDefinition>& _cycleDetector, size_t /*_depth*/)
|
2017-06-01 09:48:38 +00:00
|
|
|
{
|
2018-03-15 18:53:29 +00:00
|
|
|
for (ASTPointer<VariableDeclaration> const& variable: _struct.members())
|
2017-09-14 12:51:14 +00:00
|
|
|
{
|
|
|
|
Type const* memberType = variable->annotation().type.get();
|
|
|
|
while (dynamic_cast<ArrayType const*>(memberType))
|
|
|
|
memberType = dynamic_cast<ArrayType const*>(memberType)->baseType().get();
|
|
|
|
if (StructType const* innerStruct = dynamic_cast<StructType const*>(memberType))
|
2018-03-15 18:53:29 +00:00
|
|
|
if (_cycleDetector.run(innerStruct->structDefinition()))
|
|
|
|
return;
|
2017-09-14 12:51:14 +00:00
|
|
|
}
|
|
|
|
};
|
2018-03-15 18:53:29 +00:00
|
|
|
m_recursive = (CycleDetector<StructDefinition>(visitor).run(structDefinition()) != nullptr);
|
2017-09-14 12:51:14 +00:00
|
|
|
}
|
|
|
|
return *m_recursive;
|
2017-06-01 09:48:38 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
TypeResult EnumType::unaryOperatorResult(Token _operator) const
|
2015-02-11 15:37:46 +00:00
|
|
|
{
|
2015-10-09 17:35:41 +00:00
|
|
|
return _operator == Token::Delete ? make_shared<TupleType>() : TypePointer();
|
2015-02-11 15:37:46 +00:00
|
|
|
}
|
|
|
|
|
2018-02-23 17:32:46 +00:00
|
|
|
string EnumType::richIdentifier() const
|
2017-01-17 09:47:44 +00:00
|
|
|
{
|
2018-08-08 14:26:30 +00:00
|
|
|
return "t_enum" + parenthesizeUserIdentifier(m_enum.name()) + to_string(m_enum.id());
|
2017-01-17 09:47:44 +00:00
|
|
|
}
|
|
|
|
|
2015-02-11 15:37:46 +00:00
|
|
|
bool EnumType::operator==(Type const& _other) const
|
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_other.category() != category())
|
2015-02-11 15:37:46 +00:00
|
|
|
return false;
|
|
|
|
EnumType const& other = dynamic_cast<EnumType const&>(_other);
|
|
|
|
return other.m_enum == m_enum;
|
|
|
|
}
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
unsigned EnumType::storageBytes() const
|
2015-03-13 09:52:34 +00:00
|
|
|
{
|
2016-11-07 17:15:59 +00:00
|
|
|
size_t elements = numberOfMembers();
|
2015-03-13 09:52:34 +00:00
|
|
|
if (elements <= 1)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return dev::bytesRequired(elements - 1);
|
|
|
|
}
|
|
|
|
|
2015-06-09 12:26:08 +00:00
|
|
|
string EnumType::toString(bool) const
|
2015-02-11 15:37:46 +00:00
|
|
|
{
|
2016-11-14 13:39:46 +00:00
|
|
|
return string("enum ") + m_enum.annotation().canonicalName;
|
2015-02-11 15:37:46 +00:00
|
|
|
}
|
|
|
|
|
2017-06-08 09:14:58 +00:00
|
|
|
string EnumType::canonicalName() const
|
2015-10-05 15:19:23 +00:00
|
|
|
{
|
|
|
|
return m_enum.annotation().canonicalName;
|
|
|
|
}
|
|
|
|
|
2016-11-07 17:15:59 +00:00
|
|
|
size_t EnumType::numberOfMembers() const
|
|
|
|
{
|
|
|
|
return m_enum.members().size();
|
|
|
|
};
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult EnumType::isExplicitlyConvertibleTo(Type const& _convertTo) const
|
2015-02-12 16:59:52 +00:00
|
|
|
{
|
2016-11-09 16:02:25 +00:00
|
|
|
return _convertTo == *this || _convertTo.category() == Category::Integer;
|
2015-02-12 16:59:52 +00:00
|
|
|
}
|
|
|
|
|
2016-05-10 09:15:41 +00:00
|
|
|
unsigned EnumType::memberValue(ASTString const& _member) const
|
2015-02-13 22:03:32 +00:00
|
|
|
{
|
2016-05-10 09:15:41 +00:00
|
|
|
unsigned index = 0;
|
2015-08-31 16:44:29 +00:00
|
|
|
for (ASTPointer<EnumValue> const& decl: m_enum.members())
|
2015-02-13 22:03:32 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (decl->name() == _member)
|
2015-02-13 22:03:32 +00:00
|
|
|
return index;
|
|
|
|
++index;
|
|
|
|
}
|
2017-10-05 19:18:46 +00:00
|
|
|
solAssert(false, "Requested unknown enum value " + _member);
|
2015-02-13 22:03:32 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult TupleType::isImplicitlyConvertibleTo(Type const& _other) const
|
2015-10-14 13:19:50 +00:00
|
|
|
{
|
|
|
|
if (auto tupleType = dynamic_cast<TupleType const*>(&_other))
|
|
|
|
{
|
|
|
|
TypePointers const& targets = tupleType->components();
|
|
|
|
if (targets.empty())
|
|
|
|
return components().empty();
|
2018-07-10 09:59:09 +00:00
|
|
|
if (components().size() != targets.size())
|
2015-10-14 13:19:50 +00:00
|
|
|
return false;
|
2018-07-10 09:59:09 +00:00
|
|
|
for (size_t i = 0; i < targets.size(); ++i)
|
|
|
|
if (!components()[i] && targets[i])
|
2015-10-14 13:19:50 +00:00
|
|
|
return false;
|
2018-07-10 09:59:09 +00:00
|
|
|
else if (components()[i] && targets[i] && !components()[i]->isImplicitlyConvertibleTo(*targets[i]))
|
2015-10-14 13:19:50 +00:00
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-02-23 17:32:46 +00:00
|
|
|
string TupleType::richIdentifier() const
|
2017-01-17 09:47:44 +00:00
|
|
|
{
|
2017-01-19 12:18:56 +00:00
|
|
|
return "t_tuple" + identifierList(components());
|
2017-01-17 09:47:44 +00:00
|
|
|
}
|
|
|
|
|
2015-10-09 17:35:41 +00:00
|
|
|
bool TupleType::operator==(Type const& _other) const
|
|
|
|
{
|
|
|
|
if (auto tupleType = dynamic_cast<TupleType const*>(&_other))
|
|
|
|
return components() == tupleType->components();
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
string TupleType::toString(bool _short) const
|
|
|
|
{
|
2015-10-14 13:19:50 +00:00
|
|
|
if (components().empty())
|
2015-10-09 17:35:41 +00:00
|
|
|
return "tuple()";
|
|
|
|
string str = "tuple(";
|
2015-10-14 13:19:50 +00:00
|
|
|
for (auto const& t: components())
|
2015-10-12 21:02:35 +00:00
|
|
|
str += (t ? t->toString(_short) : "") + ",";
|
|
|
|
str.pop_back();
|
2015-10-09 17:35:41 +00:00
|
|
|
return str + ")";
|
|
|
|
}
|
|
|
|
|
|
|
|
u256 TupleType::storageSize() const
|
|
|
|
{
|
2017-07-19 01:19:00 +00:00
|
|
|
solAssert(false, "Storage size of non-storable tuple type requested.");
|
2015-10-09 17:35:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned TupleType::sizeOnStack() const
|
|
|
|
{
|
|
|
|
unsigned size = 0;
|
2015-10-14 13:19:50 +00:00
|
|
|
for (auto const& t: components())
|
2015-10-12 21:02:35 +00:00
|
|
|
size += t ? t->sizeOnStack() : 0;
|
2015-10-09 17:35:41 +00:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2015-10-14 13:19:50 +00:00
|
|
|
TypePointer TupleType::mobileType() const
|
2015-10-12 21:02:35 +00:00
|
|
|
{
|
2015-10-14 13:19:50 +00:00
|
|
|
TypePointers mobiles;
|
|
|
|
for (auto const& c: components())
|
2016-10-21 10:30:58 +00:00
|
|
|
{
|
|
|
|
if (c)
|
|
|
|
{
|
|
|
|
auto mt = c->mobileType();
|
|
|
|
if (!mt)
|
|
|
|
return TypePointer();
|
|
|
|
mobiles.push_back(mt);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
mobiles.push_back(TypePointer());
|
|
|
|
}
|
2015-10-14 13:19:50 +00:00
|
|
|
return make_shared<TupleType>(mobiles);
|
|
|
|
}
|
|
|
|
|
|
|
|
TypePointer TupleType::closestTemporaryType(TypePointer const& _targetType) const
|
|
|
|
{
|
|
|
|
solAssert(!!_targetType, "");
|
|
|
|
TypePointers const& targetComponents = dynamic_cast<TupleType const&>(*_targetType).components();
|
2018-08-07 16:44:51 +00:00
|
|
|
solAssert(components().size() == targetComponents.size(), "");
|
2015-10-14 13:19:50 +00:00
|
|
|
TypePointers tempComponents(targetComponents.size());
|
2018-08-07 16:44:51 +00:00
|
|
|
for (size_t i = 0; i < targetComponents.size(); ++i)
|
2015-10-12 21:02:35 +00:00
|
|
|
{
|
2018-08-07 16:44:51 +00:00
|
|
|
if (components()[i] && targetComponents[i])
|
2017-02-16 10:45:06 +00:00
|
|
|
{
|
2018-08-07 16:44:51 +00:00
|
|
|
tempComponents[i] = components()[i]->closestTemporaryType(targetComponents[i]);
|
|
|
|
solAssert(tempComponents[i], "");
|
2017-02-16 10:45:06 +00:00
|
|
|
}
|
2015-10-12 21:02:35 +00:00
|
|
|
}
|
2015-10-14 13:19:50 +00:00
|
|
|
return make_shared<TupleType>(tempComponents);
|
2015-10-12 21:02:35 +00:00
|
|
|
}
|
|
|
|
|
2015-01-14 10:01:42 +00:00
|
|
|
FunctionType::FunctionType(FunctionDefinition const& _function, bool _isInternal):
|
2017-02-11 03:13:36 +00:00
|
|
|
m_kind(_isInternal ? Kind::Internal : Kind::External),
|
2017-07-01 09:09:24 +00:00
|
|
|
m_stateMutability(_function.stateMutability()),
|
2015-01-29 16:28:14 +00:00
|
|
|
m_declaration(&_function)
|
2014-11-25 13:43:23 +00:00
|
|
|
{
|
2017-07-01 09:09:24 +00:00
|
|
|
if (_isInternal && m_stateMutability == StateMutability::Payable)
|
|
|
|
m_stateMutability = StateMutability::NonPayable;
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
for (ASTPointer<VariableDeclaration> const& var: _function.parameters())
|
2015-01-23 15:37:06 +00:00
|
|
|
{
|
2018-02-20 18:38:51 +00:00
|
|
|
m_parameterNames.push_back(var->name());
|
|
|
|
m_parameterTypes.push_back(var->annotation().type);
|
2015-01-23 15:37:06 +00:00
|
|
|
}
|
2015-08-31 16:44:29 +00:00
|
|
|
for (ASTPointer<VariableDeclaration> const& var: _function.returnParameters())
|
2015-01-23 15:37:06 +00:00
|
|
|
{
|
2018-02-20 18:38:51 +00:00
|
|
|
m_returnParameterNames.push_back(var->name());
|
|
|
|
m_returnParameterTypes.push_back(var->annotation().type);
|
2015-01-23 15:37:06 +00:00
|
|
|
}
|
2014-11-25 13:43:23 +00:00
|
|
|
}
|
|
|
|
|
2015-01-22 16:40:22 +00:00
|
|
|
FunctionType::FunctionType(VariableDeclaration const& _varDecl):
|
2017-08-28 15:31:26 +00:00
|
|
|
m_kind(Kind::External),
|
|
|
|
m_stateMutability(StateMutability::View),
|
|
|
|
m_declaration(&_varDecl)
|
2015-01-22 16:40:22 +00:00
|
|
|
{
|
2015-09-16 14:56:30 +00:00
|
|
|
auto returnType = _varDecl.annotation().type;
|
2015-01-28 12:16:09 +00:00
|
|
|
|
2015-04-01 12:22:42 +00:00
|
|
|
while (true)
|
2015-01-30 15:06:56 +00:00
|
|
|
{
|
2015-04-02 15:03:02 +00:00
|
|
|
if (auto mappingType = dynamic_cast<MappingType const*>(returnType.get()))
|
2015-04-01 12:22:42 +00:00
|
|
|
{
|
2018-02-20 18:38:51 +00:00
|
|
|
m_parameterTypes.push_back(mappingType->keyType());
|
|
|
|
m_parameterNames.push_back("");
|
2015-08-31 16:44:29 +00:00
|
|
|
returnType = mappingType->valueType();
|
2015-04-01 12:22:42 +00:00
|
|
|
}
|
2015-04-02 15:03:02 +00:00
|
|
|
else if (auto arrayType = dynamic_cast<ArrayType const*>(returnType.get()))
|
2015-04-01 12:22:42 +00:00
|
|
|
{
|
2015-06-17 10:01:39 +00:00
|
|
|
if (arrayType->isByteArray())
|
2018-09-20 14:54:57 +00:00
|
|
|
// Return byte arrays as whole.
|
2015-06-17 10:01:39 +00:00
|
|
|
break;
|
2015-08-31 16:44:29 +00:00
|
|
|
returnType = arrayType->baseType();
|
2018-02-20 18:38:51 +00:00
|
|
|
m_parameterNames.push_back("");
|
|
|
|
m_parameterTypes.push_back(make_shared<IntegerType>(256));
|
2015-04-01 12:22:42 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
2015-01-30 15:06:56 +00:00
|
|
|
}
|
2015-02-02 16:52:50 +00:00
|
|
|
|
2015-02-06 18:57:08 +00:00
|
|
|
if (auto structType = dynamic_cast<StructType const*>(returnType.get()))
|
|
|
|
{
|
2015-11-19 17:02:04 +00:00
|
|
|
for (auto const& member: structType->members(nullptr))
|
2017-02-16 11:36:43 +00:00
|
|
|
{
|
|
|
|
solAssert(member.type, "");
|
2015-08-31 16:44:29 +00:00
|
|
|
if (member.type->category() != Category::Mapping)
|
2015-02-06 18:57:08 +00:00
|
|
|
{
|
2015-06-17 10:01:39 +00:00
|
|
|
if (auto arrayType = dynamic_cast<ArrayType const*>(member.type.get()))
|
|
|
|
if (!arrayType->isByteArray())
|
|
|
|
continue;
|
2018-02-21 10:07:40 +00:00
|
|
|
m_returnParameterTypes.push_back(ReferenceType::copyForLocationIfReference(
|
|
|
|
DataLocation::Memory,
|
|
|
|
member.type
|
|
|
|
));
|
2018-02-20 18:38:51 +00:00
|
|
|
m_returnParameterNames.push_back(member.name);
|
2015-02-06 18:57:08 +00:00
|
|
|
}
|
2017-02-16 11:36:43 +00:00
|
|
|
}
|
2015-02-06 18:57:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-02-20 18:38:51 +00:00
|
|
|
m_returnParameterTypes.push_back(ReferenceType::copyForLocationIfReference(
|
2015-06-17 10:01:39 +00:00
|
|
|
DataLocation::Memory,
|
|
|
|
returnType
|
|
|
|
));
|
2018-02-20 18:38:51 +00:00
|
|
|
m_returnParameterNames.push_back("");
|
2015-02-06 18:57:08 +00:00
|
|
|
}
|
2015-01-22 16:40:22 +00:00
|
|
|
}
|
|
|
|
|
2016-08-31 18:43:24 +00:00
|
|
|
FunctionType::FunctionType(EventDefinition const& _event):
|
2017-08-28 15:31:26 +00:00
|
|
|
m_kind(Kind::Event),
|
|
|
|
m_stateMutability(StateMutability::NonPayable),
|
|
|
|
m_declaration(&_event)
|
2015-01-29 13:35:28 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
for (ASTPointer<VariableDeclaration> const& var: _event.parameters())
|
2015-01-29 13:35:28 +00:00
|
|
|
{
|
2018-02-20 18:38:51 +00:00
|
|
|
m_parameterNames.push_back(var->name());
|
|
|
|
m_parameterTypes.push_back(var->annotation().type);
|
2015-01-29 13:35:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-27 19:37:32 +00:00
|
|
|
FunctionType::FunctionType(FunctionTypeName const& _typeName):
|
2017-02-11 03:13:36 +00:00
|
|
|
m_kind(_typeName.visibility() == VariableDeclaration::Visibility::External ? Kind::External : Kind::Internal),
|
2017-07-01 09:09:24 +00:00
|
|
|
m_stateMutability(_typeName.stateMutability())
|
2016-09-27 19:37:32 +00:00
|
|
|
{
|
2016-11-09 14:14:16 +00:00
|
|
|
if (_typeName.isPayable())
|
2017-02-11 03:13:36 +00:00
|
|
|
solAssert(m_kind == Kind::External, "Internal payable function type used.");
|
2016-09-27 19:37:32 +00:00
|
|
|
for (auto const& t: _typeName.parameterTypes())
|
|
|
|
{
|
|
|
|
solAssert(t->annotation().type, "Type not set for parameter.");
|
2017-02-11 03:13:36 +00:00
|
|
|
if (m_kind == Kind::External)
|
2016-11-16 14:09:01 +00:00
|
|
|
solAssert(
|
|
|
|
t->annotation().type->canBeUsedExternally(false),
|
|
|
|
"Internal type used as parameter for external function."
|
|
|
|
);
|
2016-09-27 19:37:32 +00:00
|
|
|
m_parameterTypes.push_back(t->annotation().type);
|
|
|
|
}
|
|
|
|
for (auto const& t: _typeName.returnParameterTypes())
|
|
|
|
{
|
|
|
|
solAssert(t->annotation().type, "Type not set for return parameter.");
|
2017-02-11 03:13:36 +00:00
|
|
|
if (m_kind == Kind::External)
|
2016-11-16 14:09:01 +00:00
|
|
|
solAssert(
|
|
|
|
t->annotation().type->canBeUsedExternally(false),
|
|
|
|
"Internal type used as return parameter for external function."
|
|
|
|
);
|
2016-09-27 19:37:32 +00:00
|
|
|
m_returnParameterTypes.push_back(t->annotation().type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-31 18:43:24 +00:00
|
|
|
FunctionTypePointer FunctionType::newExpressionType(ContractDefinition const& _contract)
|
|
|
|
{
|
|
|
|
FunctionDefinition const* constructor = _contract.constructor();
|
|
|
|
TypePointers parameters;
|
|
|
|
strings parameterNames;
|
2017-08-09 20:52:25 +00:00
|
|
|
StateMutability stateMutability = StateMutability::NonPayable;
|
2016-08-31 18:43:24 +00:00
|
|
|
|
2017-08-11 23:45:37 +00:00
|
|
|
solAssert(_contract.contractKind() != ContractDefinition::ContractKind::Interface, "");
|
|
|
|
|
2016-08-31 18:43:24 +00:00
|
|
|
if (constructor)
|
|
|
|
{
|
|
|
|
for (ASTPointer<VariableDeclaration> const& var: constructor->parameters())
|
|
|
|
{
|
|
|
|
parameterNames.push_back(var->name());
|
|
|
|
parameters.push_back(var->annotation().type);
|
|
|
|
}
|
2017-08-09 20:52:25 +00:00
|
|
|
if (constructor->isPayable())
|
|
|
|
stateMutability = StateMutability::Payable;
|
2016-08-31 18:43:24 +00:00
|
|
|
}
|
2017-08-11 23:45:37 +00:00
|
|
|
|
2016-08-31 18:43:24 +00:00
|
|
|
return make_shared<FunctionType>(
|
|
|
|
parameters,
|
|
|
|
TypePointers{make_shared<ContractType>(_contract)},
|
|
|
|
parameterNames,
|
|
|
|
strings{""},
|
2017-02-11 03:13:36 +00:00
|
|
|
Kind::Creation,
|
2016-08-31 18:43:24 +00:00
|
|
|
false,
|
2017-08-09 20:52:25 +00:00
|
|
|
stateMutability
|
2016-08-31 18:43:24 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-02-18 12:29:02 +00:00
|
|
|
vector<string> FunctionType::parameterNames() const
|
2015-11-25 13:23:35 +00:00
|
|
|
{
|
|
|
|
if (!bound())
|
|
|
|
return m_parameterNames;
|
|
|
|
return vector<string>(m_parameterNames.cbegin() + 1, m_parameterNames.cend());
|
|
|
|
}
|
|
|
|
|
2018-02-20 23:40:38 +00:00
|
|
|
TypePointers FunctionType::returnParameterTypesWithoutDynamicTypes() const
|
|
|
|
{
|
|
|
|
TypePointers returnParameterTypes = m_returnParameterTypes;
|
|
|
|
|
2018-08-15 21:30:09 +00:00
|
|
|
if (
|
|
|
|
m_kind == Kind::External ||
|
|
|
|
m_kind == Kind::DelegateCall ||
|
|
|
|
m_kind == Kind::BareCall ||
|
|
|
|
m_kind == Kind::BareCallCode ||
|
|
|
|
m_kind == Kind::BareDelegateCall ||
|
|
|
|
m_kind == Kind::BareStaticCall
|
|
|
|
)
|
2018-02-20 23:40:38 +00:00
|
|
|
for (auto& param: returnParameterTypes)
|
|
|
|
if (param->isDynamicallySized() && !param->dataStoredIn(DataLocation::Storage))
|
|
|
|
param = make_shared<InaccessibleDynamicType>();
|
|
|
|
|
|
|
|
return returnParameterTypes;
|
|
|
|
}
|
|
|
|
|
2015-11-25 13:23:35 +00:00
|
|
|
TypePointers FunctionType::parameterTypes() const
|
|
|
|
{
|
|
|
|
if (!bound())
|
|
|
|
return m_parameterTypes;
|
|
|
|
return TypePointers(m_parameterTypes.cbegin() + 1, m_parameterTypes.cend());
|
|
|
|
}
|
|
|
|
|
2018-02-23 17:32:46 +00:00
|
|
|
string FunctionType::richIdentifier() const
|
2017-01-17 09:47:44 +00:00
|
|
|
{
|
|
|
|
string id = "t_function_";
|
2017-02-11 03:13:36 +00:00
|
|
|
switch (m_kind)
|
|
|
|
{
|
|
|
|
case Kind::Internal: id += "internal"; break;
|
|
|
|
case Kind::External: id += "external"; break;
|
|
|
|
case Kind::DelegateCall: id += "delegatecall"; break;
|
2017-08-01 09:32:23 +00:00
|
|
|
case Kind::BareCall: id += "barecall"; break;
|
2017-02-11 03:13:36 +00:00
|
|
|
case Kind::BareCallCode: id += "barecallcode"; break;
|
|
|
|
case Kind::BareDelegateCall: id += "baredelegatecall"; break;
|
2018-08-15 12:40:20 +00:00
|
|
|
case Kind::BareStaticCall: id += "barestaticcall"; break;
|
2017-02-11 03:13:36 +00:00
|
|
|
case Kind::Creation: id += "creation"; break;
|
|
|
|
case Kind::Send: id += "send"; break;
|
|
|
|
case Kind::Transfer: id += "transfer"; break;
|
2018-08-08 15:31:46 +00:00
|
|
|
case Kind::KECCAK256: id += "keccak256"; break;
|
2017-02-11 03:13:36 +00:00
|
|
|
case Kind::Selfdestruct: id += "selfdestruct"; break;
|
|
|
|
case Kind::Revert: id += "revert"; break;
|
|
|
|
case Kind::ECRecover: id += "ecrecover"; break;
|
|
|
|
case Kind::SHA256: id += "sha256"; break;
|
|
|
|
case Kind::RIPEMD160: id += "ripemd160"; break;
|
|
|
|
case Kind::Log0: id += "log0"; break;
|
|
|
|
case Kind::Log1: id += "log1"; break;
|
|
|
|
case Kind::Log2: id += "log2"; break;
|
|
|
|
case Kind::Log3: id += "log3"; break;
|
|
|
|
case Kind::Log4: id += "log4"; break;
|
2018-03-06 16:18:57 +00:00
|
|
|
case Kind::GasLeft: id += "gasleft"; break;
|
2017-02-11 03:13:36 +00:00
|
|
|
case Kind::Event: id += "event"; break;
|
|
|
|
case Kind::SetGas: id += "setgas"; break;
|
|
|
|
case Kind::SetValue: id += "setvalue"; break;
|
|
|
|
case Kind::BlockHash: id += "blockhash"; break;
|
|
|
|
case Kind::AddMod: id += "addmod"; break;
|
|
|
|
case Kind::MulMod: id += "mulmod"; break;
|
|
|
|
case Kind::ArrayPush: id += "arraypush"; break;
|
2018-05-31 12:53:33 +00:00
|
|
|
case Kind::ArrayPop: id += "arraypop"; break;
|
2017-02-11 03:13:36 +00:00
|
|
|
case Kind::ByteArrayPush: id += "bytearraypush"; break;
|
|
|
|
case Kind::ObjectCreation: id += "objectcreation"; break;
|
2017-03-20 18:06:17 +00:00
|
|
|
case Kind::Assert: id += "assert"; break;
|
2017-07-31 23:55:13 +00:00
|
|
|
case Kind::Require: id += "require"; break;
|
|
|
|
case Kind::ABIEncode: id += "abiencode"; break;
|
|
|
|
case Kind::ABIEncodePacked: id += "abiencodepacked"; break;
|
|
|
|
case Kind::ABIEncodeWithSelector: id += "abiencodewithselector"; break;
|
|
|
|
case Kind::ABIEncodeWithSignature: id += "abiencodewithsignature"; break;
|
2018-06-30 16:09:13 +00:00
|
|
|
case Kind::ABIDecode: id += "abidecode"; break;
|
2017-01-17 09:47:44 +00:00
|
|
|
}
|
2017-08-15 21:47:26 +00:00
|
|
|
id += "_" + stateMutabilityToString(m_stateMutability);
|
2017-01-19 12:18:56 +00:00
|
|
|
id += identifierList(m_parameterTypes) + "returns" + identifierList(m_returnParameterTypes);
|
2017-01-17 09:47:44 +00:00
|
|
|
if (m_gasSet)
|
2017-01-20 10:47:20 +00:00
|
|
|
id += "gas";
|
2017-01-17 09:47:44 +00:00
|
|
|
if (m_valueSet)
|
2017-01-20 10:47:20 +00:00
|
|
|
id += "value";
|
2017-01-17 09:47:44 +00:00
|
|
|
if (bound())
|
2017-01-19 12:18:56 +00:00
|
|
|
id += "bound_to" + identifierList(selfType());
|
2017-01-17 09:47:44 +00:00
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2014-10-29 18:28:30 +00:00
|
|
|
bool FunctionType::operator==(Type const& _other) const
|
2014-10-20 10:41:56 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_other.category() != category())
|
2014-10-20 10:41:56 +00:00
|
|
|
return false;
|
2017-08-10 02:55:57 +00:00
|
|
|
FunctionType const& other = dynamic_cast<FunctionType const&>(_other);
|
2018-06-28 11:31:23 +00:00
|
|
|
if (!equalExcludingStateMutability(other))
|
2017-08-09 22:10:40 +00:00
|
|
|
return false;
|
2018-06-28 11:31:23 +00:00
|
|
|
if (m_stateMutability != other.stateMutability())
|
2015-11-27 13:08:09 +00:00
|
|
|
return false;
|
2014-11-25 13:43:23 +00:00
|
|
|
return true;
|
2014-10-20 10:41:56 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult FunctionType::isExplicitlyConvertibleTo(Type const& _convertTo) const
|
2016-12-01 12:12:10 +00:00
|
|
|
{
|
2018-09-20 08:54:19 +00:00
|
|
|
if (m_kind == Kind::External && _convertTo == AddressType::address())
|
|
|
|
return true;
|
2016-12-01 12:12:10 +00:00
|
|
|
return _convertTo.category() == category();
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
BoolResult FunctionType::isImplicitlyConvertibleTo(Type const& _convertTo) const
|
2018-06-28 11:31:23 +00:00
|
|
|
{
|
|
|
|
if (_convertTo.category() != category())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
FunctionType const& convertTo = dynamic_cast<FunctionType const&>(_convertTo);
|
|
|
|
|
|
|
|
if (!equalExcludingStateMutability(convertTo))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// non-payable should not be convertible to payable
|
|
|
|
if (m_stateMutability != StateMutability::Payable && convertTo.stateMutability() == StateMutability::Payable)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// payable should be convertible to non-payable, because you are free to pay 0 ether
|
|
|
|
if (m_stateMutability == StateMutability::Payable && convertTo.stateMutability() == StateMutability::NonPayable)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// e.g. pure should be convertible to view, but not the other way around.
|
|
|
|
if (m_stateMutability > convertTo.stateMutability())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
TypeResult FunctionType::unaryOperatorResult(Token _operator) const
|
2016-11-09 08:36:38 +00:00
|
|
|
{
|
2018-10-22 14:48:21 +00:00
|
|
|
if (_operator == Token::Delete)
|
2018-05-07 22:31:34 +00:00
|
|
|
return TypeResult(make_shared<TupleType>());
|
2016-11-09 08:36:38 +00:00
|
|
|
return TypePointer();
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:31:34 +00:00
|
|
|
TypeResult FunctionType::binaryOperatorResult(Token _operator, TypePointer const& _other) const
|
2017-06-23 16:37:15 +00:00
|
|
|
{
|
2017-06-26 14:30:13 +00:00
|
|
|
if (_other->category() != category() || !(_operator == Token::Equal || _operator == Token::NotEqual))
|
2017-06-23 16:37:15 +00:00
|
|
|
return TypePointer();
|
|
|
|
FunctionType const& other = dynamic_cast<FunctionType const&>(*_other);
|
|
|
|
if (kind() == Kind::Internal && other.kind() == Kind::Internal && sizeOnStack() == 1 && other.sizeOnStack() == 1)
|
|
|
|
return commonType(shared_from_this(), _other);
|
|
|
|
return TypePointer();
|
|
|
|
}
|
|
|
|
|
2017-06-08 09:14:58 +00:00
|
|
|
string FunctionType::canonicalName() const
|
2016-11-14 12:13:37 +00:00
|
|
|
{
|
2017-02-11 03:13:36 +00:00
|
|
|
solAssert(m_kind == Kind::External, "");
|
2016-11-14 12:13:37 +00:00
|
|
|
return "function";
|
|
|
|
}
|
|
|
|
|
2015-06-09 12:26:08 +00:00
|
|
|
string FunctionType::toString(bool _short) const
|
2014-11-13 00:12:57 +00:00
|
|
|
{
|
2014-11-25 13:43:23 +00:00
|
|
|
string name = "function (";
|
|
|
|
for (auto it = m_parameterTypes.begin(); it != m_parameterTypes.end(); ++it)
|
2015-06-09 12:26:08 +00:00
|
|
|
name += (*it)->toString(_short) + (it + 1 == m_parameterTypes.end() ? "" : ",");
|
2016-11-16 14:09:01 +00:00
|
|
|
name += ")";
|
2017-08-15 21:47:26 +00:00
|
|
|
if (m_stateMutability != StateMutability::NonPayable)
|
|
|
|
name += " " + stateMutabilityToString(m_stateMutability);
|
2017-02-11 03:13:36 +00:00
|
|
|
if (m_kind == Kind::External)
|
2016-11-16 14:09:01 +00:00
|
|
|
name += " external";
|
|
|
|
if (!m_returnParameterTypes.empty())
|
|
|
|
{
|
|
|
|
name += " returns (";
|
|
|
|
for (auto it = m_returnParameterTypes.begin(); it != m_returnParameterTypes.end(); ++it)
|
|
|
|
name += (*it)->toString(_short) + (it + 1 == m_returnParameterTypes.end() ? "" : ",");
|
|
|
|
name += ")";
|
|
|
|
}
|
|
|
|
return name;
|
2014-11-13 00:12:57 +00:00
|
|
|
}
|
|
|
|
|
2016-09-27 19:37:32 +00:00
|
|
|
unsigned FunctionType::calldataEncodedSize(bool _padded) const
|
|
|
|
{
|
|
|
|
unsigned size = storageBytes();
|
|
|
|
if (_padded)
|
|
|
|
size = ((size + 31) / 32) * 32;
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
u256 FunctionType::storageSize() const
|
2015-03-13 09:52:34 +00:00
|
|
|
{
|
2017-02-11 03:13:36 +00:00
|
|
|
if (m_kind == Kind::External || m_kind == Kind::Internal)
|
2016-09-27 19:37:32 +00:00
|
|
|
return 1;
|
|
|
|
else
|
2017-07-19 01:19:00 +00:00
|
|
|
solAssert(false, "Storage size of non-storable function type requested.");
|
2016-09-27 19:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned FunctionType::storageBytes() const
|
|
|
|
{
|
2017-02-11 03:13:36 +00:00
|
|
|
if (m_kind == Kind::External)
|
2016-09-27 19:37:32 +00:00
|
|
|
return 20 + 4;
|
2017-02-11 03:13:36 +00:00
|
|
|
else if (m_kind == Kind::Internal)
|
2016-09-27 19:37:32 +00:00
|
|
|
return 8; // it should really not be possible to create larger programs
|
|
|
|
else
|
2017-07-19 01:19:00 +00:00
|
|
|
solAssert(false, "Storage size of non-storable function type requested.");
|
2015-03-13 09:52:34 +00:00
|
|
|
}
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
unsigned FunctionType::sizeOnStack() const
|
2015-01-12 11:47:37 +00:00
|
|
|
{
|
2017-02-11 03:13:36 +00:00
|
|
|
Kind kind = m_kind;
|
|
|
|
if (m_kind == Kind::SetGas || m_kind == Kind::SetValue)
|
2015-02-22 17:38:32 +00:00
|
|
|
{
|
|
|
|
solAssert(m_returnParameterTypes.size() == 1, "");
|
2017-02-11 03:13:36 +00:00
|
|
|
kind = dynamic_cast<FunctionType const&>(*m_returnParameterTypes.front()).m_kind;
|
2015-02-22 17:38:32 +00:00
|
|
|
}
|
|
|
|
|
2015-01-12 11:47:37 +00:00
|
|
|
unsigned size = 0;
|
2017-08-09 22:16:58 +00:00
|
|
|
|
|
|
|
switch(kind)
|
|
|
|
{
|
|
|
|
case Kind::External:
|
|
|
|
case Kind::DelegateCall:
|
2015-01-12 11:47:37 +00:00
|
|
|
size = 2;
|
2017-08-09 22:16:58 +00:00
|
|
|
break;
|
|
|
|
case Kind::BareCall:
|
|
|
|
case Kind::BareCallCode:
|
|
|
|
case Kind::BareDelegateCall:
|
2018-08-15 12:40:20 +00:00
|
|
|
case Kind::BareStaticCall:
|
2017-08-09 22:16:58 +00:00
|
|
|
case Kind::Internal:
|
|
|
|
case Kind::ArrayPush:
|
2018-05-31 12:53:33 +00:00
|
|
|
case Kind::ArrayPop:
|
2017-08-09 22:16:58 +00:00
|
|
|
case Kind::ByteArrayPush:
|
2015-10-13 14:55:59 +00:00
|
|
|
size = 1;
|
2017-08-09 22:16:58 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-01-12 11:47:37 +00:00
|
|
|
if (m_gasSet)
|
|
|
|
size++;
|
|
|
|
if (m_valueSet)
|
|
|
|
size++;
|
2015-11-25 13:23:35 +00:00
|
|
|
if (bound())
|
|
|
|
size += m_parameterTypes.front()->sizeOnStack();
|
2015-01-12 11:47:37 +00:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2015-10-02 11:11:38 +00:00
|
|
|
FunctionTypePointer FunctionType::interfaceFunctionType() const
|
2015-03-27 12:28:32 +00:00
|
|
|
{
|
2015-10-02 11:11:38 +00:00
|
|
|
// Note that m_declaration might also be a state variable!
|
|
|
|
solAssert(m_declaration, "Declaration needed to determine interface function type.");
|
|
|
|
bool isLibraryFunction = dynamic_cast<ContractDefinition const&>(*m_declaration->scope()).isLibrary();
|
|
|
|
|
2015-03-27 12:28:32 +00:00
|
|
|
TypePointers paramTypes;
|
|
|
|
TypePointers retParamTypes;
|
|
|
|
|
2015-04-01 13:19:33 +00:00
|
|
|
for (auto type: m_parameterTypes)
|
2015-03-27 16:07:32 +00:00
|
|
|
{
|
2015-10-02 11:11:38 +00:00
|
|
|
if (auto ext = type->interfaceType(isLibraryFunction))
|
2015-06-26 14:52:30 +00:00
|
|
|
paramTypes.push_back(ext);
|
|
|
|
else
|
2015-04-21 11:35:38 +00:00
|
|
|
return FunctionTypePointer();
|
2015-03-27 16:07:32 +00:00
|
|
|
}
|
2015-04-01 13:19:33 +00:00
|
|
|
for (auto type: m_returnParameterTypes)
|
2015-03-27 16:07:32 +00:00
|
|
|
{
|
2015-10-02 11:11:38 +00:00
|
|
|
if (auto ext = type->interfaceType(isLibraryFunction))
|
2015-06-26 14:52:30 +00:00
|
|
|
retParamTypes.push_back(ext);
|
|
|
|
else
|
2015-04-21 11:35:38 +00:00
|
|
|
return FunctionTypePointer();
|
2015-03-27 16:07:32 +00:00
|
|
|
}
|
2016-01-15 16:36:06 +00:00
|
|
|
auto variable = dynamic_cast<VariableDeclaration const*>(m_declaration);
|
|
|
|
if (variable && retParamTypes.empty())
|
|
|
|
return FunctionTypePointer();
|
|
|
|
|
2016-08-31 18:43:24 +00:00
|
|
|
return make_shared<FunctionType>(
|
2017-08-09 22:10:40 +00:00
|
|
|
paramTypes,
|
|
|
|
retParamTypes,
|
|
|
|
m_parameterNames,
|
|
|
|
m_returnParameterNames,
|
|
|
|
m_kind,
|
|
|
|
m_arbitraryParameters,
|
2017-08-28 13:40:28 +00:00
|
|
|
m_stateMutability,
|
|
|
|
m_declaration
|
2016-08-31 18:43:24 +00:00
|
|
|
);
|
2015-03-27 12:28:32 +00:00
|
|
|
}
|
|
|
|
|
2015-11-25 13:23:35 +00:00
|
|
|
MemberList::MemberMap FunctionType::nativeMembers(ContractDefinition const*) const
|
2014-11-25 17:23:39 +00:00
|
|
|
{
|
2017-02-11 03:13:36 +00:00
|
|
|
switch (m_kind)
|
2014-11-25 17:23:39 +00:00
|
|
|
{
|
2017-02-11 03:13:36 +00:00
|
|
|
case Kind::External:
|
|
|
|
case Kind::Creation:
|
2017-08-01 09:32:23 +00:00
|
|
|
case Kind::BareCall:
|
2017-02-11 03:13:36 +00:00
|
|
|
case Kind::BareCallCode:
|
|
|
|
case Kind::BareDelegateCall:
|
2018-08-15 12:40:20 +00:00
|
|
|
case Kind::BareStaticCall:
|
2015-11-25 13:23:35 +00:00
|
|
|
{
|
2016-03-07 15:55:53 +00:00
|
|
|
MemberList::MemberMap members;
|
2017-06-27 09:25:36 +00:00
|
|
|
if (m_kind == Kind::External)
|
|
|
|
members.push_back(MemberList::Member(
|
2017-06-28 17:15:41 +00:00
|
|
|
"selector",
|
2017-06-27 09:25:36 +00:00
|
|
|
make_shared<FixedBytesType>(4)
|
|
|
|
));
|
2017-11-13 00:54:29 +00:00
|
|
|
if (m_kind != Kind::BareDelegateCall)
|
2016-08-26 18:37:10 +00:00
|
|
|
{
|
2017-07-01 09:09:24 +00:00
|
|
|
if (isPayable())
|
2016-08-26 18:37:10 +00:00
|
|
|
members.push_back(MemberList::Member(
|
|
|
|
"value",
|
|
|
|
make_shared<FunctionType>(
|
|
|
|
parseElementaryTypeVector({"uint"}),
|
|
|
|
TypePointers{copyAndSetGasOrValue(false, true)},
|
|
|
|
strings(),
|
|
|
|
strings(),
|
2017-02-11 03:13:36 +00:00
|
|
|
Kind::SetValue,
|
2016-08-26 18:37:10 +00:00
|
|
|
false,
|
2017-08-09 20:52:25 +00:00
|
|
|
StateMutability::NonPayable,
|
2017-08-28 13:40:28 +00:00
|
|
|
nullptr,
|
2016-08-26 18:37:10 +00:00
|
|
|
m_gasSet,
|
|
|
|
m_valueSet
|
|
|
|
)
|
|
|
|
));
|
|
|
|
}
|
2017-02-11 03:13:36 +00:00
|
|
|
if (m_kind != Kind::Creation)
|
2016-03-07 15:55:53 +00:00
|
|
|
members.push_back(MemberList::Member(
|
|
|
|
"gas",
|
|
|
|
make_shared<FunctionType>(
|
|
|
|
parseElementaryTypeVector({"uint"}),
|
|
|
|
TypePointers{copyAndSetGasOrValue(true, false)},
|
|
|
|
strings(),
|
|
|
|
strings(),
|
2017-02-11 03:13:36 +00:00
|
|
|
Kind::SetGas,
|
2016-03-07 15:55:53 +00:00
|
|
|
false,
|
2017-08-09 20:52:25 +00:00
|
|
|
StateMutability::NonPayable,
|
2017-08-28 13:40:28 +00:00
|
|
|
nullptr,
|
2016-03-07 15:55:53 +00:00
|
|
|
m_gasSet,
|
|
|
|
m_valueSet
|
2015-11-25 13:23:35 +00:00
|
|
|
)
|
2016-03-07 15:55:53 +00:00
|
|
|
));
|
2015-11-25 13:23:35 +00:00
|
|
|
return members;
|
|
|
|
}
|
2014-11-25 17:23:39 +00:00
|
|
|
default:
|
2015-11-25 13:23:35 +00:00
|
|
|
return MemberList::MemberMap();
|
2014-11-25 17:23:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-28 17:22:23 +00:00
|
|
|
TypePointer FunctionType::encodingType() const
|
|
|
|
{
|
|
|
|
// Only external functions can be encoded, internal functions cannot leave code boundaries.
|
2017-02-11 03:13:36 +00:00
|
|
|
if (m_kind == Kind::External)
|
2016-09-28 17:22:23 +00:00
|
|
|
return shared_from_this();
|
|
|
|
else
|
|
|
|
return TypePointer();
|
|
|
|
}
|
|
|
|
|
2016-10-13 15:51:46 +00:00
|
|
|
TypePointer FunctionType::interfaceType(bool /*_inLibrary*/) const
|
2016-09-27 19:37:32 +00:00
|
|
|
{
|
2017-02-11 03:13:36 +00:00
|
|
|
if (m_kind == Kind::External)
|
2016-11-14 12:13:37 +00:00
|
|
|
return shared_from_this();
|
2016-10-19 14:39:16 +00:00
|
|
|
else
|
|
|
|
return TypePointer();
|
2016-09-27 19:37:32 +00:00
|
|
|
}
|
|
|
|
|
2015-11-27 21:24:00 +00:00
|
|
|
bool FunctionType::canTakeArguments(TypePointers const& _argumentTypes, TypePointer const& _selfType) const
|
2015-04-15 15:40:50 +00:00
|
|
|
{
|
2015-11-27 21:24:00 +00:00
|
|
|
solAssert(!bound() || _selfType, "");
|
|
|
|
if (bound() && !_selfType->isImplicitlyConvertibleTo(*selfType()))
|
|
|
|
return false;
|
2015-11-25 13:23:35 +00:00
|
|
|
TypePointers paramTypes = parameterTypes();
|
2015-04-15 15:40:50 +00:00
|
|
|
if (takesArbitraryParameters())
|
|
|
|
return true;
|
2015-08-31 16:44:29 +00:00
|
|
|
else if (_argumentTypes.size() != paramTypes.size())
|
2015-04-15 15:40:50 +00:00
|
|
|
return false;
|
|
|
|
else
|
2016-02-18 12:29:02 +00:00
|
|
|
return equal(
|
2015-04-15 15:40:50 +00:00
|
|
|
_argumentTypes.cbegin(),
|
|
|
|
_argumentTypes.cend(),
|
2015-08-31 16:44:29 +00:00
|
|
|
paramTypes.cbegin(),
|
2015-04-15 15:40:50 +00:00
|
|
|
[](TypePointer const& argumentType, TypePointer const& parameterType)
|
|
|
|
{
|
|
|
|
return argumentType->isImplicitlyConvertibleTo(*parameterType);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-06-28 15:43:09 +00:00
|
|
|
bool FunctionType::hasEqualParameterTypes(FunctionType const& _other) const
|
2015-04-15 15:40:50 +00:00
|
|
|
{
|
|
|
|
if (m_parameterTypes.size() != _other.m_parameterTypes.size())
|
|
|
|
return false;
|
|
|
|
return equal(
|
|
|
|
m_parameterTypes.cbegin(),
|
|
|
|
m_parameterTypes.cend(),
|
|
|
|
_other.m_parameterTypes.cbegin(),
|
|
|
|
[](TypePointer const& _a, TypePointer const& _b) -> bool { return *_a == *_b; }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-06-28 11:31:23 +00:00
|
|
|
bool FunctionType::hasEqualReturnTypes(FunctionType const& _other) const
|
|
|
|
{
|
|
|
|
if (m_returnParameterTypes.size() != _other.m_returnParameterTypes.size())
|
|
|
|
return false;
|
|
|
|
return equal(
|
|
|
|
m_returnParameterTypes.cbegin(),
|
|
|
|
m_returnParameterTypes.cend(),
|
|
|
|
_other.m_returnParameterTypes.cbegin(),
|
|
|
|
[](TypePointer const& _a, TypePointer const& _b) -> bool { return *_a == *_b; }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FunctionType::equalExcludingStateMutability(FunctionType const& _other) const
|
|
|
|
{
|
|
|
|
if (m_kind != _other.m_kind)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!hasEqualParameterTypes(_other) || !hasEqualReturnTypes(_other))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
//@todo this is ugly, but cannot be prevented right now
|
|
|
|
if (m_gasSet != _other.m_gasSet || m_valueSet != _other.m_valueSet)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (bound() != _other.bound())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
solAssert(!bound() || *selfType() == *_other.selfType(), "");
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-05-15 16:02:09 +00:00
|
|
|
bool FunctionType::isBareCall() const
|
|
|
|
{
|
2017-02-11 03:13:36 +00:00
|
|
|
switch (m_kind)
|
2015-05-15 16:02:09 +00:00
|
|
|
{
|
2017-08-01 09:32:23 +00:00
|
|
|
case Kind::BareCall:
|
2017-02-11 03:13:36 +00:00
|
|
|
case Kind::BareCallCode:
|
|
|
|
case Kind::BareDelegateCall:
|
2018-08-15 12:40:20 +00:00
|
|
|
case Kind::BareStaticCall:
|
2017-02-11 03:13:36 +00:00
|
|
|
case Kind::ECRecover:
|
|
|
|
case Kind::SHA256:
|
|
|
|
case Kind::RIPEMD160:
|
2015-05-15 16:02:09 +00:00
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-05 15:19:23 +00:00
|
|
|
string FunctionType::externalSignature() const
|
2015-01-07 01:27:05 +00:00
|
|
|
{
|
2015-10-05 15:19:23 +00:00
|
|
|
solAssert(m_declaration != nullptr, "External signature of function needs declaration");
|
2017-07-27 19:56:29 +00:00
|
|
|
solAssert(!m_declaration->name().empty(), "Fallback function has no signature.");
|
2018-08-15 15:11:43 +00:00
|
|
|
switch (kind())
|
|
|
|
{
|
|
|
|
case Kind::Internal:
|
|
|
|
case Kind::External:
|
|
|
|
case Kind::DelegateCall:
|
|
|
|
case Kind::Event:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
solAssert(false, "Invalid function type for requesting external signature.");
|
|
|
|
}
|
2015-10-05 15:19:23 +00:00
|
|
|
|
2017-06-08 09:14:58 +00:00
|
|
|
bool const inLibrary = dynamic_cast<ContractDefinition const&>(*m_declaration->scope()).isLibrary();
|
2015-10-02 11:11:38 +00:00
|
|
|
FunctionTypePointer external = interfaceFunctionType();
|
2015-04-21 08:59:48 +00:00
|
|
|
solAssert(!!external, "External function type requested.");
|
2017-06-08 09:14:58 +00:00
|
|
|
auto parameterTypes = external->parameterTypes();
|
|
|
|
auto typeStrings = parameterTypes | boost::adaptors::transformed([&](TypePointer _t) -> string
|
2015-03-23 17:08:45 +00:00
|
|
|
{
|
2017-06-08 09:14:58 +00:00
|
|
|
solAssert(_t, "Parameter should have external type.");
|
|
|
|
string typeName = _t->signatureInExternalFunction(inLibrary);
|
|
|
|
if (inLibrary && _t->dataStoredIn(DataLocation::Storage))
|
|
|
|
typeName += " storage";
|
|
|
|
return typeName;
|
|
|
|
});
|
|
|
|
return m_declaration->name() + "(" + boost::algorithm::join(typeStrings, ",") + ")";
|
2015-01-07 01:27:05 +00:00
|
|
|
}
|
|
|
|
|
2015-04-15 15:40:50 +00:00
|
|
|
u256 FunctionType::externalIdentifier() const
|
|
|
|
{
|
2016-10-05 10:30:28 +00:00
|
|
|
return FixedHash<4>::Arith(FixedHash<4>(dev::keccak256(externalSignature())));
|
2015-04-15 15:40:50 +00:00
|
|
|
}
|
|
|
|
|
2017-03-01 18:12:40 +00:00
|
|
|
bool FunctionType::isPure() const
|
|
|
|
{
|
2017-08-28 12:35:28 +00:00
|
|
|
// FIXME: replace this with m_stateMutability == StateMutability::Pure once
|
|
|
|
// the callgraph analyzer is in place
|
2017-03-01 18:12:40 +00:00
|
|
|
return
|
2018-08-08 15:31:46 +00:00
|
|
|
m_kind == Kind::KECCAK256 ||
|
2017-02-11 03:13:36 +00:00
|
|
|
m_kind == Kind::ECRecover ||
|
|
|
|
m_kind == Kind::SHA256 ||
|
|
|
|
m_kind == Kind::RIPEMD160 ||
|
|
|
|
m_kind == Kind::AddMod ||
|
|
|
|
m_kind == Kind::MulMod ||
|
2018-05-15 11:04:49 +00:00
|
|
|
m_kind == Kind::ObjectCreation ||
|
|
|
|
m_kind == Kind::ABIEncode ||
|
|
|
|
m_kind == Kind::ABIEncodePacked ||
|
|
|
|
m_kind == Kind::ABIEncodeWithSelector ||
|
2018-06-30 16:09:13 +00:00
|
|
|
m_kind == Kind::ABIEncodeWithSignature ||
|
|
|
|
m_kind == Kind::ABIDecode;
|
2017-03-01 18:12:40 +00:00
|
|
|
}
|
|
|
|
|
2015-01-12 12:29:16 +00:00
|
|
|
TypePointers FunctionType::parseElementaryTypeVector(strings const& _types)
|
2015-01-12 11:46:52 +00:00
|
|
|
{
|
|
|
|
TypePointers pointers;
|
|
|
|
pointers.reserve(_types.size());
|
|
|
|
for (string const& type: _types)
|
2015-02-10 16:53:43 +00:00
|
|
|
pointers.push_back(Type::fromElementaryTypeName(type));
|
2015-01-12 11:46:52 +00:00
|
|
|
return pointers;
|
|
|
|
}
|
|
|
|
|
2015-01-12 11:47:37 +00:00
|
|
|
TypePointer FunctionType::copyAndSetGasOrValue(bool _setGas, bool _setValue) const
|
|
|
|
{
|
2015-04-22 16:53:58 +00:00
|
|
|
return make_shared<FunctionType>(
|
|
|
|
m_parameterTypes,
|
|
|
|
m_returnParameterTypes,
|
2015-04-27 11:07:25 +00:00
|
|
|
m_parameterNames,
|
|
|
|
m_returnParameterNames,
|
2017-02-11 03:13:36 +00:00
|
|
|
m_kind,
|
2015-04-22 16:53:58 +00:00
|
|
|
m_arbitraryParameters,
|
2017-08-09 20:52:25 +00:00
|
|
|
m_stateMutability,
|
2017-08-28 13:40:28 +00:00
|
|
|
m_declaration,
|
2015-04-22 16:53:58 +00:00
|
|
|
m_gasSet || _setGas,
|
2015-11-25 13:23:35 +00:00
|
|
|
m_valueSet || _setValue,
|
|
|
|
m_bound
|
2015-04-22 16:53:58 +00:00
|
|
|
);
|
2015-01-12 11:47:37 +00:00
|
|
|
}
|
|
|
|
|
2018-11-22 13:41:07 +00:00
|
|
|
FunctionTypePointer FunctionType::asCallableFunction(bool _inLibrary, bool _bound) const
|
2015-06-22 16:05:13 +00:00
|
|
|
{
|
2018-11-22 14:37:26 +00:00
|
|
|
if (_bound)
|
|
|
|
solAssert(!m_parameterTypes.empty(), "");
|
2016-10-14 18:30:04 +00:00
|
|
|
|
2015-06-22 18:50:29 +00:00
|
|
|
TypePointers parameterTypes;
|
|
|
|
for (auto const& t: m_parameterTypes)
|
|
|
|
{
|
|
|
|
auto refType = dynamic_cast<ReferenceType const*>(t.get());
|
|
|
|
if (refType && refType->location() == DataLocation::CallData)
|
2017-03-01 15:02:36 +00:00
|
|
|
parameterTypes.push_back(refType->copyForLocation(DataLocation::Memory, true));
|
2015-06-22 18:50:29 +00:00
|
|
|
else
|
|
|
|
parameterTypes.push_back(t);
|
|
|
|
}
|
|
|
|
|
2017-02-11 03:13:36 +00:00
|
|
|
Kind kind = m_kind;
|
2016-04-26 23:02:10 +00:00
|
|
|
if (_inLibrary)
|
|
|
|
{
|
|
|
|
solAssert(!!m_declaration, "Declaration has to be available.");
|
|
|
|
if (!m_declaration->isPublic())
|
2017-02-11 03:13:36 +00:00
|
|
|
kind = Kind::Internal; // will be inlined
|
2016-04-26 23:02:10 +00:00
|
|
|
else
|
2017-02-11 03:13:36 +00:00
|
|
|
kind = Kind::DelegateCall;
|
2016-04-26 23:02:10 +00:00
|
|
|
}
|
|
|
|
|
2015-06-22 16:05:13 +00:00
|
|
|
return make_shared<FunctionType>(
|
2015-06-22 18:50:29 +00:00
|
|
|
parameterTypes,
|
2018-02-20 23:40:38 +00:00
|
|
|
m_returnParameterTypes,
|
2015-06-22 16:05:13 +00:00
|
|
|
m_parameterNames,
|
2016-06-01 21:39:19 +00:00
|
|
|
m_returnParameterNames,
|
2017-02-11 03:13:36 +00:00
|
|
|
kind,
|
2015-06-22 16:05:13 +00:00
|
|
|
m_arbitraryParameters,
|
2017-08-09 20:52:25 +00:00
|
|
|
m_stateMutability,
|
2017-08-28 13:40:28 +00:00
|
|
|
m_declaration,
|
2015-06-22 16:05:13 +00:00
|
|
|
m_gasSet,
|
2015-11-25 13:23:35 +00:00
|
|
|
m_valueSet,
|
|
|
|
_bound
|
2015-06-22 16:05:13 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-19 12:18:56 +00:00
|
|
|
TypePointer const& FunctionType::selfType() const
|
2015-11-25 13:23:35 +00:00
|
|
|
{
|
2016-09-06 21:10:06 +00:00
|
|
|
solAssert(bound(), "Function is not bound.");
|
|
|
|
solAssert(m_parameterTypes.size() > 0, "Function has no self type.");
|
2015-11-25 13:23:35 +00:00
|
|
|
return m_parameterTypes.at(0);
|
|
|
|
}
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
ASTPointer<ASTString> FunctionType::documentation() const
|
2015-01-29 15:39:30 +00:00
|
|
|
{
|
2015-01-29 16:28:14 +00:00
|
|
|
auto function = dynamic_cast<Documented const*>(m_declaration);
|
2015-01-29 15:39:30 +00:00
|
|
|
if (function)
|
2015-08-31 16:44:29 +00:00
|
|
|
return function->documentation();
|
2015-01-29 15:39:30 +00:00
|
|
|
|
|
|
|
return ASTPointer<ASTString>();
|
|
|
|
}
|
|
|
|
|
2018-05-18 16:03:41 +00:00
|
|
|
bool FunctionType::padArguments() const
|
|
|
|
{
|
|
|
|
// No padding only for hash functions, low-level calls and the packed encoding function.
|
|
|
|
switch (m_kind)
|
|
|
|
{
|
|
|
|
case Kind::BareCall:
|
|
|
|
case Kind::BareCallCode:
|
|
|
|
case Kind::BareDelegateCall:
|
2018-08-15 12:40:20 +00:00
|
|
|
case Kind::BareStaticCall:
|
2018-05-18 16:03:41 +00:00
|
|
|
case Kind::SHA256:
|
|
|
|
case Kind::RIPEMD160:
|
2018-08-08 15:31:46 +00:00
|
|
|
case Kind::KECCAK256:
|
2018-05-18 16:03:41 +00:00
|
|
|
case Kind::ABIEncodePacked:
|
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-23 17:32:46 +00:00
|
|
|
string MappingType::richIdentifier() const
|
2017-01-17 09:47:44 +00:00
|
|
|
{
|
2017-01-19 12:18:56 +00:00
|
|
|
return "t_mapping" + identifierList(m_keyType, m_valueType);
|
2017-01-17 09:47:44 +00:00
|
|
|
}
|
|
|
|
|
2014-10-29 18:28:30 +00:00
|
|
|
bool MappingType::operator==(Type const& _other) const
|
2014-10-20 10:41:56 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_other.category() != category())
|
2014-10-20 10:41:56 +00:00
|
|
|
return false;
|
|
|
|
MappingType const& other = dynamic_cast<MappingType const&>(_other);
|
|
|
|
return *other.m_keyType == *m_keyType && *other.m_valueType == *m_valueType;
|
|
|
|
}
|
|
|
|
|
2015-06-09 12:26:08 +00:00
|
|
|
string MappingType::toString(bool _short) const
|
2014-11-13 00:12:57 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
return "mapping(" + keyType()->toString(_short) + " => " + valueType()->toString(_short) + ")";
|
2014-11-13 00:12:57 +00:00
|
|
|
}
|
|
|
|
|
2017-06-08 09:14:58 +00:00
|
|
|
string MappingType::canonicalName() const
|
2015-10-05 15:19:23 +00:00
|
|
|
{
|
2017-06-08 09:14:58 +00:00
|
|
|
return "mapping(" + keyType()->canonicalName() + " => " + valueType()->canonicalName() + ")";
|
2015-10-05 15:19:23 +00:00
|
|
|
}
|
|
|
|
|
2018-02-23 17:32:46 +00:00
|
|
|
string TypeType::richIdentifier() const
|
2017-01-17 09:47:44 +00:00
|
|
|
{
|
2017-01-19 12:18:56 +00:00
|
|
|
return "t_type" + identifierList(actualType());
|
2017-01-17 09:47:44 +00:00
|
|
|
}
|
|
|
|
|
2014-10-29 18:28:30 +00:00
|
|
|
bool TypeType::operator==(Type const& _other) const
|
2014-10-20 10:41:56 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_other.category() != category())
|
2014-10-20 10:41:56 +00:00
|
|
|
return false;
|
|
|
|
TypeType const& other = dynamic_cast<TypeType const&>(_other);
|
2015-08-31 16:44:29 +00:00
|
|
|
return *actualType() == *other.actualType();
|
2014-10-20 10:41:56 +00:00
|
|
|
}
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
u256 TypeType::storageSize() const
|
2015-03-13 09:52:34 +00:00
|
|
|
{
|
2017-07-19 01:19:00 +00:00
|
|
|
solAssert(false, "Storage size of non-storable type type requested.");
|
2015-03-13 09:52:34 +00:00
|
|
|
}
|
|
|
|
|
2015-09-10 17:40:07 +00:00
|
|
|
unsigned TypeType::sizeOnStack() const
|
|
|
|
{
|
|
|
|
if (auto contractType = dynamic_cast<ContractType const*>(m_actualType.get()))
|
|
|
|
if (contractType->contractDefinition().isLibrary())
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-11-25 13:23:35 +00:00
|
|
|
MemberList::MemberMap TypeType::nativeMembers(ContractDefinition const* _currentScope) const
|
2015-01-19 18:18:34 +00:00
|
|
|
{
|
2015-11-25 13:23:35 +00:00
|
|
|
MemberList::MemberMap members;
|
|
|
|
if (m_actualType->category() == Category::Contract)
|
2015-01-19 18:18:34 +00:00
|
|
|
{
|
2015-11-25 13:23:35 +00:00
|
|
|
ContractDefinition const& contract = dynamic_cast<ContractType const&>(*m_actualType).contractDefinition();
|
2015-12-18 14:56:26 +00:00
|
|
|
bool isBase = false;
|
|
|
|
if (_currentScope != nullptr)
|
|
|
|
{
|
|
|
|
auto const& currentBases = _currentScope->annotation().linearizedBaseContracts;
|
|
|
|
isBase = (find(currentBases.begin(), currentBases.end(), &contract) != currentBases.end());
|
|
|
|
}
|
2015-11-25 13:23:35 +00:00
|
|
|
if (contract.isLibrary())
|
2016-04-26 23:02:10 +00:00
|
|
|
for (FunctionDefinition const* function: contract.definedFunctions())
|
2018-03-13 16:18:21 +00:00
|
|
|
if (function->isVisibleAsLibraryMember())
|
2016-04-26 23:02:10 +00:00
|
|
|
members.push_back(MemberList::Member(
|
|
|
|
function->name(),
|
2018-11-22 13:41:07 +00:00
|
|
|
FunctionType(*function).asCallableFunction(true),
|
2016-04-26 23:02:10 +00:00
|
|
|
function
|
|
|
|
));
|
2015-12-18 14:56:26 +00:00
|
|
|
if (isBase)
|
2015-02-12 14:19:04 +00:00
|
|
|
{
|
2015-12-18 14:56:26 +00:00
|
|
|
// We are accessing the type of a base contract, so add all public and protected
|
|
|
|
// members. Note that this does not add inherited functions on purpose.
|
|
|
|
for (Declaration const* decl: contract.inheritableMembers())
|
|
|
|
members.push_back(MemberList::Member(decl->name(), decl->type(), decl));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (auto const& stru: contract.definedStructs())
|
|
|
|
members.push_back(MemberList::Member(stru->name(), stru->type(), stru));
|
|
|
|
for (auto const& enu: contract.definedEnums())
|
|
|
|
members.push_back(MemberList::Member(enu->name(), enu->type(), enu));
|
2015-02-12 14:19:04 +00:00
|
|
|
}
|
2015-01-19 18:18:34 +00:00
|
|
|
}
|
2015-11-25 13:23:35 +00:00
|
|
|
else if (m_actualType->category() == Category::Enum)
|
|
|
|
{
|
|
|
|
EnumDefinition const& enumDef = dynamic_cast<EnumType const&>(*m_actualType).enumDefinition();
|
|
|
|
auto enumType = make_shared<EnumType>(enumDef);
|
|
|
|
for (ASTPointer<EnumValue> const& enumValue: enumDef.members())
|
|
|
|
members.push_back(MemberList::Member(enumValue->name(), enumType));
|
|
|
|
}
|
|
|
|
return members;
|
2015-01-19 18:18:34 +00:00
|
|
|
}
|
|
|
|
|
2015-01-22 00:02:38 +00:00
|
|
|
ModifierType::ModifierType(const ModifierDefinition& _modifier)
|
|
|
|
{
|
|
|
|
TypePointers params;
|
2015-08-31 16:44:29 +00:00
|
|
|
params.reserve(_modifier.parameters().size());
|
|
|
|
for (ASTPointer<VariableDeclaration> const& var: _modifier.parameters())
|
2015-09-16 14:56:30 +00:00
|
|
|
params.push_back(var->annotation().type);
|
2015-01-22 00:02:38 +00:00
|
|
|
swap(params, m_parameterTypes);
|
|
|
|
}
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
u256 ModifierType::storageSize() const
|
2015-03-13 09:52:34 +00:00
|
|
|
{
|
2017-07-19 01:19:00 +00:00
|
|
|
solAssert(false, "Storage size of non-storable type type requested.");
|
2015-03-13 09:52:34 +00:00
|
|
|
}
|
|
|
|
|
2018-02-23 17:32:46 +00:00
|
|
|
string ModifierType::richIdentifier() const
|
2017-01-17 09:47:44 +00:00
|
|
|
{
|
2017-01-19 12:18:56 +00:00
|
|
|
return "t_modifier" + identifierList(m_parameterTypes);
|
2017-01-17 09:47:44 +00:00
|
|
|
}
|
|
|
|
|
2015-01-22 00:02:38 +00:00
|
|
|
bool ModifierType::operator==(Type const& _other) const
|
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
if (_other.category() != category())
|
2015-01-22 00:02:38 +00:00
|
|
|
return false;
|
|
|
|
ModifierType const& other = dynamic_cast<ModifierType const&>(_other);
|
|
|
|
|
|
|
|
if (m_parameterTypes.size() != other.m_parameterTypes.size())
|
|
|
|
return false;
|
|
|
|
auto typeCompare = [](TypePointer const& _a, TypePointer const& _b) -> bool { return *_a == *_b; };
|
|
|
|
|
|
|
|
if (!equal(m_parameterTypes.cbegin(), m_parameterTypes.cend(),
|
|
|
|
other.m_parameterTypes.cbegin(), typeCompare))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-06-09 12:26:08 +00:00
|
|
|
string ModifierType::toString(bool _short) const
|
2015-01-22 00:02:38 +00:00
|
|
|
{
|
|
|
|
string name = "modifier (";
|
|
|
|
for (auto it = m_parameterTypes.begin(); it != m_parameterTypes.end(); ++it)
|
2015-06-09 12:26:08 +00:00
|
|
|
name += (*it)->toString(_short) + (it + 1 == m_parameterTypes.end() ? "" : ",");
|
2015-01-22 00:02:38 +00:00
|
|
|
return name + ")";
|
|
|
|
}
|
2015-01-19 18:18:34 +00:00
|
|
|
|
2018-02-23 17:32:46 +00:00
|
|
|
string ModuleType::richIdentifier() const
|
2017-01-17 09:47:44 +00:00
|
|
|
{
|
2018-08-08 14:26:30 +00:00
|
|
|
return "t_module_" + to_string(m_sourceUnit.id());
|
2017-01-17 09:47:44 +00:00
|
|
|
}
|
|
|
|
|
2015-12-15 14:46:03 +00:00
|
|
|
bool ModuleType::operator==(Type const& _other) const
|
2015-11-25 13:23:35 +00:00
|
|
|
{
|
2015-12-15 14:46:03 +00:00
|
|
|
if (_other.category() != category())
|
|
|
|
return false;
|
|
|
|
return &m_sourceUnit == &dynamic_cast<ModuleType const&>(_other).m_sourceUnit;
|
|
|
|
}
|
|
|
|
|
|
|
|
MemberList::MemberMap ModuleType::nativeMembers(ContractDefinition const*) const
|
|
|
|
{
|
|
|
|
MemberList::MemberMap symbols;
|
|
|
|
for (auto const& symbolName: m_sourceUnit.annotation().exportedSymbols)
|
|
|
|
for (Declaration const* symbol: symbolName.second)
|
|
|
|
symbols.push_back(MemberList::Member(symbolName.first, symbol->type(), symbol));
|
|
|
|
return symbols;
|
|
|
|
}
|
|
|
|
|
|
|
|
string ModuleType::toString(bool) const
|
|
|
|
{
|
|
|
|
return string("module \"") + m_sourceUnit.annotation().path + string("\"");
|
2015-11-25 13:23:35 +00:00
|
|
|
}
|
|
|
|
|
2018-02-23 17:32:46 +00:00
|
|
|
string MagicType::richIdentifier() const
|
2017-01-17 09:47:44 +00:00
|
|
|
{
|
|
|
|
switch (m_kind)
|
|
|
|
{
|
|
|
|
case Kind::Block:
|
|
|
|
return "t_magic_block";
|
|
|
|
case Kind::Message:
|
|
|
|
return "t_magic_message";
|
|
|
|
case Kind::Transaction:
|
|
|
|
return "t_magic_transaction";
|
2017-07-31 23:55:13 +00:00
|
|
|
case Kind::ABI:
|
|
|
|
return "t_magic_abi";
|
2017-01-17 09:47:44 +00:00
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2015-11-25 13:23:35 +00:00
|
|
|
bool MagicType::operator==(Type const& _other) const
|
|
|
|
{
|
|
|
|
if (_other.category() != category())
|
|
|
|
return false;
|
|
|
|
MagicType const& other = dynamic_cast<MagicType const&>(_other);
|
|
|
|
return other.m_kind == m_kind;
|
|
|
|
}
|
|
|
|
|
|
|
|
MemberList::MemberMap MagicType::nativeMembers(ContractDefinition const*) const
|
2014-11-24 12:23:58 +00:00
|
|
|
{
|
|
|
|
switch (m_kind)
|
|
|
|
{
|
2015-02-09 13:08:48 +00:00
|
|
|
case Kind::Block:
|
2015-11-25 13:23:35 +00:00
|
|
|
return MemberList::MemberMap({
|
2018-09-05 15:59:55 +00:00
|
|
|
{"coinbase", make_shared<AddressType>(StateMutability::Payable)},
|
2015-03-16 17:06:34 +00:00
|
|
|
{"timestamp", make_shared<IntegerType>(256)},
|
2017-08-28 12:35:28 +00:00
|
|
|
{"blockhash", make_shared<FunctionType>(strings{"uint"}, strings{"bytes32"}, FunctionType::Kind::BlockHash, false, StateMutability::View)},
|
2015-03-16 17:06:34 +00:00
|
|
|
{"difficulty", make_shared<IntegerType>(256)},
|
|
|
|
{"number", make_shared<IntegerType>(256)},
|
|
|
|
{"gaslimit", make_shared<IntegerType>(256)}
|
2015-06-08 10:09:24 +00:00
|
|
|
});
|
2015-02-09 13:08:48 +00:00
|
|
|
case Kind::Message:
|
2015-11-25 13:23:35 +00:00
|
|
|
return MemberList::MemberMap({
|
2018-09-05 15:59:55 +00:00
|
|
|
{"sender", make_shared<AddressType>(StateMutability::Payable)},
|
2015-03-16 17:06:34 +00:00
|
|
|
{"gas", make_shared<IntegerType>(256)},
|
|
|
|
{"value", make_shared<IntegerType>(256)},
|
2015-06-17 10:01:39 +00:00
|
|
|
{"data", make_shared<ArrayType>(DataLocation::CallData)},
|
2015-03-16 17:06:34 +00:00
|
|
|
{"sig", make_shared<FixedBytesType>(4)}
|
2015-06-08 10:09:24 +00:00
|
|
|
});
|
2015-02-09 13:08:48 +00:00
|
|
|
case Kind::Transaction:
|
2015-11-25 13:23:35 +00:00
|
|
|
return MemberList::MemberMap({
|
2018-09-05 15:59:55 +00:00
|
|
|
{"origin", make_shared<AddressType>(StateMutability::Payable)},
|
2015-03-16 17:06:34 +00:00
|
|
|
{"gasprice", make_shared<IntegerType>(256)}
|
2015-06-08 10:09:24 +00:00
|
|
|
});
|
2017-07-31 23:55:13 +00:00
|
|
|
case Kind::ABI:
|
|
|
|
return MemberList::MemberMap({
|
|
|
|
{"encode", make_shared<FunctionType>(
|
|
|
|
TypePointers(),
|
|
|
|
TypePointers{make_shared<ArrayType>(DataLocation::Memory)},
|
|
|
|
strings{},
|
|
|
|
strings{},
|
|
|
|
FunctionType::Kind::ABIEncode,
|
|
|
|
true,
|
|
|
|
StateMutability::Pure
|
|
|
|
)},
|
|
|
|
{"encodePacked", make_shared<FunctionType>(
|
|
|
|
TypePointers(),
|
|
|
|
TypePointers{make_shared<ArrayType>(DataLocation::Memory)},
|
|
|
|
strings{},
|
|
|
|
strings{},
|
|
|
|
FunctionType::Kind::ABIEncodePacked,
|
|
|
|
true,
|
|
|
|
StateMutability::Pure
|
|
|
|
)},
|
|
|
|
{"encodeWithSelector", make_shared<FunctionType>(
|
|
|
|
TypePointers{make_shared<FixedBytesType>(4)},
|
|
|
|
TypePointers{make_shared<ArrayType>(DataLocation::Memory)},
|
|
|
|
strings{},
|
|
|
|
strings{},
|
|
|
|
FunctionType::Kind::ABIEncodeWithSelector,
|
|
|
|
true,
|
|
|
|
StateMutability::Pure
|
|
|
|
)},
|
|
|
|
{"encodeWithSignature", make_shared<FunctionType>(
|
|
|
|
TypePointers{make_shared<ArrayType>(DataLocation::Memory, true)},
|
|
|
|
TypePointers{make_shared<ArrayType>(DataLocation::Memory)},
|
|
|
|
strings{},
|
|
|
|
strings{},
|
|
|
|
FunctionType::Kind::ABIEncodeWithSignature,
|
|
|
|
true,
|
|
|
|
StateMutability::Pure
|
2018-06-30 16:09:13 +00:00
|
|
|
)},
|
|
|
|
{"decode", make_shared<FunctionType>(
|
|
|
|
TypePointers(),
|
|
|
|
TypePointers(),
|
|
|
|
strings{},
|
|
|
|
strings{},
|
|
|
|
FunctionType::Kind::ABIDecode,
|
|
|
|
true,
|
|
|
|
StateMutability::Pure
|
2017-07-31 23:55:13 +00:00
|
|
|
)}
|
|
|
|
});
|
2014-11-24 12:23:58 +00:00
|
|
|
default:
|
2017-07-19 01:19:00 +00:00
|
|
|
solAssert(false, "Unknown kind of magic.");
|
2014-11-24 12:23:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-09 12:26:08 +00:00
|
|
|
string MagicType::toString(bool) const
|
2014-11-24 12:23:58 +00:00
|
|
|
{
|
|
|
|
switch (m_kind)
|
|
|
|
{
|
2015-02-09 13:08:48 +00:00
|
|
|
case Kind::Block:
|
2014-11-24 12:23:58 +00:00
|
|
|
return "block";
|
2015-02-09 13:08:48 +00:00
|
|
|
case Kind::Message:
|
2014-11-24 12:23:58 +00:00
|
|
|
return "msg";
|
2015-02-09 13:08:48 +00:00
|
|
|
case Kind::Transaction:
|
2014-11-24 12:23:58 +00:00
|
|
|
return "tx";
|
2017-07-31 23:55:13 +00:00
|
|
|
case Kind::ABI:
|
|
|
|
return "abi";
|
2014-11-24 12:23:58 +00:00
|
|
|
default:
|
2017-07-19 01:19:00 +00:00
|
|
|
solAssert(false, "Unknown kind of magic.");
|
2014-11-24 12:23:58 +00:00
|
|
|
}
|
|
|
|
}
|