aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-03-27 20:28:32 +0800
committerLiana Husikyan <liana@ethdev.com>2015-03-27 20:28:32 +0800
commita3d829d074859d748f1fd392acb8b5883f646e61 (patch)
tree83297cd3280973d788bc366bb04bf83c3ef339b0
parentb1ca27ea93907dc500d0b84298f5d63a9d4a7c1d (diff)
downloaddexon-solidity-a3d829d074859d748f1fd392acb8b5883f646e61.tar
dexon-solidity-a3d829d074859d748f1fd392acb8b5883f646e61.tar.gz
dexon-solidity-a3d829d074859d748f1fd392acb8b5883f646e61.tar.bz2
dexon-solidity-a3d829d074859d748f1fd392acb8b5883f646e61.tar.lz
dexon-solidity-a3d829d074859d748f1fd392acb8b5883f646e61.tar.xz
dexon-solidity-a3d829d074859d748f1fd392acb8b5883f646e61.tar.zst
dexon-solidity-a3d829d074859d748f1fd392acb8b5883f646e61.zip
added externalTypes function to functionType
removed flag for externalSigniture
-rw-r--r--AST.cpp8
-rw-r--r--AST.h4
-rw-r--r--ExpressionCompiler.cpp2
-rw-r--r--Types.cpp24
-rw-r--r--Types.h6
5 files changed, 30 insertions, 14 deletions
diff --git a/AST.cpp b/AST.cpp
index 461c3d0c..1736469e 100644
--- a/AST.cpp
+++ b/AST.cpp
@@ -192,7 +192,7 @@ vector<pair<FixedHash<4>, FunctionTypePointer>> const& ContractDefinition::getIn
if (functionsSeen.count(f->getName()) == 0 && f->isPartOfExternalInterface())
{
functionsSeen.insert(f->getName());
- FixedHash<4> hash(dev::sha3(f->externalSignature(true)));
+ FixedHash<4> hash(dev::sha3(f->externalSignature()));
m_interfaceFunctionList->push_back(make_pair(hash, make_shared<FunctionType>(*f, false)));
}
@@ -202,7 +202,7 @@ vector<pair<FixedHash<4>, FunctionTypePointer>> const& ContractDefinition::getIn
FunctionType ftype(*v);
solAssert(v->getType().get(), "");
functionsSeen.insert(v->getName());
- FixedHash<4> hash(dev::sha3(ftype.externalSignature(true, v->getName())));
+ FixedHash<4> hash(dev::sha3(ftype.externalSignature(v->getName())));
m_interfaceFunctionList->push_back(make_pair(hash, make_shared<FunctionType>(*v)));
}
}
@@ -320,9 +320,9 @@ void FunctionDefinition::checkTypeRequirements()
m_body->checkTypeRequirements();
}
-string FunctionDefinition::externalSignature(bool isExternalCall) const
+string FunctionDefinition::externalSignature() const
{
- return FunctionType(*this).externalSignature(isExternalCall, getName());
+ return FunctionType(*this).externalSignature(getName());
}
bool VariableDeclaration::isLValue() const
diff --git a/AST.h b/AST.h
index abcae83c..00ad3307 100644
--- a/AST.h
+++ b/AST.h
@@ -422,9 +422,9 @@ public:
void checkTypeRequirements();
/// @returns the external signature of the function
- /// That consists of the name of the function followed by the types (external types if isExternalCall) of the
+ /// That consists of the name of the function followed by the types of the
/// arguments separated by commas all enclosed in parentheses without any spaces.
- std::string externalSignature(bool isExternalCall = false) const;
+ std::string externalSignature() const;
private:
bool m_isConstructor;
diff --git a/ExpressionCompiler.cpp b/ExpressionCompiler.cpp
index ddc347e6..90568767 100644
--- a/ExpressionCompiler.cpp
+++ b/ExpressionCompiler.cpp
@@ -544,7 +544,7 @@ bool ExpressionCompiler::visit(FunctionCall const& _functionCall)
}
if (!event.isAnonymous())
{
- m_context << u256(h256::Arith(dev::sha3(function.externalSignature(false, event.getName()))));
+ m_context << u256(h256::Arith(dev::sha3(function.externalSignature(event.getName()))));
++numIndexed;
}
solAssert(numIndexed <= 4, "Too many indexed arguments.");
diff --git a/Types.cpp b/Types.cpp
index 1776413a..5fd7d24a 100644
--- a/Types.cpp
+++ b/Types.cpp
@@ -1098,6 +1098,19 @@ unsigned FunctionType::getSizeOnStack() const
return size;
}
+TypePointer FunctionType::externalType() const
+{
+ TypePointers paramTypes;
+ TypePointers retParamTypes;
+
+ for (auto it = m_parameterTypes.cbegin(); it != m_parameterTypes.cend(); ++it)
+ paramTypes.push_back((*it)->externalType());
+ for (auto it = m_returnParameterTypes.cbegin(); it != m_returnParameterTypes.cend(); ++it)
+ retParamTypes.push_back((*it)->externalType());
+
+ return make_shared<FunctionType>(paramTypes, retParamTypes, m_location, m_arbitraryParameters);
+}
+
MemberList const& FunctionType::getMembers() const
{
switch (m_location)
@@ -1127,7 +1140,7 @@ MemberList const& FunctionType::getMembers() const
}
}
-string FunctionType::externalSignature(bool isExternalCall, std::string const& _name) const
+string FunctionType::externalSignature(std::string const& _name) const
{
std::string funcName = _name;
if (_name == "")
@@ -1137,12 +1150,13 @@ string FunctionType::externalSignature(bool isExternalCall, std::string const& _
}
string ret = funcName + "(";
- for (auto it = m_parameterTypes.cbegin(); it != m_parameterTypes.cend(); ++it)
+ TypePointers externalParameterTypes = dynamic_cast<FunctionType const&>(*externalType()).getParameterTypes();
+ for (auto it = externalParameterTypes.cbegin(); it != externalParameterTypes.cend(); ++it)
{
- if (isExternalCall)
- solAssert(!!(*it)->externalType(), "Parameter should have external type");
- ret += (isExternalCall ? (*it)->externalType()->toString() : (*it)->toString()) + (it + 1 == m_parameterTypes.cend() ? "" : ",");
+ solAssert(!!(*it), "Parameter should have external type");
+ ret += (*it)->toString() + (it + 1 == externalParameterTypes.cend() ? "" : ",");
}
+
return ret + ")";
}
diff --git a/Types.h b/Types.h
index c075ff07..99fd878f 100644
--- a/Types.h
+++ b/Types.h
@@ -511,6 +511,9 @@ public:
Bare };
virtual Category getCategory() const override { return Category::Function; }
+
+ virtual TypePointer externalType() const override;
+
explicit FunctionType(FunctionDefinition const& _function, bool _isInternal = true);
explicit FunctionType(VariableDeclaration const& _varDecl);
explicit FunctionType(EventDefinition const& _event);
@@ -553,8 +556,7 @@ public:
/// @returns the external signature of this function type given the function name
/// If @a _name is not provided (empty string) then the @c m_declaration member of the
/// function type is used
- /// @a isExternalCall shows if it is external function call
- std::string externalSignature(bool isExternalCall = false, std::string const& _name = "") const;
+ std::string externalSignature(std::string const& _name = "") const;
Declaration const& getDeclaration() const
{
solAssert(m_declaration, "Requested declaration from a FunctionType that has none");