aboutsummaryrefslogtreecommitdiffstats
path: root/Types.h
diff options
context:
space:
mode:
authorLefteris Karapetsas <lefteris@refu.co>2015-02-06 20:42:51 +0800
committerLefteris Karapetsas <lefteris@refu.co>2015-02-06 20:42:51 +0800
commit2c9ff4747d81a34125e976a65d6eca8cb5349c9d (patch)
treebd0962997535edd01c27d38957826cf2222332fe /Types.h
parent76c9f13626495e173ddf3fde301c526097f08651 (diff)
downloaddexon-solidity-2c9ff4747d81a34125e976a65d6eca8cb5349c9d.tar
dexon-solidity-2c9ff4747d81a34125e976a65d6eca8cb5349c9d.tar.gz
dexon-solidity-2c9ff4747d81a34125e976a65d6eca8cb5349c9d.tar.bz2
dexon-solidity-2c9ff4747d81a34125e976a65d6eca8cb5349c9d.tar.lz
dexon-solidity-2c9ff4747d81a34125e976a65d6eca8cb5349c9d.tar.xz
dexon-solidity-2c9ff4747d81a34125e976a65d6eca8cb5349c9d.tar.zst
dexon-solidity-2c9ff4747d81a34125e976a65d6eca8cb5349c9d.zip
getRealType() introduced
Diffstat (limited to 'Types.h')
-rw-r--r--Types.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Types.h b/Types.h
index 1f4d27a2..18a53f9a 100644
--- a/Types.h
+++ b/Types.h
@@ -130,6 +130,8 @@ public:
/// i.e. it behaves differently in lvalue context and in value context.
virtual bool isValueType() const { return false; }
virtual unsigned getSizeOnStack() const { return 1; }
+ /// @returns the real type of some types, like e.g: IntegerConstant
+ virtual TypePointer getRealType() const { return TypePointer(); }
/// Returns the list of all members of this type. Default implementation: no members.
virtual MemberList const& getMembers() const { return EmptyMemberList; }
@@ -140,7 +142,7 @@ public:
virtual u256 literalValue(Literal const*) const
{
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Literal value requested "
- "for type without literals."));
+ "for type without literals."));
}
protected:
@@ -175,6 +177,7 @@ public:
virtual MemberList const& getMembers() const { return isAddress() ? AddressMemberList : EmptyMemberList; }
virtual std::string toString() const override;
+ virtual TypePointer getRealType() const { return std::make_shared<IntegerType>(m_bits, m_modifier); }
int getNumBits() const { return m_bits; }
bool isHash() const { return m_modifier == Modifier::HASH || m_modifier == Modifier::ADDRESS; }
@@ -214,6 +217,7 @@ public:
virtual std::string toString() const override;
virtual u256 literalValue(Literal const* _literal) const override;
+ virtual TypePointer getRealType() const override;
/// @returns the smallest integer type that can hold the value or an empty pointer if not possible.
std::shared_ptr<IntegerType const> getIntegerType() const;