aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/inlineasm
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2017-02-23 19:56:37 +0800
committerchriseth <c@ethdev.com>2017-03-03 22:41:02 +0800
commit41236cd08c292dba428fa1ae57126fb4ec7e901d (patch)
treeed2e3a922db05ae25f4b31624194e4683cd89adc /libsolidity/inlineasm
parentc85f9257f87bb8d6f84a4a74a9b290d7207eebd7 (diff)
downloaddexon-solidity-41236cd08c292dba428fa1ae57126fb4ec7e901d.tar.gz
dexon-solidity-41236cd08c292dba428fa1ae57126fb4ec7e901d.tar.zst
dexon-solidity-41236cd08c292dba428fa1ae57126fb4ec7e901d.zip
Slightly cleaner label ids.
Diffstat (limited to 'libsolidity/inlineasm')
-rw-r--r--libsolidity/inlineasm/AsmAnalysis.cpp11
-rw-r--r--libsolidity/inlineasm/AsmAnalysis.h5
-rw-r--r--libsolidity/inlineasm/AsmCodeGen.cpp21
3 files changed, 20 insertions, 17 deletions
diff --git a/libsolidity/inlineasm/AsmAnalysis.cpp b/libsolidity/inlineasm/AsmAnalysis.cpp
index 9e53fc4a..a21c50d1 100644
--- a/libsolidity/inlineasm/AsmAnalysis.cpp
+++ b/libsolidity/inlineasm/AsmAnalysis.cpp
@@ -36,15 +36,14 @@ using namespace dev::solidity;
using namespace dev::solidity::assembly;
-bool Scope::registerLabel(string const& _name, size_t _id)
+bool Scope::registerLabel(string const& _name)
{
if (exists(_name))
return false;
- identifiers[_name] = Scope::Label(_id);
+ identifiers[_name] = Label();
return true;
}
-
bool Scope::registerVariable(string const& _name)
{
if (exists(_name))
@@ -86,7 +85,9 @@ AsmAnalyzer::AsmAnalyzer(AsmAnalyzer::Scopes& _scopes, ErrorList& _errors):
{
// Make the Solidity ErrorTag available to inline assembly
m_scopes[nullptr] = make_shared<Scope>();
- m_scopes[nullptr]->identifiers["invalidJumpLabel"] = Scope::Label(Scope::Label::errorLabelId);
+ Scope::Label errorLabel;
+ errorLabel.id = Scope::Label::errorLabelId;
+ m_scopes[nullptr]->identifiers["invalidJumpLabel"] = errorLabel;
m_currentScope = m_scopes[nullptr].get();
}
@@ -116,7 +117,7 @@ bool AsmAnalyzer::operator()(FunctionalInstruction const& _instr)
bool AsmAnalyzer::operator()(Label const& _item)
{
- if (!m_currentScope->registerLabel(_item.name, Scope::Label::unassignedLabelId))
+ if (!m_currentScope->registerLabel(_item.name))
{
//@TODO secondary location
m_errors.push_back(make_shared<Error>(
diff --git a/libsolidity/inlineasm/AsmAnalysis.h b/libsolidity/inlineasm/AsmAnalysis.h
index 131bdee1..cd46cd73 100644
--- a/libsolidity/inlineasm/AsmAnalysis.h
+++ b/libsolidity/inlineasm/AsmAnalysis.h
@@ -81,8 +81,7 @@ struct Scope
struct Label
{
- Label(size_t _id): id(_id) {}
- size_t id = 0;
+ size_t id = unassignedLabelId;
int stackAdjustment = 0;
bool resetStackHeight = false;
static const size_t errorLabelId = -1;
@@ -101,7 +100,7 @@ struct Scope
using NonconstVisitor = GenericVisitor<Variable, Label, Function>;
bool registerVariable(std::string const& _name);
- bool registerLabel(std::string const& _name, size_t _id);
+ bool registerLabel(std::string const& _name);
bool registerFunction(std::string const& _name, size_t _arguments, size_t _returns);
/// Looks up the identifier in this or super scopes (stops and function and assembly boundaries)
diff --git a/libsolidity/inlineasm/AsmCodeGen.cpp b/libsolidity/inlineasm/AsmCodeGen.cpp
index f168e765..bfa48c0e 100644
--- a/libsolidity/inlineasm/AsmCodeGen.cpp
+++ b/libsolidity/inlineasm/AsmCodeGen.cpp
@@ -148,10 +148,7 @@ public:
},
[=](Scope::Label& _label)
{
- if (_label.id == Scope::Label::unassignedLabelId)
- _label.id = m_state.newLabelId();
- else if (_label.id == Scope::Label::errorLabelId)
- _label.id = size_t(m_state.assembly.errorTag().data());
+ assignLabelIdIfUnset(_label);
m_state.assembly.append(eth::AssemblyItem(eth::PushTag, _label.id));
},
[=](Scope::Function&)
@@ -190,10 +187,7 @@ public:
m_state.assembly.setSourceLocation(_label.location);
solAssert(m_scope.identifiers.count(_label.name), "");
Scope::Label& label = boost::get<Scope::Label>(m_scope.identifiers[_label.name]);
- if (label.id == Scope::Label::unassignedLabelId)
- label.id = m_state.newLabelId();
- else if (label.id == Scope::Label::errorLabelId)
- label.id = size_t(m_state.assembly.errorTag().data());
+ assignLabelIdIfUnset(label);
if (label.resetStackHeight)
{
size_t numVariables = boost::range::count_if(
@@ -318,6 +312,16 @@ private:
);
}
+ /// Assigns the label's id to a value taken from eth::Assembly if it has not yet been set.
+ void assignLabelIdIfUnset(Scope::Label& _label)
+ {
+ if (_label.id == Scope::Label::unassignedLabelId)
+ _label.id = m_state.newLabelId();
+ else if (_label.id == Scope::Label::errorLabelId)
+ _label.id = size_t(m_state.assembly.errorTag().data());
+ }
+
+
GeneratorState& m_state;
Scope& m_scope;
int const m_initialDeposit;
@@ -352,4 +356,3 @@ void assembly::CodeGenerator::assemble(eth::Assembly& _assembly, assembly::CodeG
solAssert(false, "Assembly error");
CodeTransform(state, m_parsedData, _identifierAccess);
}
-