solidity/libsolidity/ast/Types.h

1446 lines
57 KiB
C
Raw Normal View History

2014-10-13 16:22:15 +00:00
/*
2019-02-13 15:56:46 +00:00
This file is part of solidity.
2014-10-13 16:22:15 +00:00
2019-02-13 15:56:46 +00:00
solidity is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
2014-10-13 16:22:15 +00:00
2019-02-13 15:56:46 +00:00
solidity is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2014-10-13 16:22:15 +00:00
2019-02-13 15:56:46 +00:00
You should have received a copy of the GNU General Public License
along with solidity. If not, see <http://www.gnu.org/licenses/>.
2014-10-13 16:22:15 +00:00
*/
/**
* @author Christian <c@ethdev.com>
* @date 2014
* Solidity data types
*/
#pragma once
#include <libsolidity/ast/ASTEnums.h>
2018-12-17 14:33:15 +00:00
#include <libsolidity/ast/ASTForward.h>
#include <libsolidity/parsing/Token.h>
2018-12-17 14:33:15 +00:00
#include <liblangutil/Exceptions.h>
#include <libdevcore/Common.h>
#include <libdevcore/CommonIO.h>
#include <libdevcore/Result.h>
#include <boost/rational.hpp>
#include <map>
2018-12-17 14:33:15 +00:00
#include <memory>
#include <optional>
2017-08-25 10:07:02 +00:00
#include <set>
2018-12-17 14:33:15 +00:00
#include <string>
2014-10-16 12:08:54 +00:00
namespace dev
{
namespace solidity
{
2014-10-13 16:22:15 +00:00
class TypeProvider;
2014-11-20 09:19:43 +00:00
class Type; // forward
2014-12-12 15:49:26 +00:00
class FunctionType; // forward
using TypePointer = Type const*;
using FunctionTypePointer = FunctionType const*;
using TypePointers = std::vector<TypePointer>;
using rational = boost::rational<dev::bigint>;
using TypeResult = Result<TypePointer>;
using BoolResult = Result<bool>;
2014-11-20 09:19:43 +00:00
inline rational makeRational(bigint const& _numerator, bigint const& _denominator)
{
solAssert(_denominator != 0, "division by zero");
// due to a bug in certain versions of boost the denominator has to be positive
if (_denominator < 0)
return rational(-_numerator, -_denominator);
else
return rational(_numerator, _denominator);
}
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:
struct Member
{
Member(std::string const& _name, Type const* _type, Declaration const* _declaration = nullptr):
name(_name),
type(_type),
declaration(_declaration)
{
}
std::string name;
Type const* type;
Declaration const* declaration = nullptr;
};
using MemberMap = std::vector<Member>;
2014-11-20 09:19:43 +00:00
explicit MemberList(MemberMap const& _members): m_memberTypes(_members) {}
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
{
TypePointer type = nullptr;
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)
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
};
static_assert(std::is_nothrow_move_constructible<MemberList>::value, "MemberList should be noexcept move constructible");
/**
* Abstract base class that forms the root of the type hierarchy.
*/
class Type
2014-10-13 16:22:15 +00:00
{
public:
Type() = default;
Type(Type const&) = delete;
Type(Type&&) = delete;
Type& operator=(Type const&) = delete;
Type& operator=(Type&&) = delete;
virtual ~Type() = default;
2014-10-16 12:08:54 +00:00
enum class Category
{
Address, Integer, RationalNumber, StringLiteral, Bool, FixedPoint, Array, ArraySlice,
FixedBytes, Contract, Struct, Function, Enum, Tuple,
2016-06-01 21:39:19 +00:00
Mapping, TypeType, Modifier, Magic, Module,
InaccessibleDynamic
2014-10-13 16:22:15 +00:00
};
/// @returns a pointer to _a or _b if the other is implicitly convertible to it or nullptr otherwise
static TypePointer commonType(Type const* _a, Type const* _b);
2014-10-13 16:22:15 +00:00
2015-08-31 16:44:29 +00:00
virtual Category category() const = 0;
2017-01-17 09:47:44 +00:00
/// @returns a valid solidity identifier such that two types should compare equal if and
/// only if they have the same identifier.
/// The identifier should start with "t_".
/// Can contain characters which are invalid in identifiers.
virtual std::string richIdentifier() const = 0;
/// @returns a valid solidity identifier such that two types should compare equal if and
/// only if they have the same identifier.
/// The identifier should start with "t_".
/// Will not contain any character which would be invalid as an identifier.
std::string identifier() const;
2018-02-23 17:27:27 +00:00
2018-09-20 14:54:57 +00:00
/// More complex identifier strings use "parentheses", where $_ is interpreted as
/// "opening parenthesis", _$ as "closing parenthesis", _$_ as "comma" and any $ that
/// appears as part of a user-supplied identifier is escaped as _$$$_.
2018-02-23 17:27:27 +00:00
/// @returns an escaped identifier (will not contain any parenthesis or commas)
static std::string escapeIdentifier(std::string const& _identifier);
virtual BoolResult isImplicitlyConvertibleTo(Type const& _other) const { return *this == _other; }
virtual BoolResult isExplicitlyConvertibleTo(Type const& _convertTo) const
2014-10-16 12:08:54 +00:00
{
return isImplicitlyConvertibleTo(_convertTo);
}
/// @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 TypeResult unaryOperatorResult(Token) const { return nullptr; }
/// @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 TypeResult binaryOperatorResult(Token _operator, Type const* _other) const
{
return TokenTraits::isCompareOp(_operator) ? commonType(this, _other) : nullptr;
}
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); }
/// @returns number of bytes used by this type when encoded for CALL. Cannot be used for
/// dynamically encoded types.
/// Always returns a value greater than zero and throws if the type cannot be encoded in calldata
/// (or is dynamically encoded).
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.
virtual unsigned calldataEncodedSize(bool _padded) const { (void)_padded; solAssert(false, ""); }
/// Convenience version of @see calldataEncodedSize(bool)
unsigned calldataEncodedSize() const { return calldataEncodedSize(true); }
/// @returns the distance between two elements of this type in a calldata array, tuple or struct.
/// For statically encoded types this is the same as calldataEncodedSize(true).
/// For dynamically encoded types this is the distance between two tail pointers, i.e. 32.
/// Always returns a value greater than zero and throws if the type cannot be encoded in calldata.
unsigned calldataHeadSize() const { return isDynamicallyEncoded() ? 32 : calldataEncodedSize(true); }
/// @returns the (minimal) size of the calldata tail for this type. Can only be used for
/// dynamically encoded types. For dynamically-sized arrays this is 32 (the size of the length),
/// for statically-sized, but dynamically encoded arrays this is 32*length(), for structs
/// this is the sum of the calldataHeadSize's of its members.
/// Always returns a value greater than zero and throws if the type cannot be encoded in calldata
/// (or is not dynamically encoded).
virtual unsigned calldataEncodedTailSize() const { solAssert(false, ""); }
/// @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(); }
/// @returns the size of this data type in bytes when stored in memory. For memory-reference
/// types, this is the size of the actual data area, if it is statically-sized.
virtual u256 memoryDataSize() const { return calldataEncodedSize(); }
/// @returns true if the type is a dynamic array
virtual bool isDynamicallySized() const { return false; }
/// @returns true if the type is dynamically encoded in the ABI
virtual bool isDynamicallyEncoded() 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; }
2019-03-19 15:13:16 +00:00
/// Returns true if the type is a value type that is left-aligned on the stack with a size of
/// storageBytes() bytes. Returns false if the type is a value type that is right-aligned on
/// the stack with a size of storageBytes() bytes. Asserts if it is not a value type or the
/// encoding is more complicated.
/// Signed integers are not considered "more complicated" even though they need to be
/// sign-extended.
virtual bool leftAligned() const { solAssert(false, "Alignment property of non-value type requested."); }
/// 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; }
/// If it is possible to initialize such a value in memory by just writing zeros
/// of the size memoryHeadSize().
virtual bool hasSimpleZeroValueInMemory() const { return true; }
/// @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.
virtual TypePointer mobileType() const { return 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(Type const* _targetType) const
2015-10-14 13:19:50 +00:00
{
return _targetType->dataStoredIn(DataLocation::Storage) ? mobileType() : _targetType;
}
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
virtual std::string toString(bool _short) const = 0;
std::string toString() const { return toString(false); }
/// @returns the canonical name of this type for use in library function signatures.
virtual std::string canonicalName() const { return toString(true); }
/// @returns the signature of this type in external functions, i.e. `uint256` for integers
2017-08-24 13:08:31 +00:00
/// or `(uint256,bytes8)[2]` for an array of structs. If @a _structsByName,
/// structs are given by canonical name like `ContractName.StructName[2]`.
virtual std::string signatureInExternalFunction(bool /*_structsByName*/) const
{
return canonicalName();
}
2014-12-19 10:31:17 +00:00
virtual u256 literalValue(Literal const*) const
2014-11-05 13:20:56 +00:00
{
solAssert(false, "Literal value requested for type without literals: " + toString(false));
2014-11-05 13:20:56 +00:00
}
2014-11-20 09:19:43 +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.
/// If there is no such type, returns an empty shared pointer.
virtual TypePointer encodingType() const { return nullptr; }
/// @returns the encoding type used under the given circumstances for the type of an expression
/// when used for e.g. abi.encode(...) or the empty pointer if the object
/// cannot be encoded.
/// This is different from encodingType since it takes implicit conversions into account.
TypePointer fullEncodingType(bool _inLibraryCall, bool _encoderV2, bool _packed) const;
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(); }
/// @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 TypeResult interfaceType(bool /*_inLibrary*/) const { return nullptr; }
/// Clears all internally cached values (if any).
virtual void clearCache() const;
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
};
/**
* Type for addresses.
*/
class AddressType: public Type
{
public:
explicit AddressType(StateMutability _stateMutability);
Category category() const override { return Category::Address; }
std::string richIdentifier() const override;
BoolResult isImplicitlyConvertibleTo(Type const& _other) const override;
BoolResult isExplicitlyConvertibleTo(Type const& _convertTo) const override;
TypeResult unaryOperatorResult(Token _operator) const override;
TypeResult binaryOperatorResult(Token _operator, Type const* _other) const override;
bool operator==(Type const& _other) const override;
unsigned calldataEncodedSize(bool _padded = true) const override { return _padded ? 32 : 160 / 8; }
unsigned storageBytes() const override { return 160 / 8; }
2019-03-19 15:13:16 +00:00
bool leftAligned() const override { return false; }
bool isValueType() const override { return true; }
MemberList::MemberMap nativeMembers(ContractDefinition const*) const override;
std::string toString(bool _short) const override;
std::string canonicalName() const override;
u256 literalValue(Literal const* _literal) const override;
TypePointer encodingType() const override { return this; }
TypeResult interfaceType(bool) const override { return this; }
StateMutability stateMutability(void) const { return m_stateMutability; }
private:
StateMutability m_stateMutability;
};
/**
* Any kind of integer type (signed, unsigned).
*/
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
{
Unsigned, Signed
2014-10-13 16:22:15 +00:00
};
explicit IntegerType(unsigned _bits, Modifier _modifier = Modifier::Unsigned);
Category category() const override { return Category::Integer; }
2014-10-13 16:22:15 +00:00
std::string richIdentifier() const override;
BoolResult isImplicitlyConvertibleTo(Type const& _convertTo) const override;
BoolResult isExplicitlyConvertibleTo(Type const& _convertTo) const override;
TypeResult unaryOperatorResult(Token _operator) const override;
TypeResult binaryOperatorResult(Token _operator, Type const* _other) const override;
2014-10-13 16:22:15 +00:00
bool operator==(Type const& _other) const override;
2014-10-20 10:41:56 +00:00
unsigned calldataEncodedSize(bool _padded = true) const override { return _padded ? 32 : m_bits / 8; }
unsigned storageBytes() const override { return m_bits / 8; }
2019-03-19 15:13:16 +00:00
bool leftAligned() const override { return false; }
bool isValueType() const override { return true; }
2014-11-21 18:14:56 +00:00
std::string toString(bool _short) const override;
2014-10-16 15:57:27 +00:00
TypePointer encodingType() const override { return this; }
TypeResult interfaceType(bool) const override { return this; }
2015-03-17 13:21:22 +00:00
2018-04-30 21:56:30 +00:00
unsigned numBits() const { return m_bits; }
2015-02-09 13:08:48 +00:00
bool isSigned() const { return m_modifier == Modifier::Signed; }
2017-07-06 09:05:05 +00:00
bigint minValue() const;
bigint maxValue() const;
2014-10-13 16:22:15 +00:00
private:
unsigned const m_bits;
Modifier const m_modifier;
2014-10-13 16:22:15 +00:00
};
2014-12-19 10:31:17 +00:00
/**
* A fixed point type number (signed, unsigned).
*/
class FixedPointType: public Type
{
public:
enum class Modifier
{
Unsigned, Signed
};
explicit FixedPointType(unsigned _totalBits, unsigned _fractionalDigits, Modifier _modifier = Modifier::Unsigned);
Category category() const override { return Category::FixedPoint; }
std::string richIdentifier() const override;
BoolResult isImplicitlyConvertibleTo(Type const& _convertTo) const override;
BoolResult isExplicitlyConvertibleTo(Type const& _convertTo) const override;
TypeResult unaryOperatorResult(Token _operator) const override;
TypeResult binaryOperatorResult(Token _operator, Type const* _other) const override;
bool operator==(Type const& _other) const override;
unsigned calldataEncodedSize(bool _padded = true) const override { return _padded ? 32 : m_totalBits / 8; }
unsigned storageBytes() const override { return m_totalBits / 8; }
2019-03-19 15:13:16 +00:00
bool leftAligned() const override { return false; }
bool isValueType() const override { return true; }
std::string toString(bool _short) const override;
TypePointer encodingType() const override { return this; }
TypeResult interfaceType(bool) const override { return this; }
2017-07-12 13:44:27 +00:00
/// Number of bits used for this type in total.
unsigned numBits() const { return m_totalBits; }
2017-07-12 13:44:27 +00:00
/// Number of decimal digits after the radix point.
unsigned fractionalDigits() const { return m_fractionalDigits; }
bool isSigned() const { return m_modifier == Modifier::Signed; }
2017-07-12 13:44:27 +00:00
/// @returns the largest integer value this type con hold. Note that this is not the
/// largest value in general.
bigint maxIntegerValue() const;
/// @returns the smallest integer value this type can hold. Note hat this is not the
/// smallest value in general.
bigint minIntegerValue() const;
2018-04-19 23:00:05 +00:00
/// @returns the smallest integer type that can hold this type with fractional parts shifted to integers.
IntegerType const* asIntegerType() const;
2018-04-19 23:00:05 +00:00
private:
unsigned m_totalBits;
unsigned m_fractionalDigits;
Modifier m_modifier;
};
/**
2018-04-10 05:41:35 +00:00
* 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.
*/
class RationalNumberType: public Type
2014-12-19 10:31:17 +00:00
{
public:
explicit RationalNumberType(rational const& _value, Type const* _compatibleBytesType = nullptr):
m_value(_value), m_compatibleBytesType(_compatibleBytesType)
{}
Category category() const override { return Category::RationalNumber; }
2014-12-19 10:31:17 +00:00
BoolResult isImplicitlyConvertibleTo(Type const& _convertTo) const override;
BoolResult isExplicitlyConvertibleTo(Type const& _convertTo) const override;
TypeResult unaryOperatorResult(Token _operator) const override;
TypeResult binaryOperatorResult(Token _operator, Type const* _other) const override;
2014-12-19 10:31:17 +00:00
std::string richIdentifier() const override;
bool operator==(Type const& _other) const override;
2014-12-19 10:31:17 +00:00
bool canBeStored() const override { return false; }
bool canLiveOutsideStorage() const override { return false; }
2014-12-19 10:31:17 +00:00
std::string toString(bool _short) const override;
u256 literalValue(Literal const* _literal) const override;
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.
IntegerType const* integerType() const;
/// @returns the smallest fixed type that can hold the value or incurs the least precision loss,
/// unless the value was truncated, then a suitable type will be chosen to indicate such event.
/// If the integer part does not fit, returns an empty pointer.
FixedPointType const* fixedPointType() const;
/// @returns true if the value is not an integer.
2016-05-10 12:30:24 +00:00
bool isFractional() const { return m_value.denominator() != 1; }
2017-02-02 00:16:50 +00:00
/// @returns true if the value is negative.
bool isNegative() const { return m_value < 0; }
/// @returns true if the value is zero.
bool isZero() const { return m_value == 0; }
/// @returns true if the literal is a valid integer.
static std::tuple<bool, rational> isValidLiteral(Literal const& _literal);
2014-12-19 10:31:17 +00:00
private:
rational m_value;
/// Bytes type to which the rational can be explicitly converted.
/// Empty for all rationals that are not directly parsed from hex literals.
TypePointer m_compatibleBytesType;
/// @returns true if the literal is a valid rational number.
static std::tuple<bool, rational> parseRational(std::string const& _value);
/// @returns a truncated readable representation of the bigint keeping only
/// up to 4 leading and 4 trailing digits.
static std::string bigintToReadableString(dev::bigint const& num);
2014-12-19 10:31:17 +00:00
};
/**
* Literal string, can be converted to bytes, bytesX or string.
*/
class StringLiteralType: public Type
{
public:
explicit StringLiteralType(Literal const& _literal);
explicit StringLiteralType(std::string const& _value);
Category category() const override { return Category::StringLiteral; }
BoolResult isImplicitlyConvertibleTo(Type const& _convertTo) const override;
TypeResult binaryOperatorResult(Token, Type const*) const override
{
return nullptr;
}
std::string richIdentifier() const override;
bool operator==(Type const& _other) const override;
bool canBeStored() const override { return false; }
bool canLiveOutsideStorage() const override { return false; }
unsigned sizeOnStack() const override { return 0; }
std::string toString(bool) const override;
TypePointer mobileType() const override;
bool isValidUTF8() const;
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
*/
class FixedBytesType: public Type
2014-12-09 17:46:18 +00:00
{
public:
explicit FixedBytesType(unsigned _bytes);
Category category() const override { return Category::FixedBytes; }
2014-12-09 17:46:18 +00:00
BoolResult isImplicitlyConvertibleTo(Type const& _convertTo) const override;
BoolResult isExplicitlyConvertibleTo(Type const& _convertTo) const override;
std::string richIdentifier() const override;
bool operator==(Type const& _other) const override;
TypeResult unaryOperatorResult(Token _operator) const override;
TypeResult binaryOperatorResult(Token _operator, Type const* _other) const override;
2014-12-09 17:46:18 +00:00
unsigned calldataEncodedSize(bool _padded) const override { return _padded && m_bytes > 0 ? 32 : m_bytes; }
unsigned storageBytes() const override { return m_bytes; }
2019-03-19 15:13:16 +00:00
bool leftAligned() const override { return true; }
bool isValueType() const override { return true; }
2014-12-09 17:46:18 +00:00
std::string toString(bool) const override { return "bytes" + dev::toString(m_bytes); }
MemberList::MemberMap nativeMembers(ContractDefinition const*) const override;
TypePointer encodingType() const override { return this; }
TypeResult interfaceType(bool) const override { return this; }
2014-12-09 17:46:18 +00:00
unsigned numBytes() const { return m_bytes; }
2014-12-09 17:46:18 +00:00
private:
unsigned m_bytes;
2014-12-09 17:46:18 +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:
Category category() const override { return Category::Bool; }
std::string richIdentifier() const override { return "t_bool"; }
TypeResult unaryOperatorResult(Token _operator) const override;
TypeResult binaryOperatorResult(Token _operator, Type const* _other) const override;
unsigned calldataEncodedSize(bool _padded) const override{ return _padded ? 32 : 1; }
unsigned storageBytes() const override { return 1; }
2019-03-19 15:13:16 +00:00
bool leftAligned() const override { return false; }
bool isValueType() const override { return true; }
std::string toString(bool) const override { return "bool"; }
u256 literalValue(Literal const* _literal) const override;
TypePointer encodingType() const override { return this; }
TypeResult interfaceType(bool) const override { return this; }
2014-10-13 16:22:15 +00:00
};
/**
* Base class used by types which are not value types and can be stored either in storage, memory
* or calldata. This is currently used by arrays and structs.
*/
class ReferenceType: public Type
{
protected:
2015-06-17 10:01:39 +00:00
explicit ReferenceType(DataLocation _location): m_location(_location) {}
public:
2015-06-17 10:01:39 +00:00
DataLocation location() const { return m_location; }
TypeResult unaryOperatorResult(Token _operator) const override;
TypeResult binaryOperatorResult(Token, Type const*) const override
{
return nullptr;
}
unsigned memoryHeadSize() const override { return 32; }
u256 memoryDataSize() const override = 0;
unsigned calldataEncodedSize(bool) const override = 0;
unsigned calldataEncodedTailSize() const override = 0;
/// @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.
virtual std::unique_ptr<ReferenceType> copyForLocation(DataLocation _location, bool _isPointer) const = 0;
TypePointer mobileType() const override { return withLocation(m_location, true); }
bool dataStoredIn(DataLocation _location) const override { return m_location == _location; }
bool hasSimpleZeroValueInMemory() const override { return false; }
/// 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();
}
Type const* withLocation(DataLocation _location, bool _isPointer) const;
protected:
Type const* copyForLocationIfReference(Type const* _type) const;
/// @returns a human-readable description of the reference part of the type.
std::string stringForReferencePart() const;
2017-01-17 09:47:44 +00:00
/// @returns the suffix computed from the reference part to be used by identifier();
std::string identifierLocationSuffix() const;
2015-06-17 10:01:39 +00:00
DataLocation m_location = DataLocation::Storage;
bool m_isPointer = true;
};
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>[]).
* 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
*/
class ArrayType: public ReferenceType
2015-02-09 17:45:00 +00:00
{
public:
2015-05-28 14:20:50 +00:00
/// Constructor for a byte array ("bytes") and string.
explicit ArrayType(DataLocation _location, bool _isString = false);
/// Constructor for a dynamically sized array type ("type[]")
ArrayType(DataLocation _location, Type const* _baseType):
ReferenceType(_location),
m_baseType(copyForLocationIfReference(_baseType))
{
}
/// Constructor for a fixed-size array type ("type[20]")
ArrayType(DataLocation _location, Type const* _baseType, u256 const& _length):
ReferenceType(_location),
m_baseType(copyForLocationIfReference(_baseType)),
2015-03-16 16:52:19 +00:00
m_hasDynamicLength(false),
m_length(_length)
{}
Category category() const override { return Category::Array; }
BoolResult isImplicitlyConvertibleTo(Type const& _convertTo) const override;
BoolResult isExplicitlyConvertibleTo(Type const& _convertTo) const override;
std::string richIdentifier() const override;
2019-02-13 15:22:42 +00:00
bool operator==(Type const& _other) const override;
unsigned calldataEncodedSize(bool) const override;
unsigned calldataEncodedTailSize() const override;
bool isDynamicallySized() const override { return m_hasDynamicLength; }
bool isDynamicallyEncoded() const override;
u256 storageSize() const override;
bool canLiveOutsideStorage() const override { return m_baseType->canLiveOutsideStorage(); }
unsigned sizeOnStack() const override;
std::string toString(bool _short) const override;
std::string canonicalName() const override;
std::string signatureInExternalFunction(bool _structsByName) const override;
MemberList::MemberMap nativeMembers(ContractDefinition const* _currentScope) const override;
TypePointer encodingType() const override;
TypePointer decodingType() const override;
TypeResult interfaceType(bool _inLibrary) const override;
2015-02-09 17:45:00 +00:00
/// @returns true if this is valid to be stored in calldata
bool validForCalldata() const;
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; }
Type const* baseType() const { solAssert(!!m_baseType, ""); return m_baseType; }
2015-08-31 16:44:29 +00:00
u256 const& length() const { return m_length; }
u256 memoryDataSize() const override;
2015-02-10 13:57:01 +00:00
std::unique_ptr<ReferenceType> copyForLocation(DataLocation _location, bool _isPointer) const override;
2019-02-14 09:50:13 +00:00
/// The offset to advance in calldata to move from one array element to the next.
unsigned calldataStride() const { return isByteArray() ? 1 : m_baseType->calldataHeadSize(); }
2019-02-14 09:50:13 +00:00
/// The offset to advance in memory to move from one array element to the next.
unsigned memoryStride() const { return isByteArray() ? 1 : m_baseType->memoryHeadSize(); }
/// The offset to advance in storage to move from one array element to the next.
unsigned storageStride() const { return isByteArray() ? 1 : m_baseType->storageBytes(); }
void clearCache() const override;
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 };
bigint unlimitedStaticCalldataSize(bool _padded) const;
2015-05-28 14:20:50 +00:00
///< Byte arrays ("bytes") and strings have different semantics from ordinary arrays.
ArrayKind m_arrayKind = ArrayKind::Ordinary;
Type const* m_baseType;
bool m_hasDynamicLength = true;
u256 m_length;
mutable std::optional<TypeResult> m_interfaceType;
mutable std::optional<TypeResult> m_interfaceType_library;
2015-02-09 17:45:00 +00:00
};
class ArraySliceType: public ReferenceType
{
public:
explicit ArraySliceType(ArrayType const& _arrayType): ReferenceType(_arrayType.location()), m_arrayType(_arrayType) {}
Category category() const override { return Category::ArraySlice; }
BoolResult isImplicitlyConvertibleTo(Type const& _other) const override;
std::string richIdentifier() const override;
bool operator==(Type const& _other) const override;
unsigned calldataEncodedSize(bool) const override { solAssert(false, ""); }
unsigned calldataEncodedTailSize() const override { return 32; }
bool isDynamicallySized() const override { return true; }
bool isDynamicallyEncoded() const override { return true; }
bool canLiveOutsideStorage() const override { return m_arrayType.canLiveOutsideStorage(); }
unsigned sizeOnStack() const override { return 2; }
std::string toString(bool _short) const override;
/// @returns true if this is valid to be stored in calldata
bool validForCalldata() const { return m_arrayType.validForCalldata(); }
ArrayType const& arrayType() const { return m_arrayType; }
u256 memoryDataSize() const override { solAssert(false, ""); }
std::unique_ptr<ReferenceType> copyForLocation(DataLocation, bool) const override { solAssert(false, ""); }
private:
ArrayType const& m_arrayType;
};
/**
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-16 21:49:45 +00:00
class ContractType: public Type
2014-10-13 16:22:15 +00:00
{
public:
2015-01-27 13:32:59 +00:00
explicit ContractType(ContractDefinition const& _contract, bool _super = false):
m_contract(_contract), m_super(_super) {}
Category category() const override { return Category::Contract; }
/// Contracts can be implicitly converted only to base contracts.
BoolResult isImplicitlyConvertibleTo(Type const& _convertTo) const override;
/// Contracts can only be explicitly converted to address types and base contracts.
BoolResult isExplicitlyConvertibleTo(Type const& _convertTo) const override;
TypeResult unaryOperatorResult(Token _operator) const override;
std::string richIdentifier() const override;
bool operator==(Type const& _other) const override;
unsigned calldataEncodedSize(bool _padded ) const override
{
solAssert(!isSuper(), "");
return encodingType()->calldataEncodedSize(_padded);
}
unsigned storageBytes() const override { solAssert(!isSuper(), ""); return 20; }
2019-03-19 15:13:16 +00:00
bool leftAligned() const override { solAssert(!isSuper(), ""); return false; }
bool canLiveOutsideStorage() const override { return !isSuper(); }
unsigned sizeOnStack() const override { return m_super ? 0 : 1; }
bool isValueType() const override { return !isSuper(); }
std::string toString(bool _short) const override;
std::string canonicalName() const override;
MemberList::MemberMap nativeMembers(ContractDefinition const* _currentScope) const override;
Type const* encodingType() const override;
TypeResult interfaceType(bool _inLibrary) const override
{
if (isSuper())
return nullptr;
return _inLibrary ? this : encodingType();
}
2014-12-04 18:38:24 +00:00
/// See documentation of m_super
2015-01-27 13:32:59 +00:00
bool isSuper() const { return m_super; }
// @returns true if and only if the contract has a receive ether function or a payable fallback function, i.e.
// if it has code that will be executed on plain ether transfers
bool isPayable() const;
2015-08-31 16:44:29 +00:00
ContractDefinition const& contractDefinition() const { return m_contract; }
2015-01-13 17:12:19 +00:00
/// Returns the function type of the constructor modified to return an object of the contract's type.
FunctionType const* newExpressionType() const;
2014-12-12 15:49:26 +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;
2014-10-13 16:22:15 +00:00
private:
ContractDefinition const& m_contract;
/// If true, this is a special "super" type of m_contract containing only members that m_contract inherited
bool m_super = false;
2015-08-31 16:44:29 +00:00
/// Type of the constructor, @see constructorType. Lazily initialized.
mutable FunctionType const* m_constructorType = nullptr;
2014-10-13 16:22:15 +00:00
};
/**
* The type of a struct instance, there is one distinct type per struct definition.
*/
class StructType: public ReferenceType
2014-10-13 16:22:15 +00:00
{
public:
explicit StructType(StructDefinition const& _struct, DataLocation _location = DataLocation::Storage):
ReferenceType(_location), m_struct(_struct) {}
Category category() const override { return Category::Struct; }
2019-02-13 15:22:42 +00:00
BoolResult isImplicitlyConvertibleTo(Type const& _convertTo) const override;
std::string richIdentifier() const override;
bool operator==(Type const& _other) const override;
unsigned calldataEncodedSize(bool) const override;
unsigned calldataEncodedTailSize() const override;
bool isDynamicallyEncoded() const override;
u256 memoryDataSize() const override;
u256 storageSize() const override;
bool canLiveOutsideStorage() const override { return true; }
std::string toString(bool _short) const override;
2014-11-13 00:12:57 +00:00
MemberList::MemberMap nativeMembers(ContractDefinition const* _currentScope) const override;
Type const* encodingType() const override;
TypeResult interfaceType(bool _inLibrary) const override;
2014-11-20 09:19:43 +00:00
2019-03-19 10:47:58 +00:00
bool recursive() const
{
if (m_recursive.has_value())
return m_recursive.value();
2019-03-19 10:47:58 +00:00
interfaceType(false);
return m_recursive.value();
2019-03-19 10:47:58 +00:00
}
std::unique_ptr<ReferenceType> copyForLocation(DataLocation _location, bool _isPointer) const override;
std::string canonicalName() const override;
std::string signatureInExternalFunction(bool _structsByName) const override;
2018-04-10 05:41:35 +00:00
/// @returns a function that performs the type conversion between a list of struct members
2015-06-30 19:08:34 +00:00
/// and a memory struct of this type.
FunctionType const* constructorType() const;
2015-06-30 19:08:34 +00:00
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;
unsigned calldataOffsetOfMember(std::string const& _name) const;
2014-10-16 15:57:27 +00:00
StructDefinition const& structDefinition() const { return m_struct; }
/// @returns the vector of types of members available in memory.
TypePointers memoryMemberTypes() const;
/// @returns the set of all members that are removed in the memory version (typically mappings).
std::set<std::string> membersMissingInMemory() const;
void clearCache() const override;
2014-10-13 16:22:15 +00:00
private:
StructDefinition const& m_struct;
// Caches for interfaceType(bool)
mutable std::optional<TypeResult> m_interfaceType;
mutable std::optional<TypeResult> m_interfaceType_library;
mutable std::optional<bool> m_recursive;
2014-10-13 16:22:15 +00:00
};
/**
* The type of an enum instance, there is one distinct type per enum definition.
*/
class EnumType: public Type
{
public:
explicit EnumType(EnumDefinition const& _enum): m_enum(_enum) {}
Category category() const override { return Category::Enum; }
TypeResult unaryOperatorResult(Token _operator) const override;
std::string richIdentifier() const override;
bool operator==(Type const& _other) const override;
unsigned calldataEncodedSize(bool _padded) const override
{
return encodingType()->calldataEncodedSize(_padded);
}
unsigned storageBytes() const override;
2019-03-19 15:13:16 +00:00
bool leftAligned() const override { return false; }
bool canLiveOutsideStorage() const override { return true; }
std::string toString(bool _short) const override;
std::string canonicalName() const override;
bool isValueType() const override { return true; }
BoolResult isExplicitlyConvertibleTo(Type const& _convertTo) const override;
TypePointer encodingType() const override;
TypeResult interfaceType(bool _inLibrary) const override
{
return _inLibrary ? this : encodingType();
}
2015-08-31 16:44:29 +00:00
EnumDefinition const& enumDefinition() const { return m_enum; }
/// @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;
2016-11-07 17:15:59 +00:00
size_t numberOfMembers() const;
private:
EnumDefinition const& m_enum;
};
/**
* 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).
*/
class TupleType: public Type
{
public:
explicit TupleType(std::vector<TypePointer> _types = {}): m_components(std::move(_types)) {}
Category category() const override { return Category::Tuple; }
BoolResult isImplicitlyConvertibleTo(Type const& _other) const override;
std::string richIdentifier() const override;
bool operator==(Type const& _other) const override;
TypeResult binaryOperatorResult(Token, Type const*) const override { return nullptr; }
std::string toString(bool) const override;
bool canBeStored() const override { return false; }
u256 storageSize() const override;
bool canLiveOutsideStorage() const override { return false; }
unsigned sizeOnStack() const override;
bool hasSimpleZeroValueInMemory() const override { return false; }
TypePointer mobileType() const override;
2015-10-14 13:19:50 +00:00
/// Converts components to their temporary types and performs some wildcard matching.
TypePointer closestTemporaryType(Type const* _targetType) const override;
std::vector<TypePointer> const& components() const { return m_components; }
private:
std::vector<TypePointer> const m_components;
};
/**
* 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-16 21:49:45 +00:00
class FunctionType: public Type
2014-10-13 16:22:15 +00:00
{
public:
/// How this function is invoked on the EVM.
enum class Kind
{
Internal, ///< stack-call using plain JUMP
External, ///< external call using CALL
2017-02-09 01:37:53 +00:00
DelegateCall, ///< external call using DELEGATECALL, i.e. not exchanging the storage
2017-08-01 09:32:23 +00:00
BareCall, ///< CALL without function hash
BareCallCode, ///< CALLCODE without function hash
BareDelegateCall, ///< DELEGATECALL without function hash
2018-08-15 12:40:20 +00:00
BareStaticCall, ///< STATICCALL without function hash
Creation, ///< external call using CREATE
Send, ///< CALL, but without data and gas
2017-02-05 20:21:14 +00:00
Transfer, ///< CALL, but without data and throws on error
KECCAK256, ///< KECCAK256
Selfdestruct, ///< SELFDESTRUCT
2017-02-06 22:11:19 +00:00
Revert, ///< REVERT
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
BlockHash, ///< BLOCKHASH
2015-11-18 16:12:39 +00:00
AddMod, ///< ADDMOD
MulMod, ///< MULMOD
ArrayPush, ///< .push() to a dynamically sized array in storage
ArrayPop, ///< .pop() from a dynamically sized array in storage
2015-11-17 00:47:47 +00:00
ByteArrayPush, ///< .push() to a dynamically sized byte array in storage
2017-02-09 01:37:53 +00:00
ObjectCreation, ///< array creation using new
2017-03-09 16:03:53 +00:00
Assert, ///< assert()
Require, ///< require()
ABIEncode,
ABIEncodePacked,
ABIEncodeWithSelector,
ABIEncodeWithSignature,
2018-06-30 16:09:13 +00:00
ABIDecode,
2018-08-15 12:40:20 +00:00
GasLeft, ///< gasleft()
2019-01-10 15:28:39 +00:00
MetaType ///< type(...)
};
2014-11-25 17:23:39 +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.
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);
2016-09-27 19:37:32 +00:00
/// Creates the type of a function type name.
explicit FunctionType(FunctionTypeName const& _typeName);
/// Function type constructor to be used for a plain type (not derived from a declaration).
2015-02-20 20:00:13 +00:00
FunctionType(
strings const& _parameterTypes,
strings const& _returnParameterTypes,
Kind _kind = Kind::Internal,
bool _arbitraryParameters = false,
StateMutability _stateMutability = StateMutability::NonPayable
): FunctionType(
parseElementaryTypeVector(_parameterTypes),
parseElementaryTypeVector(_returnParameterTypes),
strings(_parameterTypes.size(), ""),
strings(_returnParameterTypes.size(), ""),
_kind,
_arbitraryParameters,
_stateMutability
)
{
}
/// Detailed constructor, use with care.
FunctionType(
TypePointers const& _parameterTypes,
TypePointers const& _returnParameterTypes,
strings _parameterNames = strings(),
strings _returnParameterNames = strings(),
Kind _kind = Kind::Internal,
bool _arbitraryParameters = false,
StateMutability _stateMutability = StateMutability::NonPayable,
Declaration const* _declaration = nullptr,
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_kind(_kind),
m_stateMutability(_stateMutability),
2015-06-22 16:05:13 +00:00
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)
{
solAssert(
m_parameterNames.size() == m_parameterTypes.size(),
"Parameter names list must match parameter types list!"
);
solAssert(
m_returnParameterNames.size() == m_returnParameterTypes.size(),
"Return parameter names list must match return parameter types list!"
);
solAssert(
!m_bound || !m_parameterTypes.empty(),
"Attempted construction of bound function without self type"
);
}
2014-10-13 16:22:15 +00:00
Category category() const override { return Category::Function; }
/// @returns the type of the "new Contract" function, i.e. basically the constructor.
static FunctionTypePointer newExpressionType(ContractDefinition const& _contract);
2015-11-25 13:23:35 +00:00
TypePointers parameterTypes() const;
std::vector<std::string> parameterNames() const;
2015-08-31 16:44:29 +00:00
TypePointers const& returnParameterTypes() const { return m_returnParameterTypes; }
/// @returns the list of return parameter types. All dynamically-sized types (this excludes
/// storage pointers) are replaced by InaccessibleDynamicType instances.
TypePointers returnParameterTypesWithoutDynamicTypes() const;
2015-08-31 16:44:29 +00:00
std::vector<std::string> const& returnParameterNames() const { return m_returnParameterNames; }
2015-11-25 13:23:35 +00:00
/// @returns the "self" parameter type for a bound function
Type const* selfType() const;
std::string richIdentifier() const override;
bool operator==(Type const& _other) const override;
BoolResult isImplicitlyConvertibleTo(Type const& _convertTo) const override;
BoolResult isExplicitlyConvertibleTo(Type const& _convertTo) const override;
TypeResult unaryOperatorResult(Token _operator) const override;
TypeResult binaryOperatorResult(Token, Type const*) const override;
std::string canonicalName() const override;
std::string toString(bool _short) const override;
unsigned calldataEncodedSize(bool _padded) const override;
bool canBeStored() const override { return m_kind == Kind::Internal || m_kind == Kind::External; }
u256 storageSize() const override;
2019-03-19 15:13:16 +00:00
bool leftAligned() const override;
unsigned storageBytes() const override;
bool isValueType() const override { return true; }
bool canLiveOutsideStorage() const override { return m_kind == Kind::Internal || m_kind == Kind::External; }
unsigned sizeOnStack() const override;
bool hasSimpleZeroValueInMemory() const override { return false; }
MemberList::MemberMap nativeMembers(ContractDefinition const* _currentScope) const override;
TypePointer encodingType() const override;
TypeResult interfaceType(bool _inLibrary) const override;
2014-11-25 17:23:39 +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.
/// @returns an empty shared pointer if one of the input/return parameters does not have an
/// external type.
FunctionTypePointer interfaceFunctionType() const;
/// @returns true if this function can take the given arguments (possibly
/// after implicit conversion).
/// @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(
FuncCallArguments const& _arguments,
Type const* _selfType = nullptr
) const;
/// @returns true if the types of parameters are equal (does not check return parameter types)
bool hasEqualParameterTypes(FunctionType const& _other) const;
/// @returns true iff the return types are equal (does not check parameter types)
bool hasEqualReturnTypes(FunctionType const& _other) const;
/// @returns true iff the function type is equal to the given type, ignoring state mutability differences.
bool equalExcludingStateMutability(FunctionType const& _other) const;
2018-08-15 12:40:20 +00:00
/// @returns true if the ABI is NOT used for this call (only meaningful for external calls)
bool isBareCall() const;
Kind const& kind() const { return m_kind; }
StateMutability stateMutability() const { return m_stateMutability; }
/// @returns the external signature of this function type given the function name
std::string externalSignature() const;
/// @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
{
solAssert(m_declaration, "Requested declaration from a FunctionType that has none");
return *m_declaration;
}
bool hasDeclaration() const { return !!m_declaration; }
/// @returns true if the result of this function only depends on its arguments,
/// does not modify the state and is a compile-time constant.
2017-03-01 18:12:40 +00:00
/// Currently, this will only return true for internal functions like keccak and ecrecover.
bool isPure() const;
bool isPayable() const { return m_stateMutability == StateMutability::Payable; }
/// @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
/// true iff arguments are to be padded to multiples of 32 bytes for external calls
/// The only functions that do not pad are hash functions, the low-level call functions
/// and abi.encodePacked.
bool padArguments() const;
bool takesArbitraryParameters() const { return m_arbitraryParameters; }
/// true iff the function takes a single bytes parameter and it is passed on without padding.
bool takesSinglePackedBytesParameter() const
{
switch (m_kind)
{
case FunctionType::Kind::KECCAK256:
case FunctionType::Kind::SHA256:
case FunctionType::Kind::RIPEMD160:
case FunctionType::Kind::BareCall:
case FunctionType::Kind::BareCallCode:
case FunctionType::Kind::BareDelegateCall:
2018-08-15 12:40:20 +00:00
case FunctionType::Kind::BareStaticCall:
return true;
default:
return false;
}
}
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; }
/// @returns a copy of this type, where gas or value are set manually. This will never set one
2018-04-10 05:41:35 +00:00
/// of the parameters to false.
TypePointer copyAndSetGasOrValue(bool _setGas, bool _setValue) const;
/// @returns a copy of this function type where the location of reference types is changed
/// from CallData to Memory. This is the type that would be used when the function is
/// called, as opposed to the parameter types that are available inside the function body.
/// Also supports variants to be used for library or bound calls.
/// @param _inLibrary if true, uses DelegateCall as location.
/// @param _bound if true, the function type is set to be bound.
FunctionTypePointer asCallableFunction(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);
TypePointers m_parameterTypes;
TypePointers m_returnParameterTypes;
std::vector<std::string> m_parameterNames;
std::vector<std::string> m_returnParameterNames;
Kind const m_kind;
StateMutability m_stateMutability = StateMutability::NonPayable;
2015-03-03 11:58:01 +00:00
/// true if the function takes an arbitrary number of arguments of arbitrary types
bool const m_arbitraryParameters = false;
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)
Declaration const* m_declaration = nullptr;
2014-10-13 16:22:15 +00:00
};
/**
* The type of a mapping, there is one distinct type per key/value type pair.
* Mappings always occupy their own storage slot, but do not actually use it.
*/
2014-10-16 21:49:45 +00:00
class MappingType: public Type
2014-10-13 16:22:15 +00:00
{
public:
MappingType(Type const* _keyType, Type const* _valueType):
2014-11-10 16:31:09 +00:00
m_keyType(_keyType), m_valueType(_valueType) {}
2014-10-16 15:57:27 +00:00
Category category() const override { return Category::Mapping; }
std::string richIdentifier() const override;
bool operator==(Type const& _other) const override;
std::string toString(bool _short) const override;
std::string canonicalName() const override;
bool canLiveOutsideStorage() const override { return false; }
TypeResult binaryOperatorResult(Token, Type const*) const override { return nullptr; }
Type const* encodingType() const override;
TypeResult interfaceType(bool _inLibrary) const override;
bool dataStoredIn(DataLocation _location) const override { return _location == DataLocation::Storage; }
/// Cannot be stored in memory, but just in case.
bool hasSimpleZeroValueInMemory() const override { solAssert(false, ""); }
2014-10-20 10:41:56 +00:00
Type const* keyType() const { return m_keyType; }
Type const* valueType() const { return m_valueType; }
2014-11-13 00:12:57 +00:00
2014-10-13 16:22:15 +00:00
private:
TypePointer m_keyType;
TypePointer m_valueType;
2014-10-13 16:22:15 +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-16 21:49:45 +00:00
class TypeType: public Type
2014-10-13 16:22:15 +00:00
{
public:
explicit TypeType(Type const* _actualType): m_actualType(_actualType) {}
Category category() const override { return Category::TypeType; }
Type const* actualType() const { return m_actualType; }
2014-10-13 16:22:15 +00:00
TypeResult binaryOperatorResult(Token, Type const*) const override { return nullptr; }
std::string richIdentifier() const override;
bool operator==(Type const& _other) const override;
bool canBeStored() const override { return false; }
u256 storageSize() const override;
bool canLiveOutsideStorage() const override { return false; }
unsigned sizeOnStack() const override;
bool hasSimpleZeroValueInMemory() const override { solAssert(false, ""); }
std::string toString(bool _short) const override { return "type(" + m_actualType->toString(_short) + ")"; }
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:
TypePointer m_actualType;
2014-10-13 16:22:15 +00:00
};
/**
* The type of a function modifier. Not used for anything for now.
*/
class ModifierType: public Type
{
public:
explicit ModifierType(ModifierDefinition const& _modifier);
Category category() const override { return Category::Modifier; }
TypeResult binaryOperatorResult(Token, Type const*) const override { return nullptr; }
bool canBeStored() const override { return false; }
u256 storageSize() const override;
bool canLiveOutsideStorage() const override { return false; }
unsigned sizeOnStack() const override { return 0; }
bool hasSimpleZeroValueInMemory() const override { solAssert(false, ""); }
std::string richIdentifier() const override;
bool operator==(Type const& _other) const override;
std::string toString(bool _short) const override;
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:
explicit ModuleType(SourceUnit const& _source): m_sourceUnit(_source) {}
Category category() const override { return Category::Module; }
TypeResult binaryOperatorResult(Token, Type const*) const override { return nullptr; }
std::string richIdentifier() const override;
bool operator==(Type const& _other) const override;
bool canBeStored() const override { return false; }
bool canLiveOutsideStorage() const override { return true; }
bool hasSimpleZeroValueInMemory() const override { solAssert(false, ""); }
unsigned sizeOnStack() const override { return 0; }
MemberList::MemberMap nativeMembers(ContractDefinition const*) const override;
2015-12-15 14:46:03 +00:00
std::string toString(bool _short) const override;
2015-12-15 14:46:03 +00:00
private:
SourceUnit const& m_sourceUnit;
};
2014-11-24 12:23:58 +00:00
/**
2019-01-10 15:28:39 +00:00
* Special type for magic variables (block, msg, tx, type(...)), similar to a struct but without any reference.
2014-11-24 12:23:58 +00:00
*/
class MagicType: public Type
{
public:
2019-01-10 15:28:39 +00:00
enum class Kind {
Block, ///< "block"
Message, ///< "msg"
Transaction, ///< "tx"
ABI, ///< "abi"
MetaType ///< "type(...)"
};
2014-11-24 12:23:58 +00:00
public:
2015-12-15 14:46:03 +00:00
explicit MagicType(Kind _kind): m_kind(_kind) {}
explicit MagicType(Type const* _metaTypeArg): m_kind{Kind::MetaType}, m_typeArgument{_metaTypeArg} {}
Category category() const override { return Category::Magic; }
TypeResult binaryOperatorResult(Token, Type const*) const override
{
return nullptr;
}
std::string richIdentifier() const override;
bool operator==(Type const& _other) const override;
bool canBeStored() const override { return false; }
bool canLiveOutsideStorage() const override { return true; }
bool hasSimpleZeroValueInMemory() const override { solAssert(false, ""); }
unsigned sizeOnStack() const override { return 0; }
MemberList::MemberMap nativeMembers(ContractDefinition const*) const override;
2014-11-24 12:23:58 +00:00
std::string toString(bool _short) const override;
2014-11-24 12:23:58 +00:00
Kind kind() const { return m_kind; }
TypePointer typeArgument() const;
2014-11-24 12:23:58 +00:00
private:
Kind m_kind;
2019-01-10 15:28:39 +00:00
/// Contract type used for contract metadata magic.
TypePointer m_typeArgument;
2014-11-24 12:23:58 +00:00
};
2016-06-01 21:39:19 +00:00
/**
* Special type that is used for dynamic types in returns from external function calls
* (The EVM currently cannot access dynamically-sized return values).
*/
class InaccessibleDynamicType: public Type
{
public:
Category category() const override { return Category::InaccessibleDynamic; }
std::string richIdentifier() const override { return "t_inaccessible"; }
BoolResult isImplicitlyConvertibleTo(Type const&) const override { return false; }
BoolResult isExplicitlyConvertibleTo(Type const&) const override { return false; }
TypeResult binaryOperatorResult(Token, Type const*) const override { return nullptr; }
unsigned calldataEncodedSize(bool _padded) const override { (void)_padded; return 32; }
bool canBeStored() const override { return false; }
bool canLiveOutsideStorage() const override { return false; }
bool isValueType() const override { return true; }
unsigned sizeOnStack() const override { return 1; }
bool hasSimpleZeroValueInMemory() const override { solAssert(false, ""); }
std::string toString(bool) const override { return "inaccessible dynamic type"; }
TypePointer decodingType() const override;
2016-06-01 21:39:19 +00:00
};
2014-10-16 12:08:54 +00:00
}
}