aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-05-20 02:12:12 +0800
committerchriseth <chris@ethereum.org>2017-05-20 02:12:12 +0800
commit69413ae32a07ebe51adf3eca295cef4dfcd513b4 (patch)
treef435806b9ede4eb5dbe9564d8b5983b1dc76965c
parente2b21e1c9611fd94f8e7b91b0ecbb0ec39145758 (diff)
downloaddexon-solidity-69413ae32a07ebe51adf3eca295cef4dfcd513b4.tar.gz
dexon-solidity-69413ae32a07ebe51adf3eca295cef4dfcd513b4.tar.zst
dexon-solidity-69413ae32a07ebe51adf3eca295cef4dfcd513b4.zip
Review changes.
-rw-r--r--libjulia/backends/AbstractAssembly.h3
-rw-r--r--libsolidity/inlineasm/AsmCodeGen.cpp12
2 files changed, 8 insertions, 7 deletions
diff --git a/libjulia/backends/AbstractAssembly.h b/libjulia/backends/AbstractAssembly.h
index 50d15f7e..e3afa2b6 100644
--- a/libjulia/backends/AbstractAssembly.h
+++ b/libjulia/backends/AbstractAssembly.h
@@ -60,8 +60,9 @@ public:
/// Append a label reference.
virtual void appendLabelReference(size_t _labelId) = 0;
/// Generate a new unique label.
- virtual size_t newLabel() = 0;
+ virtual size_t newLabelId() = 0;
/// Append a reference to a to-be-linked symobl.
+ /// Currently, we assume that the value is always a 20 byte number.
virtual void appendLinkerSymbol(std::string const& _name) = 0;
};
diff --git a/libsolidity/inlineasm/AsmCodeGen.cpp b/libsolidity/inlineasm/AsmCodeGen.cpp
index a6d7e76b..3591ba97 100644
--- a/libsolidity/inlineasm/AsmCodeGen.cpp
+++ b/libsolidity/inlineasm/AsmCodeGen.cpp
@@ -87,7 +87,7 @@ public:
{
m_assembly.append(eth::AssemblyItem(eth::PushTag, _labelId));
}
- virtual size_t newLabel() override
+ virtual size_t newLabelId() override
{
return assemblyTagToIdentifier(m_assembly.newTag());
}
@@ -241,7 +241,7 @@ public:
}
void operator()(FunctionalAssignment const& _assignment)
{
- size_t height = m_assembly.stackHeight();
+ int height = m_assembly.stackHeight();
boost::apply_visitor(*this, *_assignment.value);
expectDeposit(1, height);
m_assembly.setSourceLocation(_assignment.location);
@@ -250,7 +250,7 @@ public:
}
void operator()(assembly::VariableDeclaration const& _varDecl)
{
- size_t height = m_assembly.stackHeight();
+ int height = m_assembly.stackHeight();
boost::apply_visitor(*this, *_varDecl.value);
expectDeposit(1, height);
auto& var = boost::get<Scope::Variable>(m_scope.identifiers.at(_varDecl.variable.name));
@@ -291,9 +291,9 @@ private:
/// Determines the stack height difference to the given variables. Automatically generates
/// errors if it is not yet in scope or the height difference is too large. Returns 0 on
/// errors and the (positive) stack height difference otherwise.
- size_t variableHeightDiff(Scope::Variable const& _var, SourceLocation const& _location, bool _forSwap)
+ int variableHeightDiff(Scope::Variable const& _var, SourceLocation const& _location, bool _forSwap)
{
- size_t heightDiff = m_assembly.stackHeight() - _var.stackHeight;
+ int heightDiff = m_assembly.stackHeight() - _var.stackHeight;
if (heightDiff <= (_forSwap ? 1 : 0) || heightDiff > (_forSwap ? 17 : 16))
{
//@TODO move this to analysis phase.
@@ -326,7 +326,7 @@ private:
void assignLabelIdIfUnset(Scope::Label& _label)
{
if (!_label.id)
- _label.id.reset(m_assembly.newLabel());
+ _label.id.reset(m_assembly.newLabelId());
}