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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
2014-11-20 09:19:43 +00:00
|
|
|
#include <map>
|
2014-10-13 16:22:15 +00:00
|
|
|
#include <boost/noncopyable.hpp>
|
2016-02-18 22:39:11 +00:00
|
|
|
#include <boost/rational.hpp>
|
2014-10-20 10:41:56 +00:00
|
|
|
#include <libdevcore/Common.h>
|
2016-04-11 22:54:14 +00:00
|
|
|
#include <libdevcore/CommonIO.h>
|
2015-10-20 22:21:52 +00:00
|
|
|
#include <libsolidity/interface/Exceptions.h>
|
|
|
|
#include <libsolidity/ast/ASTForward.h>
|
|
|
|
#include <libsolidity/parsing/Token.h>
|
2015-01-23 18:27:56 +00:00
|
|
|
#include <libdevcore/UndefMacros.h>
|
2015-01-21 17:21:14 +00:00
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2014-11-20 09:19:43 +00:00
|
|
|
class Type; // forward
|
2014-12-12 15:49:26 +00:00
|
|
|
class FunctionType; // forward
|
2014-11-25 13:43:23 +00:00
|
|
|
using TypePointer = std::shared_ptr<Type const>;
|
2015-01-29 15:39:30 +00:00
|
|
|
using FunctionTypePointer = std::shared_ptr<FunctionType const>;
|
2014-11-25 13:43:23 +00:00
|
|
|
using TypePointers = std::vector<TypePointer>;
|
2016-02-18 22:39:11 +00:00
|
|
|
using rational = boost::rational<bigint>;
|
2014-11-20 09:19:43 +00:00
|
|
|
|
2015-03-13 18:48:24 +00:00
|
|
|
|
2015-06-17 10:01:39 +00:00
|
|
|
enum class DataLocation { Storage, CallData, Memory };
|
|
|
|
|
2015-03-13 18:48:24 +00:00
|
|
|
/**
|
|
|
|
* Helper class to compute storage offsets of members of structs and contracts.
|
|
|
|
*/
|
|
|
|
class StorageOffsets
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/// Resets the StorageOffsets objects and determines the position in storage for each
|
|
|
|
/// of the elements of @a _types.
|
|
|
|
void computeOffsets(TypePointers const& _types);
|
|
|
|
/// @returns the offset of the given member, might be null if the member is not part of storage.
|
2015-08-31 16:44:29 +00:00
|
|
|
std::pair<u256, unsigned> const* offset(size_t _index) const;
|
2015-03-13 18:48:24 +00:00
|
|
|
/// @returns the total number of slots occupied by all members.
|
2015-08-31 16:44:29 +00:00
|
|
|
u256 const& storageSize() const { return m_storageSize; }
|
2015-03-13 18:48:24 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
u256 m_storageSize;
|
|
|
|
std::map<size_t, std::pair<u256, unsigned>> m_offsets;
|
|
|
|
};
|
|
|
|
|
2014-11-20 09:19:43 +00:00
|
|
|
/**
|
|
|
|
* List of members of a type.
|
|
|
|
*/
|
|
|
|
class MemberList
|
|
|
|
{
|
|
|
|
public:
|
2015-04-15 15:40:50 +00:00
|
|
|
struct Member
|
|
|
|
{
|
|
|
|
Member(std::string const& _name, TypePointer const& _type, Declaration const* _declaration = nullptr):
|
|
|
|
name(_name),
|
|
|
|
type(_type),
|
|
|
|
declaration(_declaration)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string name;
|
|
|
|
TypePointer type;
|
|
|
|
Declaration const* declaration = nullptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
using MemberMap = std::vector<Member>;
|
2014-11-20 09:19:43 +00:00
|
|
|
|
|
|
|
MemberList() {}
|
|
|
|
explicit MemberList(MemberMap const& _members): m_memberTypes(_members) {}
|
2015-03-16 18:00:09 +00:00
|
|
|
MemberList& operator=(MemberList&& _other);
|
2015-11-25 13:23:35 +00:00
|
|
|
void combine(MemberList const& _other);
|
2015-08-31 16:44:29 +00:00
|
|
|
TypePointer memberType(std::string const& _name) const
|
2014-11-20 09:19:43 +00:00
|
|
|
{
|
2015-04-15 15:40:50 +00:00
|
|
|
TypePointer type;
|
|
|
|
for (auto const& it: m_memberTypes)
|
|
|
|
if (it.name == _name)
|
|
|
|
{
|
|
|
|
solAssert(!type, "Requested member type by non-unique name.");
|
|
|
|
type = it.type;
|
|
|
|
}
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
MemberMap membersByName(std::string const& _name) const
|
|
|
|
{
|
|
|
|
MemberMap members;
|
2015-02-17 15:19:11 +00:00
|
|
|
for (auto const& it: m_memberTypes)
|
2015-04-15 15:40:50 +00:00
|
|
|
if (it.name == _name)
|
|
|
|
members.push_back(it);
|
|
|
|
return members;
|
2014-11-20 09:19:43 +00:00
|
|
|
}
|
2015-03-13 09:52:34 +00:00
|
|
|
/// @returns the offset of the given member in storage slots and bytes inside a slot or
|
|
|
|
/// a nullptr if the member is not part of storage.
|
2015-08-31 16:44:29 +00:00
|
|
|
std::pair<u256, unsigned> const* memberStorageOffset(std::string const& _name) const;
|
2015-03-13 09:52:34 +00:00
|
|
|
/// @returns the number of storage slots occupied by the members.
|
2015-08-31 16:44:29 +00:00
|
|
|
u256 const& storageSize() const;
|
2014-11-20 09:19:43 +00:00
|
|
|
|
|
|
|
MemberMap::const_iterator begin() const { return m_memberTypes.begin(); }
|
|
|
|
MemberMap::const_iterator end() const { return m_memberTypes.end(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
MemberMap m_memberTypes;
|
2015-03-13 18:48:24 +00:00
|
|
|
mutable std::unique_ptr<StorageOffsets> m_storageOffsets;
|
2014-11-20 09:19:43 +00:00
|
|
|
};
|
|
|
|
|
2014-10-28 15:51:26 +00:00
|
|
|
/**
|
|
|
|
* Abstract base class that forms the root of the type hierarchy.
|
|
|
|
*/
|
2015-01-06 17:55:31 +00:00
|
|
|
class Type: private boost::noncopyable, public std::enable_shared_from_this<Type>
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-10-16 12:08:54 +00:00
|
|
|
enum class Category
|
|
|
|
{
|
2016-03-29 20:08:51 +00:00
|
|
|
Integer, RationalNumber, StringLiteral, Bool, FixedPoint, Array,
|
2015-10-09 17:35:41 +00:00
|
|
|
FixedBytes, Contract, Struct, Function, Enum, Tuple,
|
2015-12-15 14:46:03 +00:00
|
|
|
Mapping, TypeType, Modifier, Magic, Module
|
2014-10-13 16:22:15 +00:00
|
|
|
};
|
|
|
|
|
2015-03-05 15:54:55 +00:00
|
|
|
/// @{
|
|
|
|
/// @name Factory functions
|
2014-10-23 15:06:12 +00:00
|
|
|
/// Factory functions that convert an AST @ref TypeName to a Type.
|
2016-02-08 21:43:22 +00:00
|
|
|
static TypePointer fromElementaryTypeName(ElementaryTypeNameToken const& _type);
|
2015-02-10 16:53:43 +00:00
|
|
|
static TypePointer fromElementaryTypeName(std::string const& _name);
|
2014-10-23 15:06:12 +00:00
|
|
|
/// @}
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2014-11-04 12:24:35 +00:00
|
|
|
/// Auto-detect the proper type for a literal. @returns an empty pointer if the literal does
|
|
|
|
/// not fit any type.
|
2014-12-18 17:53:43 +00:00
|
|
|
static TypePointer forLiteral(Literal const& _literal);
|
|
|
|
/// @returns a pointer to _a or _b if the other is implicitly convertible to it or nullptr otherwise
|
|
|
|
static TypePointer commonType(TypePointer const& _a, TypePointer const& _b);
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual Category category() const = 0;
|
2014-10-20 10:41:56 +00:00
|
|
|
virtual bool isImplicitlyConvertibleTo(Type const& _other) const { return *this == _other; }
|
2014-10-20 11:02:06 +00:00
|
|
|
virtual bool isExplicitlyConvertibleTo(Type const& _convertTo) const
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
|
|
|
return isImplicitlyConvertibleTo(_convertTo);
|
|
|
|
}
|
2015-01-06 18:08:24 +00:00
|
|
|
/// @returns the resulting type of applying the given unary operator or an empty pointer if
|
|
|
|
/// this is not possible.
|
|
|
|
/// The default implementation does not allow any unary operator.
|
|
|
|
virtual TypePointer unaryOperatorResult(Token::Value) const { return TypePointer(); }
|
2015-01-06 17:55:31 +00:00
|
|
|
/// @returns the resulting type of applying the given binary operator or an empty pointer if
|
|
|
|
/// this is not possible.
|
|
|
|
/// The default implementation allows comparison operators if a common type exists
|
|
|
|
virtual TypePointer binaryOperatorResult(Token::Value _operator, TypePointer const& _other) const
|
|
|
|
{
|
|
|
|
return Token::isCompareOp(_operator) ? commonType(shared_from_this(), _other) : TypePointer();
|
|
|
|
}
|
2014-10-16 15:57:27 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual bool operator==(Type const& _other) const { return category() == _other.category(); }
|
2014-10-20 10:41:56 +00:00
|
|
|
virtual bool operator!=(Type const& _other) const { return !this->operator ==(_other); }
|
|
|
|
|
2015-11-24 13:54:37 +00:00
|
|
|
/// @returns number of bytes used by this type when encoded for CALL. If it is a dynamic type,
|
|
|
|
/// returns the size of the pointer (usually 32). Returns 0 if the type cannot be encoded
|
|
|
|
/// in calldata.
|
2015-03-05 17:22:17 +00:00
|
|
|
/// If @a _padded then it is assumed that each element is padded to a multiple of 32 bytes.
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned calldataEncodedSize(bool _padded) const { (void)_padded; return 0; }
|
2015-06-25 15:51:01 +00:00
|
|
|
/// @returns the size of this data type in bytes when stored in memory. For memory-reference
|
|
|
|
/// types, this is the size of the memory pointer.
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned memoryHeadSize() const { return calldataEncodedSize(); }
|
|
|
|
/// Convenience version of @see calldataEncodedSize(bool)
|
|
|
|
unsigned calldataEncodedSize() const { return calldataEncodedSize(true); }
|
2015-02-15 01:00:33 +00:00
|
|
|
/// @returns true if the type is dynamically encoded in calldata
|
|
|
|
virtual bool isDynamicallySized() const { return false; }
|
2015-03-13 09:52:34 +00:00
|
|
|
/// @returns the number of storage slots required to hold this value in storage.
|
2014-11-07 01:06:37 +00:00
|
|
|
/// For dynamically "allocated" types, it returns the size of the statically allocated head,
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual u256 storageSize() const { return 1; }
|
2015-03-13 09:52:34 +00:00
|
|
|
/// Multiple small types can be packed into a single storage slot. If such a packing is possible
|
|
|
|
/// this function @returns the size in bytes smaller than 32. Data is moved to the next slot if
|
|
|
|
/// it does not fit.
|
|
|
|
/// In order to avoid computation at runtime of whether such moving is necessary, structs and
|
|
|
|
/// array data (not each element) always start a new slot.
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned storageBytes() const { return 32; }
|
2014-11-20 17:33:23 +00:00
|
|
|
/// Returns true if the type can be stored in storage.
|
|
|
|
virtual bool canBeStored() const { return true; }
|
2014-11-10 16:31:09 +00:00
|
|
|
/// Returns false if the type cannot live outside the storage, i.e. if it includes some mapping.
|
|
|
|
virtual bool canLiveOutsideStorage() const { return true; }
|
2014-11-21 18:14:56 +00:00
|
|
|
/// Returns true if the type can be stored as a value (as opposed to a reference) on the stack,
|
|
|
|
/// i.e. it behaves differently in lvalue context and in value context.
|
|
|
|
virtual bool isValueType() const { return false; }
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned sizeOnStack() const { return 1; }
|
2015-06-09 12:26:08 +00:00
|
|
|
/// @returns the mobile (in contrast to static) type corresponding to the given type.
|
2016-05-10 12:30:24 +00:00
|
|
|
/// This returns the corresponding IntegerType or FixedPointType for RationalNumberType
|
|
|
|
/// and the pointer type for storage reference types.
|
|
|
|
/// Might return a null pointer if there is no fitting type.
|
2015-06-09 12:26:08 +00:00
|
|
|
virtual TypePointer mobileType() const { return shared_from_this(); }
|
2015-06-17 10:01:39 +00:00
|
|
|
/// @returns true if this is a non-value type and the data of this type is stored at the
|
|
|
|
/// given location.
|
|
|
|
virtual bool dataStoredIn(DataLocation) const { return false; }
|
2015-10-14 13:19:50 +00:00
|
|
|
/// @returns the type of a temporary during assignment to a variable of the given type.
|
|
|
|
/// Specifically, returns the requested itself if it can be dynamically allocated (or is a value type)
|
|
|
|
/// and the mobile type otherwise.
|
|
|
|
virtual TypePointer closestTemporaryType(TypePointer const& _targetType) const
|
|
|
|
{
|
|
|
|
return _targetType->dataStoredIn(DataLocation::Storage) ? mobileType() : _targetType;
|
|
|
|
}
|
2014-10-30 17:15:25 +00:00
|
|
|
|
2015-11-25 13:23:35 +00:00
|
|
|
/// Returns the list of all members of this type. Default implementation: no members apart from bound.
|
2015-11-19 17:02:04 +00:00
|
|
|
/// @param _currentScope scope in which the members are accessed.
|
2015-11-25 13:23:35 +00:00
|
|
|
MemberList const& members(ContractDefinition const* _currentScope) const;
|
2014-11-20 09:19:43 +00:00
|
|
|
/// Convenience method, returns the type of the given named member or an empty pointer if no such member exists.
|
2015-11-19 17:02:04 +00:00
|
|
|
TypePointer memberType(std::string const& _name, ContractDefinition const* _currentScope = nullptr) const
|
|
|
|
{
|
|
|
|
return members(_currentScope).memberType(_name);
|
|
|
|
}
|
2014-11-20 09:19:43 +00:00
|
|
|
|
2015-06-09 12:26:08 +00:00
|
|
|
virtual std::string toString(bool _short) const = 0;
|
|
|
|
std::string toString() const { return toString(false); }
|
2015-10-05 15:19:23 +00:00
|
|
|
/// @returns the canonical name of this type for use in function signatures.
|
|
|
|
/// @param _addDataLocation if true, includes data location for reference types if it is "storage".
|
|
|
|
virtual std::string canonicalName(bool /*_addDataLocation*/) const { return toString(true); }
|
2014-12-19 10:31:17 +00:00
|
|
|
virtual u256 literalValue(Literal const*) const
|
2014-11-05 13:20:56 +00:00
|
|
|
{
|
2015-06-09 12:26:08 +00:00
|
|
|
BOOST_THROW_EXCEPTION(
|
|
|
|
InternalCompilerError() <<
|
|
|
|
errinfo_comment("Literal value requested for type without literals.")
|
|
|
|
);
|
2014-11-05 13:20:56 +00:00
|
|
|
}
|
2014-11-20 09:19:43 +00:00
|
|
|
|
2015-10-02 11:11:38 +00:00
|
|
|
/// @returns a (simpler) type that is encoded in the same way for external function calls.
|
|
|
|
/// This for example returns address for contract types.
|
2015-03-20 16:02:24 +00:00
|
|
|
/// If there is no such type, returns an empty shared pointer.
|
2015-10-02 11:11:38 +00:00
|
|
|
virtual TypePointer encodingType() const { return TypePointer(); }
|
2015-10-02 20:34:47 +00:00
|
|
|
/// @returns a (simpler) type that is used when decoding this type in calldata.
|
|
|
|
virtual TypePointer decodingType() const { return encodingType(); }
|
2015-10-02 11:11:38 +00:00
|
|
|
/// @returns a type that will be used outside of Solidity for e.g. function signatures.
|
|
|
|
/// This for example returns address for contract types.
|
|
|
|
/// If there is no such type, returns an empty shared pointer.
|
|
|
|
/// @param _inLibrary if set, returns types as used in a library, e.g. struct and contract types
|
|
|
|
/// are returned without modification.
|
|
|
|
virtual TypePointer interfaceType(bool /*_inLibrary*/) const { return TypePointer(); }
|
2015-03-17 13:21:22 +00:00
|
|
|
|
2015-11-25 13:23:35 +00:00
|
|
|
private:
|
|
|
|
/// @returns a member list containing all members added to this type by `using for` directives.
|
|
|
|
static MemberList::MemberMap boundFunctions(Type const& _type, ContractDefinition const& _scope);
|
|
|
|
|
2014-11-20 09:19:43 +00:00
|
|
|
protected:
|
2015-11-25 13:23:35 +00:00
|
|
|
/// @returns the members native to this type depending on the given context. This function
|
|
|
|
/// is used (in conjunction with boundFunctions to fill m_members below.
|
|
|
|
virtual MemberList::MemberMap nativeMembers(ContractDefinition const* /*_currentScope*/) const
|
|
|
|
{
|
|
|
|
return MemberList::MemberMap();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// List of member types (parameterised by scape), will be lazy-initialized.
|
|
|
|
mutable std::map<ContractDefinition const*, std::unique_ptr<MemberList>> m_members;
|
2014-10-13 16:22:15 +00:00
|
|
|
};
|
|
|
|
|
2014-10-28 15:51:26 +00:00
|
|
|
/**
|
2015-03-11 16:52:18 +00:00
|
|
|
* Any kind of integer type (signed, unsigned, address).
|
2014-10-28 15:51:26 +00:00
|
|
|
*/
|
2014-10-16 21:49:45 +00:00
|
|
|
class IntegerType: public Type
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-10-16 12:08:54 +00:00
|
|
|
enum class Modifier
|
|
|
|
{
|
2015-03-05 15:54:55 +00:00
|
|
|
Unsigned, Signed, Address
|
2014-10-13 16:22:15 +00:00
|
|
|
};
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual Category category() const override { return Category::Integer; }
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2015-02-09 13:08:48 +00:00
|
|
|
explicit IntegerType(int _bits, Modifier _modifier = Modifier::Unsigned);
|
2014-10-13 16:22:15 +00:00
|
|
|
|
|
|
|
virtual bool isImplicitlyConvertibleTo(Type const& _convertTo) const override;
|
2014-10-20 11:02:06 +00:00
|
|
|
virtual bool isExplicitlyConvertibleTo(Type const& _convertTo) const override;
|
2015-01-06 18:08:24 +00:00
|
|
|
virtual TypePointer unaryOperatorResult(Token::Value _operator) const override;
|
2015-01-06 17:55:31 +00:00
|
|
|
virtual TypePointer binaryOperatorResult(Token::Value _operator, TypePointer const& _other) const override;
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2014-10-20 10:41:56 +00:00
|
|
|
virtual bool operator==(Type const& _other) const override;
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned calldataEncodedSize(bool _padded = true) const override { return _padded ? 32 : m_bits / 8; }
|
|
|
|
virtual unsigned storageBytes() const override { return m_bits / 8; }
|
2014-11-21 18:14:56 +00:00
|
|
|
virtual bool isValueType() const override { return true; }
|
|
|
|
|
2015-11-25 13:23:35 +00:00
|
|
|
virtual MemberList::MemberMap nativeMembers(ContractDefinition const*) const override;
|
2014-10-30 17:15:25 +00:00
|
|
|
|
2015-06-09 12:26:08 +00:00
|
|
|
virtual std::string toString(bool _short) const override;
|
2014-10-16 15:57:27 +00:00
|
|
|
|
2015-10-02 11:11:38 +00:00
|
|
|
virtual TypePointer encodingType() const override { return shared_from_this(); }
|
|
|
|
virtual TypePointer interfaceType(bool) const override { return shared_from_this(); }
|
2015-03-17 13:21:22 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
int numBits() const { return m_bits; }
|
2015-02-09 13:00:12 +00:00
|
|
|
bool isAddress() const { return m_modifier == Modifier::Address; }
|
2015-02-09 13:08:48 +00:00
|
|
|
bool isSigned() const { return m_modifier == Modifier::Signed; }
|
2014-10-20 12:00:37 +00:00
|
|
|
|
2014-10-13 16:22:15 +00:00
|
|
|
private:
|
|
|
|
int m_bits;
|
|
|
|
Modifier m_modifier;
|
|
|
|
};
|
|
|
|
|
2014-12-19 10:31:17 +00:00
|
|
|
/**
|
2016-02-18 22:39:11 +00:00
|
|
|
* A fixed point type number (signed, unsigned).
|
|
|
|
*/
|
|
|
|
class FixedPointType: public Type
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum class Modifier
|
|
|
|
{
|
|
|
|
Unsigned, Signed
|
|
|
|
};
|
|
|
|
virtual Category category() const override { return Category::FixedPoint; }
|
|
|
|
|
|
|
|
explicit FixedPointType(int _integerBits, int _fractionalBits, Modifier _modifier = Modifier::Unsigned);
|
|
|
|
|
|
|
|
virtual bool isImplicitlyConvertibleTo(Type const& _convertTo) const override;
|
|
|
|
virtual bool isExplicitlyConvertibleTo(Type const& _convertTo) const override;
|
|
|
|
virtual TypePointer unaryOperatorResult(Token::Value _operator) const override;
|
|
|
|
virtual TypePointer binaryOperatorResult(Token::Value _operator, TypePointer const& _other) const override;
|
|
|
|
|
|
|
|
virtual bool operator==(Type const& _other) const override;
|
|
|
|
|
|
|
|
virtual unsigned calldataEncodedSize(bool _padded = true) const override { return _padded ? 32 : (m_integerBits + m_fractionalBits) / 8; }
|
|
|
|
virtual unsigned storageBytes() const override { return (m_integerBits + m_fractionalBits) / 8; }
|
|
|
|
virtual bool isValueType() const override { return true; }
|
|
|
|
|
|
|
|
virtual std::string toString(bool _short) const override;
|
|
|
|
|
|
|
|
virtual TypePointer encodingType() const override { return shared_from_this(); }
|
|
|
|
virtual TypePointer interfaceType(bool) const override { return shared_from_this(); }
|
|
|
|
|
|
|
|
int numBits() const { return m_integerBits + m_fractionalBits; }
|
|
|
|
int integerBits() const { return m_integerBits; }
|
|
|
|
int fractionalBits() const { return m_fractionalBits; }
|
|
|
|
bool isSigned() const { return m_modifier == Modifier::Signed; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_integerBits;
|
|
|
|
int m_fractionalBits;
|
|
|
|
Modifier m_modifier;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Integer and fixed point constants either literals or computed.
|
|
|
|
* Example expressions: 2, 3.14, 2+10.2, ~10.
|
2014-12-19 10:31:17 +00:00
|
|
|
* There is one distinct type per value.
|
|
|
|
*/
|
2016-03-29 20:08:51 +00:00
|
|
|
class RationalNumberType: public Type
|
2014-12-19 10:31:17 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-02-18 22:39:11 +00:00
|
|
|
|
2016-03-29 20:08:51 +00:00
|
|
|
virtual Category category() const override { return Category::RationalNumber; }
|
2014-12-19 10:31:17 +00:00
|
|
|
|
2015-07-14 15:43:13 +00:00
|
|
|
/// @returns true if the literal is a valid integer.
|
2016-04-12 17:36:34 +00:00
|
|
|
static std::tuple<bool, rational> isValidLiteral(Literal const& _literal);
|
|
|
|
|
2016-05-10 10:42:38 +00:00
|
|
|
explicit RationalNumberType(rational const& _value):
|
2016-02-18 22:39:11 +00:00
|
|
|
m_value(_value)
|
|
|
|
{}
|
2014-12-19 10:31:17 +00:00
|
|
|
virtual bool isImplicitlyConvertibleTo(Type const& _convertTo) const override;
|
|
|
|
virtual bool isExplicitlyConvertibleTo(Type const& _convertTo) const override;
|
|
|
|
virtual TypePointer unaryOperatorResult(Token::Value _operator) const override;
|
|
|
|
virtual TypePointer binaryOperatorResult(Token::Value _operator, TypePointer const& _other) const override;
|
|
|
|
|
|
|
|
virtual bool operator==(Type const& _other) const override;
|
|
|
|
|
|
|
|
virtual bool canBeStored() const override { return false; }
|
|
|
|
virtual bool canLiveOutsideStorage() const override { return false; }
|
|
|
|
|
2015-06-09 12:26:08 +00:00
|
|
|
virtual std::string toString(bool _short) const override;
|
2014-12-19 10:31:17 +00:00
|
|
|
virtual u256 literalValue(Literal const* _literal) const override;
|
2015-06-09 12:26:08 +00:00
|
|
|
virtual TypePointer mobileType() const override;
|
2014-12-19 10:31:17 +00:00
|
|
|
|
|
|
|
/// @returns the smallest integer type that can hold the value or an empty pointer if not possible.
|
2015-08-31 16:44:29 +00:00
|
|
|
std::shared_ptr<IntegerType const> integerType() const;
|
2016-04-08 06:19:20 +00:00
|
|
|
/// @returns the smallest fixed type that can hold the value or incurs the least precision loss.
|
|
|
|
/// If the integer part does not fit, returns an empty pointer.
|
2016-02-18 22:39:11 +00:00
|
|
|
std::shared_ptr<FixedPointType const> fixedPointType() const;
|
2016-03-18 20:03:26 +00:00
|
|
|
|
2016-05-10 12:30:24 +00:00
|
|
|
/// @returns true iff the value is not an integer.
|
|
|
|
bool isFractional() const { return m_value.denominator() != 1; }
|
2016-03-18 20:03:26 +00:00
|
|
|
|
2014-12-19 10:31:17 +00:00
|
|
|
private:
|
2016-02-18 22:39:11 +00:00
|
|
|
rational m_value;
|
2014-12-19 10:31:17 +00:00
|
|
|
};
|
|
|
|
|
2015-07-07 23:13:56 +00:00
|
|
|
/**
|
|
|
|
* Literal string, can be converted to bytes, bytesX or string.
|
|
|
|
*/
|
|
|
|
class StringLiteralType: public Type
|
|
|
|
{
|
|
|
|
public:
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual Category category() const override { return Category::StringLiteral; }
|
2015-07-07 23:13:56 +00:00
|
|
|
|
|
|
|
explicit StringLiteralType(Literal const& _literal);
|
|
|
|
|
|
|
|
virtual bool isImplicitlyConvertibleTo(Type const& _convertTo) const override;
|
|
|
|
virtual TypePointer binaryOperatorResult(Token::Value, TypePointer const&) const override
|
|
|
|
{
|
|
|
|
return TypePointer();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool operator==(Type const& _other) const override;
|
|
|
|
|
|
|
|
virtual bool canBeStored() const override { return false; }
|
|
|
|
virtual bool canLiveOutsideStorage() const override { return false; }
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned sizeOnStack() const override { return 0; }
|
2015-07-07 23:13:56 +00:00
|
|
|
|
|
|
|
virtual std::string toString(bool) const override { return "literal_string \"" + m_value + "\""; }
|
|
|
|
virtual TypePointer mobileType() const override;
|
|
|
|
|
|
|
|
std::string const& value() const { return m_value; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string m_value;
|
|
|
|
};
|
|
|
|
|
2014-12-09 17:46:18 +00:00
|
|
|
/**
|
2015-03-11 16:52:18 +00:00
|
|
|
* Bytes type with fixed length of up to 32 bytes.
|
2014-12-09 17:46:18 +00:00
|
|
|
*/
|
2015-03-05 15:54:55 +00:00
|
|
|
class FixedBytesType: public Type
|
2014-12-09 17:46:18 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual Category category() const override { return Category::FixedBytes; }
|
2014-12-09 17:46:18 +00:00
|
|
|
|
2015-03-05 15:54:55 +00:00
|
|
|
/// @returns the smallest bytes type for the given literal or an empty pointer
|
2014-12-09 17:46:18 +00:00
|
|
|
/// if no type fits.
|
2015-03-05 15:54:55 +00:00
|
|
|
static std::shared_ptr<FixedBytesType> smallestTypeForLiteral(std::string const& _literal);
|
2014-12-09 17:46:18 +00:00
|
|
|
|
2015-03-05 15:54:55 +00:00
|
|
|
explicit FixedBytesType(int _bytes);
|
2014-12-09 17:46:18 +00:00
|
|
|
|
|
|
|
virtual bool isImplicitlyConvertibleTo(Type const& _convertTo) const override;
|
2015-01-23 16:36:12 +00:00
|
|
|
virtual bool isExplicitlyConvertibleTo(Type const& _convertTo) const override;
|
2014-12-09 17:46:18 +00:00
|
|
|
virtual bool operator==(Type const& _other) const override;
|
2015-03-05 15:54:55 +00:00
|
|
|
virtual TypePointer unaryOperatorResult(Token::Value _operator) const override;
|
|
|
|
virtual TypePointer binaryOperatorResult(Token::Value _operator, TypePointer const& _other) const override;
|
2014-12-09 17:46:18 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned calldataEncodedSize(bool _padded) const override { return _padded && m_bytes > 0 ? 32 : m_bytes; }
|
|
|
|
virtual unsigned storageBytes() const override { return m_bytes; }
|
2014-12-09 17:46:18 +00:00
|
|
|
virtual bool isValueType() const override { return true; }
|
|
|
|
|
2015-06-09 12:26:08 +00:00
|
|
|
virtual std::string toString(bool) const override { return "bytes" + dev::toString(m_bytes); }
|
2016-02-03 20:34:24 +00:00
|
|
|
virtual MemberList::MemberMap nativeMembers(ContractDefinition const*) const override;
|
2015-10-02 11:11:38 +00:00
|
|
|
virtual TypePointer encodingType() const override { return shared_from_this(); }
|
|
|
|
virtual TypePointer interfaceType(bool) const override { return shared_from_this(); }
|
2014-12-09 17:46:18 +00:00
|
|
|
|
2015-07-07 23:13:56 +00:00
|
|
|
int numBytes() const { return m_bytes; }
|
2014-12-09 17:46:18 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
int m_bytes;
|
|
|
|
};
|
|
|
|
|
2014-10-28 15:51:26 +00:00
|
|
|
/**
|
|
|
|
* The boolean type.
|
|
|
|
*/
|
2014-10-16 21:49:45 +00:00
|
|
|
class BoolType: public Type
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-12-11 13:12:49 +00:00
|
|
|
BoolType() {}
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual Category category() const override { return Category::Bool; }
|
2014-10-20 11:02:06 +00:00
|
|
|
virtual bool isExplicitlyConvertibleTo(Type const& _convertTo) const override;
|
2015-01-14 12:52:03 +00:00
|
|
|
virtual TypePointer unaryOperatorResult(Token::Value _operator) const override;
|
2015-01-06 17:55:31 +00:00
|
|
|
virtual TypePointer binaryOperatorResult(Token::Value _operator, TypePointer const& _other) const override;
|
2014-10-20 10:41:56 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned calldataEncodedSize(bool _padded) const override{ return _padded ? 32 : 1; }
|
|
|
|
virtual unsigned storageBytes() const override { return 1; }
|
2014-11-21 18:14:56 +00:00
|
|
|
virtual bool isValueType() const override { return true; }
|
2014-10-30 17:15:25 +00:00
|
|
|
|
2015-06-09 12:26:08 +00:00
|
|
|
virtual std::string toString(bool) const override { return "bool"; }
|
2014-12-19 10:31:17 +00:00
|
|
|
virtual u256 literalValue(Literal const* _literal) const override;
|
2015-10-02 11:11:38 +00:00
|
|
|
virtual TypePointer encodingType() const override { return shared_from_this(); }
|
|
|
|
virtual TypePointer interfaceType(bool) const override { return shared_from_this(); }
|
2014-10-13 16:22:15 +00:00
|
|
|
};
|
|
|
|
|
2015-06-05 09:07:50 +00:00
|
|
|
/**
|
2015-06-09 12:26:08 +00:00
|
|
|
* Base class used by types which are not value types and can be stored either in storage, memory
|
2015-06-05 09:07:50 +00:00
|
|
|
* or calldata. This is currently used by arrays and structs.
|
|
|
|
*/
|
2015-06-09 12:26:08 +00:00
|
|
|
class ReferenceType: public Type
|
2015-06-05 09:07:50 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-06-17 10:01:39 +00:00
|
|
|
explicit ReferenceType(DataLocation _location): m_location(_location) {}
|
|
|
|
DataLocation location() const { return m_location; }
|
2015-06-05 09:07:50 +00:00
|
|
|
|
2015-06-26 17:14:26 +00:00
|
|
|
virtual TypePointer unaryOperatorResult(Token::Value _operator) const override;
|
2015-08-06 13:39:42 +00:00
|
|
|
virtual TypePointer binaryOperatorResult(Token::Value, TypePointer const&) const override
|
|
|
|
{
|
|
|
|
return TypePointer();
|
|
|
|
}
|
2015-06-25 15:51:01 +00:00
|
|
|
virtual unsigned memoryHeadSize() const override { return 32; }
|
|
|
|
|
2015-06-09 12:26:08 +00:00
|
|
|
/// @returns a copy of this type with location (recursively) changed to @a _location,
|
|
|
|
/// whereas isPointer is only shallowly changed - the deep copy is always a bound reference.
|
2015-06-17 10:01:39 +00:00
|
|
|
virtual TypePointer copyForLocation(DataLocation _location, bool _isPointer) const = 0;
|
2015-06-09 12:26:08 +00:00
|
|
|
|
|
|
|
virtual TypePointer mobileType() const override { return copyForLocation(m_location, true); }
|
2015-06-17 10:01:39 +00:00
|
|
|
virtual bool dataStoredIn(DataLocation _location) const override { return m_location == _location; }
|
2015-06-09 12:26:08 +00:00
|
|
|
|
|
|
|
/// Storage references can be pointers or bound references. In general, local variables are of
|
|
|
|
/// pointer type, state variables are bound references. Assignments to pointers or deleting
|
|
|
|
/// them will not modify storage (that will only change the pointer). Assignment from
|
|
|
|
/// non-storage objects to a variable of storage pointer type is not possible.
|
|
|
|
bool isPointer() const { return m_isPointer; }
|
|
|
|
|
|
|
|
bool operator==(ReferenceType const& _other) const
|
|
|
|
{
|
|
|
|
return location() == _other.location() && isPointer() == _other.isPointer();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @returns a copy of @a _type having the same location as this (and is not a pointer type)
|
|
|
|
/// if _type is a reference type and an unmodified copy of _type otherwise.
|
|
|
|
/// This function is mostly useful to modify inner types appropriately.
|
2015-06-17 10:01:39 +00:00
|
|
|
static TypePointer copyForLocationIfReference(DataLocation _location, TypePointer const& _type);
|
2015-06-05 09:07:50 +00:00
|
|
|
|
|
|
|
protected:
|
2015-06-09 12:26:08 +00:00
|
|
|
TypePointer copyForLocationIfReference(TypePointer const& _type) const;
|
|
|
|
/// @returns a human-readable description of the reference part of the type.
|
|
|
|
std::string stringForReferencePart() const;
|
|
|
|
|
2015-06-17 10:01:39 +00:00
|
|
|
DataLocation m_location = DataLocation::Storage;
|
2015-06-09 12:26:08 +00:00
|
|
|
bool m_isPointer = true;
|
2015-06-05 09:07:50 +00:00
|
|
|
};
|
|
|
|
|
2015-02-09 17:45:00 +00:00
|
|
|
/**
|
2015-02-23 13:55:06 +00:00
|
|
|
* The type of an array. The flavours are byte array (bytes), statically- (<type>[<length>])
|
2015-02-23 13:38:44 +00:00
|
|
|
* and dynamically-sized array (<type>[]).
|
2015-03-11 17:09:35 +00:00
|
|
|
* In storage, all arrays are packed tightly (as long as more than one elementary type fits in
|
|
|
|
* one slot). Dynamically sized arrays (including byte arrays) start with their size as a uint and
|
|
|
|
* thus start on their own slot.
|
2015-02-09 17:45:00 +00:00
|
|
|
*/
|
2015-06-09 12:26:08 +00:00
|
|
|
class ArrayType: public ReferenceType
|
2015-02-09 17:45:00 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual Category category() const override { return Category::Array; }
|
2015-02-20 14:52:30 +00:00
|
|
|
|
2015-05-28 14:20:50 +00:00
|
|
|
/// Constructor for a byte array ("bytes") and string.
|
2015-06-17 10:01:39 +00:00
|
|
|
explicit ArrayType(DataLocation _location, bool _isString = false):
|
2015-06-05 09:07:50 +00:00
|
|
|
ReferenceType(_location),
|
2015-05-28 14:20:50 +00:00
|
|
|
m_arrayKind(_isString ? ArrayKind::String : ArrayKind::Bytes),
|
2015-03-31 12:59:38 +00:00
|
|
|
m_baseType(std::make_shared<FixedBytesType>(1))
|
2015-06-09 12:26:08 +00:00
|
|
|
{
|
|
|
|
}
|
2015-02-20 14:52:30 +00:00
|
|
|
/// Constructor for a dynamically sized array type ("type[]")
|
2015-06-17 10:01:39 +00:00
|
|
|
ArrayType(DataLocation _location, TypePointer const& _baseType):
|
2015-06-05 09:07:50 +00:00
|
|
|
ReferenceType(_location),
|
2015-06-09 12:26:08 +00:00
|
|
|
m_baseType(copyForLocationIfReference(_baseType))
|
|
|
|
{
|
|
|
|
}
|
2015-02-20 14:52:30 +00:00
|
|
|
/// Constructor for a fixed-size array type ("type[20]")
|
2015-06-17 10:01:39 +00:00
|
|
|
ArrayType(DataLocation _location, TypePointer const& _baseType, u256 const& _length):
|
2015-06-05 09:07:50 +00:00
|
|
|
ReferenceType(_location),
|
2015-06-09 12:26:08 +00:00
|
|
|
m_baseType(copyForLocationIfReference(_baseType)),
|
2015-03-16 16:52:19 +00:00
|
|
|
m_hasDynamicLength(false),
|
|
|
|
m_length(_length)
|
|
|
|
{}
|
2015-02-20 14:52:30 +00:00
|
|
|
|
2015-02-10 08:00:50 +00:00
|
|
|
virtual bool isImplicitlyConvertibleTo(Type const& _convertTo) const override;
|
2015-08-04 09:06:57 +00:00
|
|
|
virtual bool isExplicitlyConvertibleTo(Type const& _convertTo) const override;
|
2015-02-09 17:45:00 +00:00
|
|
|
virtual bool operator==(const Type& _other) const override;
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned calldataEncodedSize(bool _padded) const override;
|
2015-06-08 10:13:44 +00:00
|
|
|
virtual bool isDynamicallySized() const override { return m_hasDynamicLength; }
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual u256 storageSize() const override;
|
2015-06-26 19:27:53 +00:00
|
|
|
virtual bool canLiveOutsideStorage() const override { return m_baseType->canLiveOutsideStorage(); }
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned sizeOnStack() const override;
|
2015-06-09 12:26:08 +00:00
|
|
|
virtual std::string toString(bool _short) const override;
|
2015-10-05 15:19:23 +00:00
|
|
|
virtual std::string canonicalName(bool _addDataLocation) const override;
|
2015-11-25 13:23:35 +00:00
|
|
|
virtual MemberList::MemberMap nativeMembers(ContractDefinition const* _currentScope) const override;
|
2015-10-02 11:11:38 +00:00
|
|
|
virtual TypePointer encodingType() const override;
|
2015-10-02 20:34:47 +00:00
|
|
|
virtual TypePointer decodingType() const override;
|
2015-10-02 11:11:38 +00:00
|
|
|
virtual TypePointer interfaceType(bool _inLibrary) const override;
|
2015-02-09 17:45:00 +00:00
|
|
|
|
2015-05-28 14:20:50 +00:00
|
|
|
/// @returns true if this is a byte array or a string
|
|
|
|
bool isByteArray() const { return m_arrayKind != ArrayKind::Ordinary; }
|
|
|
|
/// @returns true if this is a string
|
|
|
|
bool isString() const { return m_arrayKind == ArrayKind::String; }
|
2015-08-31 16:44:29 +00:00
|
|
|
TypePointer const& baseType() const { solAssert(!!m_baseType, ""); return m_baseType;}
|
|
|
|
u256 const& length() const { return m_length; }
|
2015-09-23 15:31:37 +00:00
|
|
|
u256 memorySize() const;
|
2015-02-10 13:57:01 +00:00
|
|
|
|
2015-06-17 10:01:39 +00:00
|
|
|
TypePointer copyForLocation(DataLocation _location, bool _isPointer) const override;
|
2015-02-16 16:33:13 +00:00
|
|
|
|
2015-02-09 17:45:00 +00:00
|
|
|
private:
|
2015-05-28 14:20:50 +00:00
|
|
|
/// String is interpreted as a subtype of Bytes.
|
|
|
|
enum class ArrayKind { Ordinary, Bytes, String };
|
|
|
|
|
|
|
|
///< Byte arrays ("bytes") and strings have different semantics from ordinary arrays.
|
|
|
|
ArrayKind m_arrayKind = ArrayKind::Ordinary;
|
2015-02-20 14:52:30 +00:00
|
|
|
TypePointer m_baseType;
|
|
|
|
bool m_hasDynamicLength = true;
|
|
|
|
u256 m_length;
|
2015-02-09 17:45:00 +00:00
|
|
|
};
|
|
|
|
|
2014-10-28 15:51:26 +00:00
|
|
|
/**
|
2015-09-10 17:40:07 +00:00
|
|
|
* The type of a contract instance or library, there is one distinct type for each contract definition.
|
2014-10-28 15:51:26 +00:00
|
|
|
*/
|
2014-10-16 21:49:45 +00:00
|
|
|
class ContractType: public Type
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual Category category() const override { return Category::Contract; }
|
2015-01-27 13:32:59 +00:00
|
|
|
explicit ContractType(ContractDefinition const& _contract, bool _super = false):
|
|
|
|
m_contract(_contract), m_super(_super) {}
|
2015-01-07 21:54:56 +00:00
|
|
|
/// Contracts can be implicitly converted to super classes and to addresses.
|
|
|
|
virtual bool isImplicitlyConvertibleTo(Type const& _convertTo) const override;
|
|
|
|
/// Contracts can be converted to themselves and to integers.
|
2014-11-20 17:33:23 +00:00
|
|
|
virtual bool isExplicitlyConvertibleTo(Type const& _convertTo) const override;
|
2015-01-14 12:52:03 +00:00
|
|
|
virtual TypePointer unaryOperatorResult(Token::Value _operator) const override;
|
2014-10-20 10:41:56 +00:00
|
|
|
virtual bool operator==(Type const& _other) const override;
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned calldataEncodedSize(bool _padded ) const override
|
2015-04-21 11:35:38 +00:00
|
|
|
{
|
2015-10-02 11:11:38 +00:00
|
|
|
return encodingType()->calldataEncodedSize(_padded);
|
2015-04-21 11:35:38 +00:00
|
|
|
}
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned storageBytes() const override { return 20; }
|
2015-04-21 11:35:38 +00:00
|
|
|
virtual bool canLiveOutsideStorage() const override { return true; }
|
2014-12-04 18:38:24 +00:00
|
|
|
virtual bool isValueType() const override { return true; }
|
2015-06-09 12:26:08 +00:00
|
|
|
virtual std::string toString(bool _short) const override;
|
2015-10-05 15:19:23 +00:00
|
|
|
virtual std::string canonicalName(bool _addDataLocation) const override;
|
2014-10-16 15:57:27 +00:00
|
|
|
|
2015-11-25 13:23:35 +00:00
|
|
|
virtual MemberList::MemberMap nativeMembers(ContractDefinition const* _currentScope) const override;
|
2015-10-02 11:11:38 +00:00
|
|
|
virtual TypePointer encodingType() const override
|
2015-04-21 11:35:38 +00:00
|
|
|
{
|
|
|
|
return std::make_shared<IntegerType>(160, IntegerType::Modifier::Address);
|
|
|
|
}
|
2015-10-02 11:11:38 +00:00
|
|
|
virtual TypePointer interfaceType(bool _inLibrary) const override
|
|
|
|
{
|
|
|
|
return _inLibrary ? shared_from_this() : encodingType();
|
|
|
|
}
|
2014-12-04 18:38:24 +00:00
|
|
|
|
2015-01-27 13:32:59 +00:00
|
|
|
bool isSuper() const { return m_super; }
|
2015-08-31 16:44:29 +00:00
|
|
|
ContractDefinition const& contractDefinition() const { return m_contract; }
|
2015-01-13 17:12:19 +00:00
|
|
|
|
2014-12-12 15:49:26 +00:00
|
|
|
/// Returns the function type of the constructor. Note that the location part of the function type
|
|
|
|
/// is not used, as this type cannot be the type of a variable or expression.
|
2015-08-31 16:44:29 +00:00
|
|
|
FunctionTypePointer const& constructorType() const;
|
2014-12-12 15:49:26 +00:00
|
|
|
|
2015-01-07 21:54:56 +00:00
|
|
|
/// @returns the identifier of the function with the given name or Invalid256 if such a name does
|
|
|
|
/// not exist.
|
2015-08-31 16:44:29 +00:00
|
|
|
u256 functionIdentifier(std::string const& _functionName) const;
|
2014-12-04 18:38:24 +00:00
|
|
|
|
2015-03-16 15:15:13 +00:00
|
|
|
/// @returns a list of all state variables (including inherited) of the contract and their
|
|
|
|
/// offsets in storage.
|
2015-08-31 16:44:29 +00:00
|
|
|
std::vector<std::tuple<VariableDeclaration const*, u256, unsigned>> stateVariables() const;
|
2015-03-16 15:15:13 +00:00
|
|
|
|
2014-10-13 16:22:15 +00:00
|
|
|
private:
|
|
|
|
ContractDefinition const& m_contract;
|
2015-01-27 13:32:59 +00:00
|
|
|
/// If true, it is the "super" type of the current contract, i.e. it contains only inherited
|
|
|
|
/// members.
|
2015-10-02 11:11:38 +00:00
|
|
|
bool m_super = false;
|
2015-08-31 16:44:29 +00:00
|
|
|
/// Type of the constructor, @see constructorType. Lazily initialized.
|
2015-01-29 15:48:39 +00:00
|
|
|
mutable FunctionTypePointer m_constructorType;
|
2014-10-13 16:22:15 +00:00
|
|
|
};
|
|
|
|
|
2014-10-28 15:51:26 +00:00
|
|
|
/**
|
|
|
|
* The type of a struct instance, there is one distinct type per struct definition.
|
|
|
|
*/
|
2015-06-09 12:26:08 +00:00
|
|
|
class StructType: public ReferenceType
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual Category category() const override { return Category::Struct; }
|
2015-07-15 23:06:19 +00:00
|
|
|
explicit StructType(StructDefinition const& _struct, DataLocation _location = DataLocation::Storage):
|
|
|
|
ReferenceType(_location), m_struct(_struct) {}
|
2015-06-09 12:26:08 +00:00
|
|
|
virtual bool isImplicitlyConvertibleTo(const Type& _convertTo) const override;
|
2014-10-20 10:41:56 +00:00
|
|
|
virtual bool operator==(Type const& _other) const override;
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned calldataEncodedSize(bool _padded) const override;
|
2015-06-30 09:54:51 +00:00
|
|
|
u256 memorySize() const;
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual u256 storageSize() const override;
|
2015-07-15 23:06:19 +00:00
|
|
|
virtual bool canLiveOutsideStorage() const override { return true; }
|
2015-06-09 12:26:08 +00:00
|
|
|
virtual std::string toString(bool _short) const override;
|
2014-11-13 00:12:57 +00:00
|
|
|
|
2015-11-25 13:23:35 +00:00
|
|
|
virtual MemberList::MemberMap nativeMembers(ContractDefinition const* _currentScope) const override;
|
2015-10-02 11:11:38 +00:00
|
|
|
virtual TypePointer encodingType() const override
|
|
|
|
{
|
|
|
|
return location() == DataLocation::Storage ? std::make_shared<IntegerType>(256) : TypePointer();
|
|
|
|
}
|
|
|
|
virtual TypePointer interfaceType(bool _inLibrary) const override;
|
2014-11-20 09:19:43 +00:00
|
|
|
|
2015-06-17 10:01:39 +00:00
|
|
|
TypePointer copyForLocation(DataLocation _location, bool _isPointer) const override;
|
2015-06-05 09:07:50 +00:00
|
|
|
|
2015-10-05 15:19:23 +00:00
|
|
|
virtual std::string canonicalName(bool _addDataLocation) const override;
|
|
|
|
|
2015-06-30 19:08:34 +00:00
|
|
|
/// @returns a function that peforms the type conversion between a list of struct members
|
|
|
|
/// and a memory struct of this type.
|
|
|
|
FunctionTypePointer constructorType() const;
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
std::pair<u256, unsigned> const& storageOffsetsOfMember(std::string const& _name) const;
|
2015-06-30 09:54:51 +00:00
|
|
|
u256 memoryOffsetOfMember(std::string const& _name) const;
|
2014-10-16 15:57:27 +00:00
|
|
|
|
2015-06-09 12:26:08 +00:00
|
|
|
StructDefinition const& structDefinition() const { return m_struct; }
|
|
|
|
|
2015-07-15 23:06:19 +00:00
|
|
|
/// @returns the set of all members that are removed in the memory version (typically mappings).
|
|
|
|
std::set<std::string> membersMissingInMemory() const;
|
|
|
|
|
2014-10-13 16:22:15 +00:00
|
|
|
private:
|
|
|
|
StructDefinition const& m_struct;
|
|
|
|
};
|
|
|
|
|
2015-02-11 15:37:46 +00:00
|
|
|
/**
|
|
|
|
* The type of an enum instance, there is one distinct type per enum definition.
|
|
|
|
*/
|
|
|
|
class EnumType: public Type
|
|
|
|
{
|
|
|
|
public:
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual Category category() const override { return Category::Enum; }
|
2015-02-11 15:37:46 +00:00
|
|
|
explicit EnumType(EnumDefinition const& _enum): m_enum(_enum) {}
|
|
|
|
virtual TypePointer unaryOperatorResult(Token::Value _operator) const override;
|
|
|
|
virtual bool operator==(Type const& _other) const override;
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned calldataEncodedSize(bool _padded) const override
|
2015-04-21 11:35:38 +00:00
|
|
|
{
|
2015-10-02 11:11:38 +00:00
|
|
|
return encodingType()->calldataEncodedSize(_padded);
|
2015-04-21 11:35:38 +00:00
|
|
|
}
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned storageBytes() const override;
|
2015-04-21 11:35:38 +00:00
|
|
|
virtual bool canLiveOutsideStorage() const override { return true; }
|
2015-06-09 12:26:08 +00:00
|
|
|
virtual std::string toString(bool _short) const override;
|
2015-10-05 15:19:23 +00:00
|
|
|
virtual std::string canonicalName(bool _addDataLocation) const override;
|
2015-02-12 14:19:04 +00:00
|
|
|
virtual bool isValueType() const override { return true; }
|
2015-02-11 15:37:46 +00:00
|
|
|
|
2015-02-12 16:59:52 +00:00
|
|
|
virtual bool isExplicitlyConvertibleTo(Type const& _convertTo) const override;
|
2015-10-02 11:11:38 +00:00
|
|
|
virtual TypePointer encodingType() const override
|
2015-04-21 11:35:38 +00:00
|
|
|
{
|
2015-08-31 16:44:29 +00:00
|
|
|
return std::make_shared<IntegerType>(8 * int(storageBytes()));
|
2015-04-21 11:35:38 +00:00
|
|
|
}
|
2015-10-02 11:11:38 +00:00
|
|
|
virtual TypePointer interfaceType(bool _inLibrary) const override
|
|
|
|
{
|
|
|
|
return _inLibrary ? shared_from_this() : encodingType();
|
|
|
|
}
|
2015-02-12 16:59:52 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
EnumDefinition const& enumDefinition() const { return m_enum; }
|
2015-02-13 22:03:32 +00:00
|
|
|
/// @returns the value that the string has in the Enum
|
2015-08-31 16:44:29 +00:00
|
|
|
unsigned int memberValue(ASTString const& _member) const;
|
2015-02-11 15:37:46 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
EnumDefinition const& m_enum;
|
|
|
|
};
|
|
|
|
|
2015-10-09 17:35:41 +00:00
|
|
|
/**
|
|
|
|
* Type that can hold a finite sequence of values of different types.
|
2015-10-12 21:02:35 +00:00
|
|
|
* In some cases, the components are empty pointers (when used as placeholders).
|
2015-10-09 17:35:41 +00:00
|
|
|
*/
|
|
|
|
class TupleType: public Type
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual Category category() const override { return Category::Tuple; }
|
|
|
|
explicit TupleType(std::vector<TypePointer> const& _types = std::vector<TypePointer>()): m_components(_types) {}
|
2015-10-14 13:19:50 +00:00
|
|
|
virtual bool isImplicitlyConvertibleTo(Type const& _other) const override;
|
2015-10-09 17:35:41 +00:00
|
|
|
virtual bool operator==(Type const& _other) const override;
|
|
|
|
virtual TypePointer binaryOperatorResult(Token::Value, TypePointer const&) const override { return TypePointer(); }
|
|
|
|
virtual std::string toString(bool) const override;
|
|
|
|
virtual bool canBeStored() const override { return false; }
|
|
|
|
virtual u256 storageSize() const override;
|
|
|
|
virtual bool canLiveOutsideStorage() const override { return false; }
|
|
|
|
virtual unsigned sizeOnStack() const override;
|
2015-10-14 13:19:50 +00:00
|
|
|
virtual TypePointer mobileType() const override;
|
|
|
|
/// Converts components to their temporary types and performs some wildcard matching.
|
|
|
|
virtual TypePointer closestTemporaryType(TypePointer const& _targetType) const override;
|
2015-10-09 17:35:41 +00:00
|
|
|
|
|
|
|
std::vector<TypePointer> const& components() const { return m_components; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<TypePointer> const m_components;
|
|
|
|
};
|
|
|
|
|
2014-10-28 15:51:26 +00:00
|
|
|
/**
|
2014-11-25 13:43:23 +00:00
|
|
|
* The type of a function, identified by its (return) parameter types.
|
|
|
|
* @todo the return parameters should also have names, i.e. return parameters should be a struct
|
|
|
|
* type.
|
2014-10-28 15:51:26 +00:00
|
|
|
*/
|
2014-10-16 21:49:45 +00:00
|
|
|
class FunctionType: public Type
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-05-15 16:02:09 +00:00
|
|
|
/// How this function is invoked on the EVM.
|
2015-01-29 13:35:28 +00:00
|
|
|
/// @todo This documentation is outdated, and Location should rather be named "Type"
|
2015-05-15 16:02:09 +00:00
|
|
|
enum class Location
|
|
|
|
{
|
|
|
|
Internal, ///< stack-call using plain JUMP
|
|
|
|
External, ///< external call using CALL
|
|
|
|
CallCode, ///< extercnal call using CALLCODE, i.e. not exchanging the storage
|
2016-03-07 15:55:53 +00:00
|
|
|
DelegateCall, ///< extercnal call using DELEGATECALL, i.e. not exchanging the storage
|
2015-05-15 16:02:09 +00:00
|
|
|
Bare, ///< CALL without function hash
|
|
|
|
BareCallCode, ///< CALLCODE without function hash
|
2016-03-07 15:55:53 +00:00
|
|
|
BareDelegateCall, ///< DELEGATECALL without function hash
|
2015-05-15 16:02:09 +00:00
|
|
|
Creation, ///< external call using CREATE
|
|
|
|
Send, ///< CALL, but without data and gas
|
|
|
|
SHA3, ///< SHA3
|
2015-11-28 23:09:15 +00:00
|
|
|
Selfdestruct, ///< SELFDESTRUCT
|
2015-05-15 16:02:09 +00:00
|
|
|
ECRecover, ///< CALL to special contract for ecrecover
|
|
|
|
SHA256, ///< CALL to special contract for sha256
|
|
|
|
RIPEMD160, ///< CALL to special contract for ripemd160
|
|
|
|
Log0,
|
|
|
|
Log1,
|
|
|
|
Log2,
|
|
|
|
Log3,
|
|
|
|
Log4,
|
|
|
|
Event, ///< syntactic sugar for LOG*
|
|
|
|
SetGas, ///< modify the default gas value for the function call
|
|
|
|
SetValue, ///< modify the default value transfer for the function call
|
2015-10-13 14:55:59 +00:00
|
|
|
BlockHash, ///< BLOCKHASH
|
2015-11-18 16:12:39 +00:00
|
|
|
AddMod, ///< ADDMOD
|
|
|
|
MulMod, ///< MULMOD
|
2015-10-13 14:55:59 +00:00
|
|
|
ArrayPush, ///< .push() to a dynamically sized array in storage
|
2015-11-17 00:47:47 +00:00
|
|
|
ByteArrayPush, ///< .push() to a dynamically sized byte array in storage
|
|
|
|
ObjectCreation ///< array creation using new
|
2015-05-15 16:02:09 +00:00
|
|
|
};
|
2014-11-25 17:23:39 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual Category category() const override { return Category::Function; }
|
2015-03-27 12:28:32 +00:00
|
|
|
|
2015-06-17 10:01:39 +00:00
|
|
|
/// Creates the type of a function.
|
2014-12-04 18:38:24 +00:00
|
|
|
explicit FunctionType(FunctionDefinition const& _function, bool _isInternal = true);
|
2015-06-17 10:01:39 +00:00
|
|
|
/// Creates the accessor function type of a state variable.
|
2015-01-22 16:40:22 +00:00
|
|
|
explicit FunctionType(VariableDeclaration const& _varDecl);
|
2015-06-17 10:01:39 +00:00
|
|
|
/// Creates the function type of an event.
|
2015-01-29 13:35:28 +00:00
|
|
|
explicit FunctionType(EventDefinition const& _event);
|
2015-02-20 20:00:13 +00:00
|
|
|
FunctionType(
|
2015-04-22 16:53:58 +00:00
|
|
|
strings const& _parameterTypes,
|
|
|
|
strings const& _returnParameterTypes,
|
|
|
|
Location _location = Location::Internal,
|
|
|
|
bool _arbitraryParameters = false
|
|
|
|
): FunctionType(
|
|
|
|
parseElementaryTypeVector(_parameterTypes),
|
|
|
|
parseElementaryTypeVector(_returnParameterTypes),
|
|
|
|
strings(),
|
2015-04-27 11:07:25 +00:00
|
|
|
strings(),
|
2015-04-22 16:53:58 +00:00
|
|
|
_location,
|
|
|
|
_arbitraryParameters
|
|
|
|
)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
FunctionType(
|
|
|
|
TypePointers const& _parameterTypes,
|
|
|
|
TypePointers const& _returnParameterTypes,
|
|
|
|
strings _parameterNames = strings(),
|
2015-04-27 11:07:25 +00:00
|
|
|
strings _returnParameterNames = strings(),
|
2015-04-22 16:53:58 +00:00
|
|
|
Location _location = Location::Internal,
|
|
|
|
bool _arbitraryParameters = false,
|
2015-06-22 16:05:13 +00:00
|
|
|
Declaration const* _declaration = nullptr,
|
2015-04-22 16:53:58 +00:00
|
|
|
bool _gasSet = false,
|
2015-11-25 13:23:35 +00:00
|
|
|
bool _valueSet = false,
|
|
|
|
bool _bound = false
|
2015-02-20 20:00:13 +00:00
|
|
|
):
|
2015-06-22 16:05:13 +00:00
|
|
|
m_parameterTypes(_parameterTypes),
|
|
|
|
m_returnParameterTypes(_returnParameterTypes),
|
|
|
|
m_parameterNames(_parameterNames),
|
|
|
|
m_returnParameterNames(_returnParameterNames),
|
|
|
|
m_location(_location),
|
|
|
|
m_arbitraryParameters(_arbitraryParameters),
|
|
|
|
m_gasSet(_gasSet),
|
|
|
|
m_valueSet(_valueSet),
|
2015-11-25 13:23:35 +00:00
|
|
|
m_bound(_bound),
|
2015-06-22 16:05:13 +00:00
|
|
|
m_declaration(_declaration)
|
2015-02-20 20:00:13 +00:00
|
|
|
{}
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2015-11-25 13:23:35 +00:00
|
|
|
TypePointers parameterTypes() const;
|
|
|
|
std::vector<std::string> parameterNames() const;
|
2015-10-05 15:19:23 +00:00
|
|
|
std::vector<std::string> const parameterTypeNames(bool _addDataLocation) const;
|
2015-08-31 16:44:29 +00:00
|
|
|
TypePointers const& returnParameterTypes() const { return m_returnParameterTypes; }
|
|
|
|
std::vector<std::string> const& returnParameterNames() const { return m_returnParameterNames; }
|
2015-10-05 15:19:23 +00:00
|
|
|
std::vector<std::string> const returnParameterTypeNames(bool _addDataLocation) const;
|
2015-11-25 13:23:35 +00:00
|
|
|
/// @returns the "self" parameter type for a bound function
|
|
|
|
TypePointer selfType() const;
|
2014-10-20 12:00:37 +00:00
|
|
|
|
2014-10-20 10:41:56 +00:00
|
|
|
virtual bool operator==(Type const& _other) const override;
|
2015-06-09 12:26:08 +00:00
|
|
|
virtual std::string toString(bool _short) const override;
|
2014-11-20 17:33:23 +00:00
|
|
|
virtual bool canBeStored() const override { return false; }
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual u256 storageSize() const override;
|
2014-11-20 17:33:23 +00:00
|
|
|
virtual bool canLiveOutsideStorage() const override { return false; }
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned sizeOnStack() const override;
|
2015-11-25 13:23:35 +00:00
|
|
|
virtual MemberList::MemberMap nativeMembers(ContractDefinition const* _currentScope) const override;
|
2014-11-25 17:23:39 +00:00
|
|
|
|
2015-10-02 11:11:38 +00:00
|
|
|
/// @returns TypePointer of a new FunctionType object. All input/return parameters are an
|
|
|
|
/// appropriate external types (i.e. the interfaceType()s) of input/return parameters of
|
|
|
|
/// current function.
|
2016-03-09 16:23:05 +00:00
|
|
|
/// @returns an empty shared pointer if one of the input/return parameters does not have an
|
2015-10-02 11:11:38 +00:00
|
|
|
/// external type.
|
|
|
|
FunctionTypePointer interfaceFunctionType() const;
|
|
|
|
|
2015-04-15 15:40:50 +00:00
|
|
|
/// @returns true if this function can take the given argument types (possibly
|
|
|
|
/// after implicit conversion).
|
2015-11-27 21:24:00 +00:00
|
|
|
/// @param _selfType if the function is bound, this has to be supplied and is the type of the
|
|
|
|
/// expression the function is called on.
|
|
|
|
bool canTakeArguments(TypePointers const& _arguments, TypePointer const& _selfType = TypePointer()) const;
|
2015-05-08 14:07:25 +00:00
|
|
|
/// @returns true if the types of parameters are equal (does't check return parameter types)
|
2015-04-15 15:40:50 +00:00
|
|
|
bool hasEqualArgumentTypes(FunctionType const& _other) const;
|
|
|
|
|
2015-05-15 16:02:09 +00:00
|
|
|
/// @returns true if the ABI is used for this call (only meaningful for external calls)
|
|
|
|
bool isBareCall() const;
|
2015-08-31 16:44:29 +00:00
|
|
|
Location const& location() const { return m_location; }
|
2015-03-24 10:11:27 +00:00
|
|
|
/// @returns the external signature of this function type given the function name
|
2015-10-05 15:19:23 +00:00
|
|
|
std::string externalSignature() const;
|
2015-04-15 15:40:50 +00:00
|
|
|
/// @returns the external identifier of this function (the hash of the signature).
|
|
|
|
u256 externalIdentifier() const;
|
2015-08-31 16:44:29 +00:00
|
|
|
Declaration const& declaration() const
|
2015-01-29 17:44:14 +00:00
|
|
|
{
|
|
|
|
solAssert(m_declaration, "Requested declaration from a FunctionType that has none");
|
|
|
|
return *m_declaration;
|
|
|
|
}
|
|
|
|
bool hasDeclaration() const { return !!m_declaration; }
|
2015-01-29 15:39:30 +00:00
|
|
|
bool isConstant() const { return m_isConstant; }
|
|
|
|
/// @return A shared pointer of an ASTString.
|
|
|
|
/// Can contain a nullptr in which case indicates absence of documentation
|
2015-08-31 16:44:29 +00:00
|
|
|
ASTPointer<ASTString> documentation() const;
|
2014-10-20 10:41:56 +00:00
|
|
|
|
2015-02-10 09:45:57 +00:00
|
|
|
/// true iff arguments are to be padded to multiples of 32 bytes for external calls
|
|
|
|
bool padArguments() const { return !(m_location == Location::SHA3 || m_location == Location::SHA256 || m_location == Location::RIPEMD160); }
|
|
|
|
bool takesArbitraryParameters() const { return m_arbitraryParameters; }
|
2015-01-12 11:47:37 +00:00
|
|
|
bool gasSet() const { return m_gasSet; }
|
|
|
|
bool valueSet() const { return m_valueSet; }
|
2015-11-25 13:23:35 +00:00
|
|
|
bool bound() const { return m_bound; }
|
2015-01-12 11:47:37 +00:00
|
|
|
|
|
|
|
/// @returns a copy of this type, where gas or value are set manually. This will never set one
|
|
|
|
/// of the parameters to fals.
|
|
|
|
TypePointer copyAndSetGasOrValue(bool _setGas, bool _setValue) const;
|
|
|
|
|
2015-06-22 18:50:29 +00:00
|
|
|
/// @returns a copy of this function type where all return parameters of dynamic size are
|
|
|
|
/// removed and the location of reference types is changed from CallData to Memory.
|
|
|
|
/// This is needed if external functions are called on other contracts, as they cannot return
|
|
|
|
/// dynamic values.
|
2016-03-07 15:55:53 +00:00
|
|
|
/// @param _inLibrary if true, uses DelegateCall as location.
|
2015-11-25 13:23:35 +00:00
|
|
|
/// @param _bound if true, the argumenst are placed as `arg1.functionName(arg2, ..., argn)`.
|
|
|
|
FunctionTypePointer asMemberFunction(bool _inLibrary, bool _bound = false) const;
|
2015-06-22 16:05:13 +00:00
|
|
|
|
2014-10-13 16:22:15 +00:00
|
|
|
private:
|
2015-01-12 12:29:16 +00:00
|
|
|
static TypePointers parseElementaryTypeVector(strings const& _types);
|
2015-01-12 11:46:52 +00:00
|
|
|
|
2014-11-25 13:43:23 +00:00
|
|
|
TypePointers m_parameterTypes;
|
|
|
|
TypePointers m_returnParameterTypes;
|
2015-01-23 15:37:06 +00:00
|
|
|
std::vector<std::string> m_parameterNames;
|
|
|
|
std::vector<std::string> m_returnParameterNames;
|
2015-01-14 10:01:42 +00:00
|
|
|
Location const m_location;
|
2015-03-03 11:58:01 +00:00
|
|
|
/// true if the function takes an arbitrary number of arguments of arbitrary types
|
2015-02-10 09:45:57 +00:00
|
|
|
bool const m_arbitraryParameters = false;
|
2015-01-14 10:01:42 +00:00
|
|
|
bool const m_gasSet = false; ///< true iff the gas value to be used is on the stack
|
|
|
|
bool const m_valueSet = false; ///< true iff the value to be sent is on the stack
|
2015-11-25 13:23:35 +00:00
|
|
|
bool const m_bound = false; ///< true iff the function is called as arg1.fun(arg2, ..., argn)
|
2015-02-20 20:00:13 +00:00
|
|
|
bool m_isConstant = false;
|
2015-01-29 15:39:30 +00:00
|
|
|
Declaration const* m_declaration = nullptr;
|
2014-10-13 16:22:15 +00:00
|
|
|
};
|
|
|
|
|
2014-10-28 15:51:26 +00:00
|
|
|
/**
|
|
|
|
* The type of a mapping, there is one distinct type per key/value type pair.
|
2015-03-11 17:09:35 +00:00
|
|
|
* Mappings always occupy their own storage slot, but do not actually use it.
|
2014-10-28 15:51:26 +00:00
|
|
|
*/
|
2014-10-16 21:49:45 +00:00
|
|
|
class MappingType: public Type
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual Category category() const override { return Category::Mapping; }
|
2014-11-25 13:43:23 +00:00
|
|
|
MappingType(TypePointer const& _keyType, TypePointer const& _valueType):
|
2014-11-10 16:31:09 +00:00
|
|
|
m_keyType(_keyType), m_valueType(_valueType) {}
|
2014-10-16 15:57:27 +00:00
|
|
|
|
2014-10-20 10:41:56 +00:00
|
|
|
virtual bool operator==(Type const& _other) const override;
|
2015-06-09 12:26:08 +00:00
|
|
|
virtual std::string toString(bool _short) const override;
|
2015-10-05 15:19:23 +00:00
|
|
|
virtual std::string canonicalName(bool _addDataLocation) const override;
|
2014-11-20 17:33:23 +00:00
|
|
|
virtual bool canLiveOutsideStorage() const override { return false; }
|
2015-10-02 11:11:38 +00:00
|
|
|
virtual TypePointer encodingType() const override
|
|
|
|
{
|
|
|
|
return std::make_shared<IntegerType>(256);
|
|
|
|
}
|
|
|
|
virtual TypePointer interfaceType(bool _inLibrary) const override
|
|
|
|
{
|
|
|
|
return _inLibrary ? shared_from_this() : TypePointer();
|
|
|
|
}
|
2014-10-20 10:41:56 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
TypePointer const& keyType() const { return m_keyType; }
|
|
|
|
TypePointer const& valueType() const { return m_valueType; }
|
2014-11-13 00:12:57 +00:00
|
|
|
|
2014-10-13 16:22:15 +00:00
|
|
|
private:
|
2014-11-25 13:43:23 +00:00
|
|
|
TypePointer m_keyType;
|
|
|
|
TypePointer m_valueType;
|
2014-10-13 16:22:15 +00:00
|
|
|
};
|
|
|
|
|
2014-10-28 15:51:26 +00:00
|
|
|
/**
|
|
|
|
* The type of a type reference. The type of "uint32" when used in "a = uint32(2)" is an example
|
|
|
|
* of a TypeType.
|
2015-09-10 17:40:07 +00:00
|
|
|
* For super contracts or libraries, this has members directly.
|
2014-10-28 15:51:26 +00:00
|
|
|
*/
|
2014-10-16 21:49:45 +00:00
|
|
|
class TypeType: public Type
|
2014-10-13 16:22:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual Category category() const override { return Category::TypeType; }
|
2015-11-19 17:02:04 +00:00
|
|
|
explicit TypeType(TypePointer const& _actualType): m_actualType(_actualType) {}
|
2015-08-31 16:44:29 +00:00
|
|
|
TypePointer const& actualType() const { return m_actualType; }
|
2014-10-13 16:22:15 +00:00
|
|
|
|
2015-01-06 17:55:31 +00:00
|
|
|
virtual TypePointer binaryOperatorResult(Token::Value, TypePointer const&) const override { return TypePointer(); }
|
2014-10-20 10:41:56 +00:00
|
|
|
virtual bool operator==(Type const& _other) const override;
|
2014-11-20 17:33:23 +00:00
|
|
|
virtual bool canBeStored() const override { return false; }
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual u256 storageSize() const override;
|
2014-11-20 17:33:23 +00:00
|
|
|
virtual bool canLiveOutsideStorage() const override { return false; }
|
2015-09-10 17:40:07 +00:00
|
|
|
virtual unsigned sizeOnStack() const override;
|
2015-06-09 12:26:08 +00:00
|
|
|
virtual std::string toString(bool _short) const override { return "type(" + m_actualType->toString(_short) + ")"; }
|
2015-11-25 13:23:35 +00:00
|
|
|
virtual MemberList::MemberMap nativeMembers(ContractDefinition const* _currentScope) const override;
|
2014-10-16 15:57:27 +00:00
|
|
|
|
2014-10-13 16:22:15 +00:00
|
|
|
private:
|
2014-11-25 13:43:23 +00:00
|
|
|
TypePointer m_actualType;
|
2014-10-13 16:22:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-01-22 00:02:38 +00:00
|
|
|
/**
|
|
|
|
* The type of a function modifier. Not used for anything for now.
|
|
|
|
*/
|
|
|
|
class ModifierType: public Type
|
|
|
|
{
|
|
|
|
public:
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual Category category() const override { return Category::Modifier; }
|
2015-01-22 00:02:38 +00:00
|
|
|
explicit ModifierType(ModifierDefinition const& _modifier);
|
|
|
|
|
|
|
|
virtual TypePointer binaryOperatorResult(Token::Value, TypePointer const&) const override { return TypePointer(); }
|
|
|
|
virtual bool canBeStored() const override { return false; }
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual u256 storageSize() const override;
|
2015-01-22 00:02:38 +00:00
|
|
|
virtual bool canLiveOutsideStorage() const override { return false; }
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned sizeOnStack() const override { return 0; }
|
2015-01-22 00:02:38 +00:00
|
|
|
virtual bool operator==(Type const& _other) const override;
|
2015-06-09 12:26:08 +00:00
|
|
|
virtual std::string toString(bool _short) const override;
|
2015-01-22 00:02:38 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
TypePointers m_parameterTypes;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-12-15 14:46:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Special type for imported modules. These mainly give access to their scope via members.
|
|
|
|
*/
|
|
|
|
class ModuleType: public Type
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual Category category() const override { return Category::Module; }
|
|
|
|
|
|
|
|
explicit ModuleType(SourceUnit const& _source): m_sourceUnit(_source) {}
|
|
|
|
|
|
|
|
virtual TypePointer binaryOperatorResult(Token::Value, TypePointer const&) const override
|
|
|
|
{
|
|
|
|
return TypePointer();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool operator==(Type const& _other) const override;
|
|
|
|
virtual bool canBeStored() const override { return false; }
|
|
|
|
virtual bool canLiveOutsideStorage() const override { return true; }
|
|
|
|
virtual unsigned sizeOnStack() const override { return 0; }
|
|
|
|
virtual MemberList::MemberMap nativeMembers(ContractDefinition const*) const override;
|
|
|
|
|
|
|
|
virtual std::string toString(bool _short) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
SourceUnit const& m_sourceUnit;
|
|
|
|
};
|
|
|
|
|
2014-11-24 12:23:58 +00:00
|
|
|
/**
|
|
|
|
* Special type for magic variables (block, msg, tx), similar to a struct but without any reference
|
|
|
|
* (it always references a global singleton by name).
|
|
|
|
*/
|
|
|
|
class MagicType: public Type
|
|
|
|
{
|
|
|
|
public:
|
2015-02-09 13:08:48 +00:00
|
|
|
enum class Kind { Block, Message, Transaction };
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual Category category() const override { return Category::Magic; }
|
2014-11-24 12:23:58 +00:00
|
|
|
|
2015-12-15 14:46:03 +00:00
|
|
|
explicit MagicType(Kind _kind): m_kind(_kind) {}
|
2015-01-06 17:55:31 +00:00
|
|
|
|
|
|
|
virtual TypePointer binaryOperatorResult(Token::Value, TypePointer const&) const override
|
|
|
|
{
|
|
|
|
return TypePointer();
|
|
|
|
}
|
|
|
|
|
2015-06-08 10:13:44 +00:00
|
|
|
virtual bool operator==(Type const& _other) const override;
|
2014-11-24 12:23:58 +00:00
|
|
|
virtual bool canBeStored() const override { return false; }
|
|
|
|
virtual bool canLiveOutsideStorage() const override { return true; }
|
2015-08-31 16:44:29 +00:00
|
|
|
virtual unsigned sizeOnStack() const override { return 0; }
|
2015-11-25 13:23:35 +00:00
|
|
|
virtual MemberList::MemberMap nativeMembers(ContractDefinition const*) const override;
|
2014-11-24 12:23:58 +00:00
|
|
|
|
2015-06-09 12:26:08 +00:00
|
|
|
virtual std::string toString(bool _short) const override;
|
2014-11-24 12:23:58 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Kind m_kind;
|
|
|
|
};
|
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
|
|
|
}
|