2014-10-13 16:22:15 +00:00
|
|
|
/*
|
2014-10-16 12:08:54 +00:00
|
|
|
This file is part of cpp-ethereum.
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
cpp-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
cpp-ethereum is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
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
|
|
|
|
along with cpp-ethereum. 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
|
|
|
|
*/
|
|
|
|
|
2014-10-23 19:46:39 +00:00
|
|
|
#include <libdevcore/CommonIO.h>
|
2014-10-20 10:41:56 +00:00
|
|
|
#include <libdevcore/CommonData.h>
|
2014-12-17 15:23:18 +00:00
|
|
|
#include <libsolidity/Utils.h>
|
2014-10-13 16:22:15 +00:00
|
|
|
#include <libsolidity/Types.h>
|
|
|
|
#include <libsolidity/AST.h>
|
|
|
|
|
2014-11-04 12:24:35 +00:00
|
|
|
using namespace std;
|
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2014-12-06 01:19:10 +00:00
|
|
|
shared_ptr<Type const> Type::fromElementaryTypeName(Token::Value _typeToken)
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
2014-12-17 15:23:18 +00:00
|
|
|
solAssert(Token::isElementaryTypeName(_typeToken), "");
|
2014-11-05 13:20:56 +00:00
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
if (Token::INT <= _typeToken && _typeToken <= Token::HASH256)
|
|
|
|
{
|
2014-10-13 16:22:15 +00:00
|
|
|
int offset = _typeToken - Token::INT;
|
2014-11-05 10:38:26 +00:00
|
|
|
int bytes = offset % 33;
|
|
|
|
if (bytes == 0)
|
|
|
|
bytes = 32;
|
|
|
|
int modifier = offset / 33;
|
2014-12-06 01:19:10 +00:00
|
|
|
return make_shared<IntegerType const>(bytes * 8,
|
2014-11-05 10:38:26 +00:00
|
|
|
modifier == 0 ? IntegerType::Modifier::SIGNED :
|
|
|
|
modifier == 1 ? IntegerType::Modifier::UNSIGNED :
|
|
|
|
IntegerType::Modifier::HASH);
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
|
|
|
else if (_typeToken == Token::ADDRESS)
|
2014-12-06 01:19:10 +00:00
|
|
|
return make_shared<IntegerType const>(0, IntegerType::Modifier::ADDRESS);
|
2014-10-16 12:08:54 +00:00
|
|
|
else if (_typeToken == Token::BOOL)
|
2014-12-06 01:19:10 +00:00
|
|
|
return make_shared<BoolType const>();
|
2014-12-11 13:19:11 +00:00
|
|
|
else if (Token::STRING0 <= _typeToken && _typeToken <= Token::STRING32)
|
|
|
|
return make_shared<StaticStringType const>(int(_typeToken) - int(Token::STRING0));
|
2014-10-16 12:08:54 +00:00
|
|
|
else
|
2014-11-05 13:20:56 +00:00
|
|
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Unable to convert elementary typename " +
|
|
|
|
std::string(Token::toString(_typeToken)) + " to type."));
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
|
2014-12-06 01:19:10 +00:00
|
|
|
shared_ptr<Type const> Type::fromUserDefinedTypeName(UserDefinedTypeName const& _typeName)
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
2014-11-20 17:33:23 +00:00
|
|
|
Declaration const* declaration = _typeName.getReferencedDeclaration();
|
|
|
|
if (StructDefinition const* structDef = dynamic_cast<StructDefinition const*>(declaration))
|
2014-12-06 01:19:10 +00:00
|
|
|
return make_shared<StructType const>(*structDef);
|
2014-11-20 17:33:23 +00:00
|
|
|
else if (FunctionDefinition const* function = dynamic_cast<FunctionDefinition const*>(declaration))
|
2014-12-06 01:19:10 +00:00
|
|
|
return make_shared<FunctionType const>(*function);
|
2014-11-20 17:33:23 +00:00
|
|
|
else if (ContractDefinition const* contract = dynamic_cast<ContractDefinition const*>(declaration))
|
2014-12-06 01:19:10 +00:00
|
|
|
return make_shared<ContractType const>(*contract);
|
|
|
|
return shared_ptr<Type const>();
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
|
2014-12-06 01:19:10 +00:00
|
|
|
shared_ptr<Type const> Type::fromMapping(Mapping const& _typeName)
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
2014-11-10 16:31:09 +00:00
|
|
|
shared_ptr<Type const> keyType = _typeName.getKeyType().toType();
|
2014-11-20 17:33:23 +00:00
|
|
|
if (!keyType)
|
|
|
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Error resolving type name."));
|
2014-11-10 16:31:09 +00:00
|
|
|
shared_ptr<Type const> valueType = _typeName.getValueType().toType();
|
2014-11-20 17:33:23 +00:00
|
|
|
if (!valueType)
|
|
|
|
BOOST_THROW_EXCEPTION(_typeName.getValueType().createTypeError("Invalid type name"));
|
2014-12-06 01:19:10 +00:00
|
|
|
return make_shared<MappingType const>(keyType, valueType);
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
|
2014-12-06 01:19:10 +00:00
|
|
|
shared_ptr<Type const> Type::forLiteral(Literal const& _literal)
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
2014-10-16 12:08:54 +00:00
|
|
|
switch (_literal.getToken())
|
|
|
|
{
|
2014-10-13 16:22:15 +00:00
|
|
|
case Token::TRUE_LITERAL:
|
|
|
|
case Token::FALSE_LITERAL:
|
2014-12-06 01:19:10 +00:00
|
|
|
return make_shared<BoolType const>();
|
2014-10-13 16:22:15 +00:00
|
|
|
case Token::NUMBER:
|
|
|
|
return IntegerType::smallestTypeForLiteral(_literal.getValue());
|
|
|
|
case Token::STRING_LITERAL:
|
2014-12-09 17:46:18 +00:00
|
|
|
//@todo put larger strings into dynamic strings
|
|
|
|
return StaticStringType::smallestTypeForLiteral(_literal.getValue());
|
2014-10-13 16:22:15 +00:00
|
|
|
default:
|
2014-12-06 01:19:10 +00:00
|
|
|
return shared_ptr<Type const>();
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-20 09:19:43 +00:00
|
|
|
const MemberList Type::EmptyMemberList = MemberList();
|
|
|
|
|
2014-12-06 01:19:10 +00:00
|
|
|
shared_ptr<IntegerType const> IntegerType::smallestTypeForLiteral(string const& _literal)
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
2014-11-04 12:24:35 +00:00
|
|
|
bigint value(_literal);
|
2014-11-05 07:40:21 +00:00
|
|
|
bool isSigned = value < 0 || (!_literal.empty() && _literal.front() == '-');
|
|
|
|
if (isSigned)
|
|
|
|
// convert to positive number of same bit requirements
|
|
|
|
value = ((-value) - 1) << 1;
|
2014-11-04 12:24:35 +00:00
|
|
|
unsigned bytes = max(bytesRequired(value), 1u);
|
|
|
|
if (bytes > 32)
|
2014-12-06 01:19:10 +00:00
|
|
|
return shared_ptr<IntegerType const>();
|
|
|
|
return make_shared<IntegerType const>(bytes * 8, isSigned ? Modifier::SIGNED : Modifier::UNSIGNED);
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
|
2014-10-22 22:24:07 +00:00
|
|
|
IntegerType::IntegerType(int _bits, IntegerType::Modifier _modifier):
|
|
|
|
m_bits(_bits), m_modifier(_modifier)
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
|
|
|
if (isAddress())
|
2014-11-07 16:34:15 +00:00
|
|
|
m_bits = 160;
|
2014-12-17 15:23:18 +00:00
|
|
|
solAssert(m_bits > 0 && m_bits <= 256 && m_bits % 8 == 0,
|
|
|
|
"Invalid bit number for integer type: " + dev::toString(_bits));
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool IntegerType::isImplicitlyConvertibleTo(Type const& _convertTo) const
|
|
|
|
{
|
2014-10-20 10:41:56 +00:00
|
|
|
if (_convertTo.getCategory() != getCategory())
|
2014-10-13 16:22:15 +00:00
|
|
|
return false;
|
|
|
|
IntegerType const& convertTo = dynamic_cast<IntegerType const&>(_convertTo);
|
|
|
|
if (convertTo.m_bits < m_bits)
|
|
|
|
return false;
|
|
|
|
if (isAddress())
|
|
|
|
return convertTo.isAddress();
|
|
|
|
else if (isHash())
|
|
|
|
return convertTo.isHash();
|
|
|
|
else if (isSigned())
|
|
|
|
return convertTo.isSigned();
|
|
|
|
else
|
|
|
|
return !convertTo.isSigned() || convertTo.m_bits > m_bits;
|
|
|
|
}
|
|
|
|
|
2014-10-20 11:02:06 +00:00
|
|
|
bool IntegerType::isExplicitlyConvertibleTo(Type const& _convertTo) const
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
2014-12-04 18:38:24 +00:00
|
|
|
return _convertTo.getCategory() == getCategory() || _convertTo.getCategory() == Category::CONTRACT;
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool IntegerType::acceptsBinaryOperator(Token::Value _operator) const
|
|
|
|
{
|
2014-10-16 12:08:54 +00:00
|
|
|
if (isAddress())
|
|
|
|
return Token::isCompareOp(_operator);
|
|
|
|
else if (isHash())
|
|
|
|
return Token::isCompareOp(_operator) || Token::isBitOp(_operator);
|
|
|
|
else
|
2014-10-15 13:54:41 +00:00
|
|
|
return true;
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool IntegerType::acceptsUnaryOperator(Token::Value _operator) const
|
|
|
|
{
|
2014-10-20 10:41:56 +00:00
|
|
|
if (_operator == Token::DELETE)
|
|
|
|
return true;
|
|
|
|
if (isAddress())
|
|
|
|
return false;
|
|
|
|
if (_operator == Token::BIT_NOT)
|
|
|
|
return true;
|
|
|
|
if (isHash())
|
|
|
|
return false;
|
|
|
|
return _operator == Token::ADD || _operator == Token::SUB ||
|
|
|
|
_operator == Token::INC || _operator == Token::DEC;
|
|
|
|
}
|
|
|
|
|
2014-10-29 18:28:30 +00:00
|
|
|
bool IntegerType::operator==(Type const& _other) const
|
2014-10-20 10:41:56 +00:00
|
|
|
{
|
|
|
|
if (_other.getCategory() != getCategory())
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-11-04 12:24:35 +00:00
|
|
|
string IntegerType::toString() const
|
2014-10-16 15:57:27 +00:00
|
|
|
{
|
|
|
|
if (isAddress())
|
|
|
|
return "address";
|
2014-11-04 12:24:35 +00:00
|
|
|
string prefix = isHash() ? "hash" : (isSigned() ? "int" : "uint");
|
2014-10-16 15:57:27 +00:00
|
|
|
return prefix + dev::toString(m_bits);
|
|
|
|
}
|
|
|
|
|
2014-10-31 16:20:27 +00:00
|
|
|
u256 IntegerType::literalValue(Literal const& _literal) const
|
2014-10-20 10:41:56 +00:00
|
|
|
{
|
|
|
|
bigint value(_literal.getValue());
|
2014-10-30 00:20:32 +00:00
|
|
|
return u256(value);
|
2014-10-20 10:41:56 +00:00
|
|
|
}
|
|
|
|
|
2014-11-25 13:43:23 +00:00
|
|
|
const MemberList IntegerType::AddressMemberList =
|
2014-12-15 00:02:33 +00:00
|
|
|
MemberList({{"balance",
|
|
|
|
make_shared<IntegerType const>(256)},
|
|
|
|
{"callstring32",
|
|
|
|
make_shared<FunctionType const>(TypePointers({make_shared<StaticStringType const>(32)}),
|
|
|
|
TypePointers(), FunctionType::Location::BARE)},
|
|
|
|
{"callstring32string32",
|
|
|
|
make_shared<FunctionType const>(TypePointers({make_shared<StaticStringType const>(32),
|
|
|
|
make_shared<StaticStringType const>(32)}),
|
|
|
|
TypePointers(), FunctionType::Location::BARE)},
|
|
|
|
{"send",
|
|
|
|
make_shared<FunctionType const>(TypePointers({make_shared<IntegerType const>(256)}),
|
|
|
|
TypePointers(), FunctionType::Location::SEND)}});
|
2014-11-21 18:14:56 +00:00
|
|
|
|
2014-12-09 17:46:18 +00:00
|
|
|
shared_ptr<StaticStringType> StaticStringType::smallestTypeForLiteral(string const& _literal)
|
|
|
|
{
|
2014-12-11 13:19:11 +00:00
|
|
|
if (_literal.length() <= 32)
|
2014-12-09 17:46:18 +00:00
|
|
|
return make_shared<StaticStringType>(_literal.length());
|
|
|
|
return shared_ptr<StaticStringType>();
|
|
|
|
}
|
|
|
|
|
|
|
|
StaticStringType::StaticStringType(int _bytes): m_bytes(_bytes)
|
|
|
|
{
|
2014-12-17 15:23:18 +00:00
|
|
|
solAssert(m_bytes >= 0 && m_bytes <= 32,
|
|
|
|
"Invalid byte number for static string type: " + dev::toString(m_bytes));
|
2014-12-09 17:46:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool StaticStringType::isImplicitlyConvertibleTo(Type const& _convertTo) const
|
|
|
|
{
|
|
|
|
if (_convertTo.getCategory() != getCategory())
|
|
|
|
return false;
|
|
|
|
StaticStringType const& convertTo = dynamic_cast<StaticStringType const&>(_convertTo);
|
|
|
|
return convertTo.m_bytes >= m_bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StaticStringType::operator==(Type const& _other) const
|
|
|
|
{
|
|
|
|
if (_other.getCategory() != getCategory())
|
|
|
|
return false;
|
|
|
|
StaticStringType const& other = dynamic_cast<StaticStringType const&>(_other);
|
|
|
|
return other.m_bytes == m_bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
u256 StaticStringType::literalValue(const Literal& _literal) const
|
|
|
|
{
|
|
|
|
u256 value = 0;
|
|
|
|
for (char c: _literal.getValue())
|
|
|
|
value = (value << 8) | byte(c);
|
|
|
|
return value << ((32 - _literal.getValue().length()) * 8);
|
|
|
|
}
|
|
|
|
|
2014-10-20 11:02:06 +00:00
|
|
|
bool BoolType::isExplicitlyConvertibleTo(Type const& _convertTo) const
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
2014-10-15 13:54:41 +00:00
|
|
|
// conversion to integer is fine, but not to address
|
|
|
|
// this is an example of explicit conversions being not transitive (though implicit should be)
|
2014-10-20 10:41:56 +00:00
|
|
|
if (_convertTo.getCategory() == getCategory())
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2014-10-15 13:54:41 +00:00
|
|
|
IntegerType const& convertTo = dynamic_cast<IntegerType const&>(_convertTo);
|
|
|
|
if (!convertTo.isAddress())
|
|
|
|
return true;
|
|
|
|
}
|
2014-10-13 16:22:15 +00:00
|
|
|
return isImplicitlyConvertibleTo(_convertTo);
|
|
|
|
}
|
|
|
|
|
2014-10-31 16:20:27 +00:00
|
|
|
u256 BoolType::literalValue(Literal const& _literal) const
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
2014-10-20 10:41:56 +00:00
|
|
|
if (_literal.getToken() == Token::TRUE_LITERAL)
|
2014-10-30 00:20:32 +00:00
|
|
|
return u256(1);
|
2014-10-20 10:41:56 +00:00
|
|
|
else if (_literal.getToken() == Token::FALSE_LITERAL)
|
2014-10-30 00:20:32 +00:00
|
|
|
return u256(0);
|
2014-10-20 10:41:56 +00:00
|
|
|
else
|
2014-11-05 13:20:56 +00:00
|
|
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Bool type constructed from non-boolean literal."));
|
2014-10-20 10:41:56 +00:00
|
|
|
}
|
|
|
|
|
2014-11-20 17:33:23 +00:00
|
|
|
bool ContractType::isExplicitlyConvertibleTo(Type const& _convertTo) const
|
|
|
|
{
|
|
|
|
if (isImplicitlyConvertibleTo(_convertTo))
|
|
|
|
return true;
|
|
|
|
if (_convertTo.getCategory() == Category::INTEGER)
|
|
|
|
return dynamic_cast<IntegerType const&>(_convertTo).isAddress();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-10-29 18:28:30 +00:00
|
|
|
bool ContractType::operator==(Type const& _other) const
|
2014-10-20 10:41:56 +00:00
|
|
|
{
|
|
|
|
if (_other.getCategory() != getCategory())
|
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);
|
|
|
|
return other.m_contract == m_contract;
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
|
2014-11-07 01:06:37 +00:00
|
|
|
u256 ContractType::getStorageSize() const
|
|
|
|
{
|
|
|
|
u256 size = 0;
|
|
|
|
for (ASTPointer<VariableDeclaration> const& variable: m_contract.getStateVariables())
|
|
|
|
size += variable->getType()->getStorageSize();
|
|
|
|
return max<u256>(1, size);
|
|
|
|
}
|
|
|
|
|
2014-11-20 17:33:23 +00:00
|
|
|
string ContractType::toString() const
|
|
|
|
{
|
|
|
|
return "contract " + m_contract.getName();
|
|
|
|
}
|
|
|
|
|
2014-12-04 18:38:24 +00:00
|
|
|
MemberList const& ContractType::getMembers() const
|
|
|
|
{
|
|
|
|
// We need to lazy-initialize it because of recursive references.
|
|
|
|
if (!m_members)
|
|
|
|
{
|
|
|
|
map<string, shared_ptr<Type const>> members;
|
|
|
|
for (FunctionDefinition const* function: m_contract.getInterfaceFunctions())
|
|
|
|
members[function->getName()] = make_shared<FunctionType>(*function, false);
|
|
|
|
m_members.reset(new MemberList(members));
|
|
|
|
}
|
|
|
|
return *m_members;
|
|
|
|
}
|
|
|
|
|
2014-12-12 15:49:26 +00:00
|
|
|
shared_ptr<FunctionType const> const& ContractType::getConstructorType() const
|
|
|
|
{
|
|
|
|
if (!m_constructorType)
|
|
|
|
{
|
2014-12-16 15:15:34 +00:00
|
|
|
FunctionDefinition const* constructor = m_contract.getConstructor();
|
|
|
|
if (constructor)
|
|
|
|
m_constructorType = make_shared<FunctionType const>(*constructor);
|
2014-12-12 15:49:26 +00:00
|
|
|
else
|
|
|
|
m_constructorType = make_shared<FunctionType const>(TypePointers(), TypePointers());
|
|
|
|
}
|
|
|
|
return m_constructorType;
|
|
|
|
}
|
|
|
|
|
2014-12-04 18:38:24 +00:00
|
|
|
unsigned ContractType::getFunctionIndex(string const& _functionName) const
|
|
|
|
{
|
|
|
|
unsigned index = 0;
|
|
|
|
for (FunctionDefinition const* function: m_contract.getInterfaceFunctions())
|
|
|
|
{
|
|
|
|
if (function->getName() == _functionName)
|
|
|
|
return index;
|
|
|
|
++index;
|
|
|
|
}
|
|
|
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Index of non-existing contract function requested."));
|
|
|
|
}
|
|
|
|
|
2014-10-29 18:28:30 +00:00
|
|
|
bool StructType::operator==(Type const& _other) const
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
2014-10-20 10:41:56 +00:00
|
|
|
if (_other.getCategory() != getCategory())
|
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);
|
|
|
|
return other.m_struct == m_struct;
|
2014-10-13 16:22:15 +00:00
|
|
|
}
|
|
|
|
|
2014-11-07 01:06:37 +00:00
|
|
|
u256 StructType::getStorageSize() const
|
|
|
|
{
|
|
|
|
u256 size = 0;
|
2014-11-20 09:19:43 +00:00
|
|
|
for (pair<string, shared_ptr<Type const>> const& member: getMembers())
|
|
|
|
size += member.second->getStorageSize();
|
2014-11-07 01:06:37 +00:00
|
|
|
return max<u256>(1, size);
|
|
|
|
}
|
|
|
|
|
2014-11-13 00:12:57 +00:00
|
|
|
bool StructType::canLiveOutsideStorage() const
|
|
|
|
{
|
2014-11-20 09:19:43 +00:00
|
|
|
for (pair<string, shared_ptr<Type const>> const& member: getMembers())
|
|
|
|
if (!member.second->canLiveOutsideStorage())
|
2014-11-13 00:12:57 +00:00
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
string StructType::toString() const
|
|
|
|
{
|
|
|
|
return string("struct ") + m_struct.getName();
|
|
|
|
}
|
|
|
|
|
2014-11-20 09:19:43 +00:00
|
|
|
MemberList const& StructType::getMembers() const
|
2014-11-13 00:12:57 +00:00
|
|
|
{
|
2014-11-20 09:19:43 +00:00
|
|
|
// We need to lazy-initialize it because of recursive references.
|
|
|
|
if (!m_members)
|
|
|
|
{
|
|
|
|
map<string, shared_ptr<Type const>> members;
|
|
|
|
for (ASTPointer<VariableDeclaration> const& variable: m_struct.getMembers())
|
|
|
|
members[variable->getName()] = variable->getType();
|
|
|
|
m_members.reset(new MemberList(members));
|
|
|
|
}
|
|
|
|
return *m_members;
|
2014-11-13 00:12:57 +00:00
|
|
|
}
|
|
|
|
|
2014-11-20 09:19:43 +00:00
|
|
|
u256 StructType::getStorageOffsetOfMember(string const& _name) const
|
2014-11-13 00:12:57 +00:00
|
|
|
{
|
|
|
|
//@todo cache member offset?
|
|
|
|
u256 offset;
|
2014-11-20 09:19:43 +00:00
|
|
|
for (ASTPointer<VariableDeclaration> variable: m_struct.getMembers())
|
|
|
|
{
|
|
|
|
if (variable->getName() == _name)
|
|
|
|
return offset;
|
2014-12-02 16:53:25 +00:00
|
|
|
offset += variable->getType()->getStorageSize();
|
2014-11-20 09:19:43 +00:00
|
|
|
}
|
|
|
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Storage offset of non-existing member requested."));
|
2014-11-13 00:12:57 +00:00
|
|
|
}
|
|
|
|
|
2014-12-04 18:38:24 +00:00
|
|
|
FunctionType::FunctionType(FunctionDefinition const& _function, bool _isInternal)
|
2014-11-25 13:43:23 +00:00
|
|
|
{
|
|
|
|
TypePointers params;
|
|
|
|
TypePointers retParams;
|
|
|
|
params.reserve(_function.getParameters().size());
|
|
|
|
for (ASTPointer<VariableDeclaration> const& var: _function.getParameters())
|
|
|
|
params.push_back(var->getType());
|
|
|
|
retParams.reserve(_function.getReturnParameters().size());
|
|
|
|
for (ASTPointer<VariableDeclaration> const& var: _function.getReturnParameters())
|
|
|
|
retParams.push_back(var->getType());
|
|
|
|
swap(params, m_parameterTypes);
|
|
|
|
swap(retParams, m_returnParameterTypes);
|
2014-12-04 18:38:24 +00:00
|
|
|
m_location = _isInternal ? Location::INTERNAL : Location::EXTERNAL;
|
2014-11-25 13:43:23 +00:00
|
|
|
}
|
|
|
|
|
2014-10-29 18:28:30 +00:00
|
|
|
bool FunctionType::operator==(Type const& _other) const
|
2014-10-20 10:41:56 +00:00
|
|
|
{
|
|
|
|
if (_other.getCategory() != getCategory())
|
|
|
|
return false;
|
|
|
|
FunctionType const& other = dynamic_cast<FunctionType const&>(_other);
|
2014-11-25 13:43:23 +00:00
|
|
|
|
2014-12-04 18:38:24 +00:00
|
|
|
if (m_location != other.m_location)
|
|
|
|
return false;
|
2014-11-25 13:43:23 +00:00
|
|
|
if (m_parameterTypes.size() != other.m_parameterTypes.size() ||
|
|
|
|
m_returnParameterTypes.size() != other.m_returnParameterTypes.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;
|
|
|
|
if (!equal(m_returnParameterTypes.cbegin(), m_returnParameterTypes.cend(),
|
|
|
|
other.m_returnParameterTypes.cbegin(), typeCompare))
|
|
|
|
return false;
|
|
|
|
return true;
|
2014-10-20 10:41:56 +00:00
|
|
|
}
|
|
|
|
|
2014-11-13 00:12:57 +00:00
|
|
|
string FunctionType::toString() const
|
|
|
|
{
|
2014-11-25 13:43:23 +00:00
|
|
|
string name = "function (";
|
|
|
|
for (auto it = m_parameterTypes.begin(); it != m_parameterTypes.end(); ++it)
|
|
|
|
name += (*it)->toString() + (it + 1 == m_parameterTypes.end() ? "" : ",");
|
|
|
|
name += ") returns (";
|
|
|
|
for (auto it = m_returnParameterTypes.begin(); it != m_returnParameterTypes.end(); ++it)
|
|
|
|
name += (*it)->toString() + (it + 1 == m_returnParameterTypes.end() ? "" : ",");
|
|
|
|
return name + ")";
|
2014-11-13 00:12:57 +00:00
|
|
|
}
|
|
|
|
|
2014-11-25 17:23:39 +00:00
|
|
|
unsigned FunctionType::getSizeOnStack() const
|
|
|
|
{
|
|
|
|
switch (m_location)
|
|
|
|
{
|
|
|
|
case Location::INTERNAL:
|
|
|
|
return 1;
|
|
|
|
case Location::EXTERNAL:
|
|
|
|
return 2;
|
2014-12-10 22:01:40 +00:00
|
|
|
case Location::BARE:
|
|
|
|
return 1;
|
2014-11-25 17:23:39 +00:00
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-07 01:27:05 +00:00
|
|
|
std::string FunctionType::getCanonicalSignature() const
|
|
|
|
{
|
|
|
|
auto parameters = getParameterTypes();
|
|
|
|
std::string ret = "NAME("; //TODO: how to get function name from FunctionType
|
|
|
|
|
|
|
|
for (auto it = parameters.cbegin(); it != parameters.cend(); ++it)
|
|
|
|
ret += (*it)->toString() + (it + 1 == m_parameterTypes.end() ? "" : ",");
|
|
|
|
|
|
|
|
return ret + ")";
|
|
|
|
}
|
|
|
|
|
2014-10-29 18:28:30 +00:00
|
|
|
bool MappingType::operator==(Type const& _other) const
|
2014-10-20 10:41:56 +00:00
|
|
|
{
|
|
|
|
if (_other.getCategory() != getCategory())
|
|
|
|
return false;
|
|
|
|
MappingType const& other = dynamic_cast<MappingType const&>(_other);
|
|
|
|
return *other.m_keyType == *m_keyType && *other.m_valueType == *m_valueType;
|
|
|
|
}
|
|
|
|
|
2014-11-13 00:12:57 +00:00
|
|
|
string MappingType::toString() const
|
|
|
|
{
|
|
|
|
return "mapping(" + getKeyType()->toString() + " => " + getValueType()->toString() + ")";
|
|
|
|
}
|
|
|
|
|
2014-10-29 18:28:30 +00:00
|
|
|
bool TypeType::operator==(Type const& _other) const
|
2014-10-20 10:41:56 +00:00
|
|
|
{
|
|
|
|
if (_other.getCategory() != getCategory())
|
|
|
|
return false;
|
|
|
|
TypeType const& other = dynamic_cast<TypeType const&>(_other);
|
|
|
|
return *getActualType() == *other.getActualType();
|
|
|
|
}
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2014-11-24 12:23:58 +00:00
|
|
|
MagicType::MagicType(MagicType::Kind _kind):
|
|
|
|
m_kind(_kind)
|
|
|
|
{
|
|
|
|
switch (m_kind)
|
|
|
|
{
|
|
|
|
case Kind::BLOCK:
|
|
|
|
m_members = MemberList({{"coinbase", make_shared<IntegerType const>(0, IntegerType::Modifier::ADDRESS)},
|
|
|
|
{"timestamp", make_shared<IntegerType const>(256)},
|
|
|
|
{"prevhash", make_shared<IntegerType const>(256, IntegerType::Modifier::HASH)},
|
|
|
|
{"difficulty", make_shared<IntegerType const>(256)},
|
|
|
|
{"number", make_shared<IntegerType const>(256)},
|
|
|
|
{"gaslimit", make_shared<IntegerType const>(256)}});
|
|
|
|
break;
|
|
|
|
case Kind::MSG:
|
|
|
|
m_members = MemberList({{"sender", make_shared<IntegerType const>(0, IntegerType::Modifier::ADDRESS)},
|
2014-11-27 17:24:59 +00:00
|
|
|
{"gas", make_shared<IntegerType const>(256)},
|
2014-11-24 12:23:58 +00:00
|
|
|
{"value", make_shared<IntegerType const>(256)}});
|
|
|
|
break;
|
|
|
|
case Kind::TX:
|
|
|
|
m_members = MemberList({{"origin", make_shared<IntegerType const>(0, IntegerType::Modifier::ADDRESS)},
|
|
|
|
{"gasprice", make_shared<IntegerType const>(256)}});
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Unknown kind of magic."));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MagicType::operator==(Type const& _other) const
|
|
|
|
{
|
|
|
|
if (_other.getCategory() != getCategory())
|
|
|
|
return false;
|
|
|
|
MagicType const& other = dynamic_cast<MagicType const&>(_other);
|
|
|
|
return other.m_kind == m_kind;
|
|
|
|
}
|
|
|
|
|
|
|
|
string MagicType::toString() const
|
|
|
|
{
|
|
|
|
switch (m_kind)
|
|
|
|
{
|
|
|
|
case Kind::BLOCK:
|
|
|
|
return "block";
|
|
|
|
case Kind::MSG:
|
|
|
|
return "msg";
|
|
|
|
case Kind::TX:
|
|
|
|
return "tx";
|
|
|
|
default:
|
|
|
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Unknown kind of magic."));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
|
|
|
}
|