2017-05-23 17:11:14 +00:00
|
|
|
/*
|
|
|
|
This file is part of solidity.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/**
|
2018-06-18 21:26:31 +00:00
|
|
|
* Common code generator for translating Yul / inline assembly to EVM and EVM1.5.
|
2017-05-23 17:11:14 +00:00
|
|
|
*/
|
|
|
|
|
2018-10-15 09:52:35 +00:00
|
|
|
#include <libyul/backends/evm/EVMCodeTransform.h>
|
2017-05-23 17:21:14 +00:00
|
|
|
|
2018-09-25 02:47:25 +00:00
|
|
|
#include <libyul/optimiser/NameCollector.h>
|
2018-11-23 10:18:57 +00:00
|
|
|
#include <libyul/AsmAnalysisInfo.h>
|
|
|
|
#include <libyul/AsmData.h>
|
2017-05-23 17:21:14 +00:00
|
|
|
|
2018-11-14 13:59:30 +00:00
|
|
|
#include <liblangutil/Exceptions.h>
|
2017-05-23 17:21:14 +00:00
|
|
|
|
2017-05-24 16:34:19 +00:00
|
|
|
#include <boost/range/adaptor/reversed.hpp>
|
|
|
|
|
2017-05-23 17:21:14 +00:00
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
2018-11-21 11:42:34 +00:00
|
|
|
using namespace yul;
|
2017-05-23 17:21:14 +00:00
|
|
|
using namespace dev::solidity;
|
2017-11-30 18:12:39 +00:00
|
|
|
|
2018-09-25 02:47:25 +00:00
|
|
|
void VariableReferenceCounter::operator()(Identifier const& _identifier)
|
|
|
|
{
|
|
|
|
increaseRefIfFound(_identifier.name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VariableReferenceCounter::operator()(FunctionDefinition const& _function)
|
|
|
|
{
|
|
|
|
Scope* originalScope = m_scope;
|
|
|
|
|
|
|
|
solAssert(m_info.virtualBlocks.at(&_function), "");
|
|
|
|
m_scope = m_info.scopes.at(m_info.virtualBlocks.at(&_function).get()).get();
|
|
|
|
solAssert(m_scope, "Variable scope does not exist.");
|
|
|
|
|
|
|
|
for (auto const& v: _function.returnVariables)
|
|
|
|
increaseRefIfFound(v.name);
|
|
|
|
|
|
|
|
VariableReferenceCounter{m_context, m_info}(_function.body);
|
|
|
|
|
|
|
|
m_scope = originalScope;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VariableReferenceCounter::operator()(ForLoop const& _forLoop)
|
|
|
|
{
|
|
|
|
Scope* originalScope = m_scope;
|
|
|
|
// Special scoping rules.
|
|
|
|
m_scope = m_info.scopes.at(&_forLoop.pre).get();
|
|
|
|
|
|
|
|
walkVector(_forLoop.pre.statements);
|
|
|
|
visit(*_forLoop.condition);
|
|
|
|
(*this)(_forLoop.body);
|
|
|
|
(*this)(_forLoop.post);
|
|
|
|
|
|
|
|
m_scope = originalScope;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void VariableReferenceCounter::operator()(Block const& _block)
|
|
|
|
{
|
|
|
|
Scope* originalScope = m_scope;
|
|
|
|
m_scope = m_info.scopes.at(&_block).get();
|
|
|
|
|
|
|
|
ASTWalker::operator()(_block);
|
|
|
|
|
|
|
|
m_scope = originalScope;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VariableReferenceCounter::increaseRefIfFound(YulString _variableName)
|
|
|
|
{
|
|
|
|
m_scope->lookup(_variableName, Scope::Visitor(
|
|
|
|
[=](Scope::Variable const& _var)
|
|
|
|
{
|
|
|
|
++m_context.variableReferences[&_var];
|
|
|
|
},
|
|
|
|
[=](Scope::Label const&) { },
|
|
|
|
[=](Scope::Function const&) { }
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CodeTransform::CodeTransform(
|
|
|
|
AbstractAssembly& _assembly,
|
|
|
|
AsmAnalysisInfo& _analysisInfo,
|
|
|
|
Block const& _block,
|
|
|
|
bool _allowStackOpt,
|
2018-12-06 23:56:16 +00:00
|
|
|
EVMDialect const& _dialect,
|
2018-09-25 02:47:25 +00:00
|
|
|
bool _evm15,
|
|
|
|
ExternalIdentifierAccess const& _identifierAccess,
|
|
|
|
bool _useNamedLabelsForFunctions,
|
|
|
|
int _stackAdjustment,
|
|
|
|
shared_ptr<Context> _context
|
|
|
|
):
|
|
|
|
m_assembly(_assembly),
|
|
|
|
m_info(_analysisInfo),
|
2018-12-06 23:56:16 +00:00
|
|
|
m_dialect(_dialect),
|
2018-09-25 02:47:25 +00:00
|
|
|
m_allowStackOpt(_allowStackOpt),
|
|
|
|
m_evm15(_evm15),
|
|
|
|
m_useNamedLabelsForFunctions(_useNamedLabelsForFunctions),
|
|
|
|
m_identifierAccess(_identifierAccess),
|
|
|
|
m_stackAdjustment(_stackAdjustment),
|
|
|
|
m_context(_context)
|
|
|
|
{
|
|
|
|
if (!m_context)
|
|
|
|
{
|
|
|
|
// initialize
|
|
|
|
m_context = make_shared<Context>();
|
|
|
|
if (m_allowStackOpt)
|
|
|
|
VariableReferenceCounter{*m_context, m_info}(_block);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CodeTransform::decreaseReference(YulString, Scope::Variable const& _var)
|
|
|
|
{
|
|
|
|
if (!m_allowStackOpt)
|
|
|
|
return;
|
|
|
|
|
|
|
|
unsigned& ref = m_context->variableReferences.at(&_var);
|
|
|
|
solAssert(ref >= 1, "");
|
|
|
|
--ref;
|
|
|
|
if (ref == 0)
|
|
|
|
m_variablesScheduledForDeletion.insert(&_var);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CodeTransform::unreferenced(Scope::Variable const& _var) const
|
|
|
|
{
|
|
|
|
return !m_context->variableReferences.count(&_var) || m_context->variableReferences[&_var] == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CodeTransform::freeUnusedVariables()
|
|
|
|
{
|
|
|
|
if (!m_allowStackOpt)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (auto const& identifier: m_scope->identifiers)
|
|
|
|
if (identifier.second.type() == typeid(Scope::Variable))
|
|
|
|
{
|
|
|
|
Scope::Variable const& var = boost::get<Scope::Variable>(identifier.second);
|
|
|
|
if (m_variablesScheduledForDeletion.count(&var))
|
|
|
|
deleteVariable(var);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (m_unusedStackSlots.count(m_assembly.stackHeight() - 1))
|
|
|
|
{
|
|
|
|
solAssert(m_unusedStackSlots.erase(m_assembly.stackHeight() - 1), "");
|
|
|
|
m_assembly.appendInstruction(solidity::Instruction::POP);
|
|
|
|
--m_stackAdjustment;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CodeTransform::deleteVariable(Scope::Variable const& _var)
|
|
|
|
{
|
|
|
|
solAssert(m_allowStackOpt, "");
|
|
|
|
solAssert(m_context->variableStackHeights.count(&_var) > 0, "");
|
|
|
|
m_unusedStackSlots.insert(m_context->variableStackHeights[&_var]);
|
|
|
|
m_context->variableStackHeights.erase(&_var);
|
|
|
|
m_context->variableReferences.erase(&_var);
|
|
|
|
m_variablesScheduledForDeletion.erase(&_var);
|
|
|
|
}
|
|
|
|
|
2017-05-23 17:21:14 +00:00
|
|
|
void CodeTransform::operator()(VariableDeclaration const& _varDecl)
|
|
|
|
{
|
2017-05-24 16:34:19 +00:00
|
|
|
solAssert(m_scope, "");
|
|
|
|
|
2017-07-12 18:51:16 +00:00
|
|
|
int const numVariables = _varDecl.variables.size();
|
2017-05-23 17:21:14 +00:00
|
|
|
int height = m_assembly.stackHeight();
|
2017-07-02 10:21:34 +00:00
|
|
|
if (_varDecl.value)
|
|
|
|
{
|
|
|
|
boost::apply_visitor(*this, *_varDecl.value);
|
2017-07-12 18:51:16 +00:00
|
|
|
expectDeposit(numVariables, height);
|
2017-07-02 10:21:34 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-07-12 18:51:16 +00:00
|
|
|
int variablesLeft = numVariables;
|
2017-07-02 10:21:34 +00:00
|
|
|
while (variablesLeft--)
|
|
|
|
m_assembly.appendConstant(u256(0));
|
|
|
|
}
|
2018-09-25 02:47:25 +00:00
|
|
|
|
|
|
|
bool atTopOfStack = true;
|
|
|
|
for (int varIndex = numVariables - 1; varIndex >= 0; --varIndex)
|
2017-05-23 17:21:14 +00:00
|
|
|
{
|
2018-09-25 02:47:25 +00:00
|
|
|
auto& var = boost::get<Scope::Variable>(m_scope->identifiers.at(_varDecl.variables[varIndex].name));
|
|
|
|
m_context->variableStackHeights[&var] = height + varIndex;
|
|
|
|
if (!m_allowStackOpt)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (unreferenced(var))
|
|
|
|
{
|
|
|
|
if (atTopOfStack)
|
|
|
|
{
|
|
|
|
m_context->variableStackHeights.erase(&var);
|
|
|
|
m_assembly.setSourceLocation(_varDecl.location);
|
|
|
|
m_assembly.appendInstruction(solidity::Instruction::POP);
|
|
|
|
--m_stackAdjustment;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
m_variablesScheduledForDeletion.insert(&var);
|
|
|
|
}
|
|
|
|
else if (m_unusedStackSlots.empty())
|
|
|
|
atTopOfStack = false;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int slot = *m_unusedStackSlots.begin();
|
|
|
|
m_unusedStackSlots.erase(m_unusedStackSlots.begin());
|
|
|
|
m_context->variableStackHeights[&var] = slot;
|
|
|
|
m_assembly.setSourceLocation(_varDecl.location);
|
|
|
|
if (int heightDiff = variableHeightDiff(var, true))
|
|
|
|
m_assembly.appendInstruction(solidity::swapInstruction(heightDiff - 1));
|
|
|
|
m_assembly.appendInstruction(solidity::Instruction::POP);
|
|
|
|
--m_stackAdjustment;
|
|
|
|
}
|
2017-05-23 17:21:14 +00:00
|
|
|
}
|
2017-06-06 14:41:49 +00:00
|
|
|
checkStackHeight(&_varDecl);
|
2017-05-23 17:21:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CodeTransform::operator()(Assignment const& _assignment)
|
|
|
|
{
|
2017-05-19 16:06:26 +00:00
|
|
|
int height = m_assembly.stackHeight();
|
|
|
|
boost::apply_visitor(*this, *_assignment.value);
|
|
|
|
expectDeposit(_assignment.variableNames.size(), height);
|
|
|
|
|
2017-05-23 17:21:14 +00:00
|
|
|
m_assembly.setSourceLocation(_assignment.location);
|
2017-09-20 09:16:07 +00:00
|
|
|
generateMultiAssignment(_assignment.variableNames);
|
2017-05-23 17:21:14 +00:00
|
|
|
checkStackHeight(&_assignment);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CodeTransform::operator()(StackAssignment const& _assignment)
|
|
|
|
{
|
2018-09-25 02:47:25 +00:00
|
|
|
solAssert(!m_allowStackOpt, "");
|
2017-05-23 17:21:14 +00:00
|
|
|
m_assembly.setSourceLocation(_assignment.location);
|
2017-09-20 09:16:07 +00:00
|
|
|
generateAssignment(_assignment.variableName);
|
2017-05-23 17:21:14 +00:00
|
|
|
checkStackHeight(&_assignment);
|
|
|
|
}
|
|
|
|
|
2017-12-08 13:01:22 +00:00
|
|
|
void CodeTransform::operator()(ExpressionStatement const& _statement)
|
|
|
|
{
|
|
|
|
m_assembly.setSourceLocation(_statement.location);
|
|
|
|
boost::apply_visitor(*this, _statement.expression);
|
|
|
|
checkStackHeight(&_statement);
|
|
|
|
}
|
|
|
|
|
2017-05-23 17:21:14 +00:00
|
|
|
void CodeTransform::operator()(Label const& _label)
|
|
|
|
{
|
2018-09-25 02:47:25 +00:00
|
|
|
solAssert(!m_allowStackOpt, "");
|
2017-05-23 17:21:14 +00:00
|
|
|
m_assembly.setSourceLocation(_label.location);
|
2017-05-24 16:34:19 +00:00
|
|
|
solAssert(m_scope, "");
|
|
|
|
solAssert(m_scope->identifiers.count(_label.name), "");
|
|
|
|
Scope::Label& label = boost::get<Scope::Label>(m_scope->identifiers.at(_label.name));
|
2017-06-13 19:58:25 +00:00
|
|
|
m_assembly.appendLabel(labelID(label));
|
2017-05-23 17:21:14 +00:00
|
|
|
checkStackHeight(&_label);
|
|
|
|
}
|
|
|
|
|
2017-05-24 16:34:19 +00:00
|
|
|
void CodeTransform::operator()(FunctionCall const& _call)
|
2017-05-23 17:21:14 +00:00
|
|
|
{
|
2017-05-24 16:34:19 +00:00
|
|
|
solAssert(m_scope, "");
|
|
|
|
|
2018-12-06 23:56:16 +00:00
|
|
|
if (BuiltinFunctionForEVM const* builtin = m_dialect.builtin(_call.functionName.name))
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
2018-12-06 23:56:16 +00:00
|
|
|
builtin->generateCode(_call, m_assembly, [&]() {
|
|
|
|
for (auto const& arg: _call.arguments | boost::adaptors::reversed)
|
|
|
|
visitExpression(arg);
|
|
|
|
m_assembly.setSourceLocation(_call.location);
|
|
|
|
});
|
2017-05-24 16:34:19 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-12-06 23:56:16 +00:00
|
|
|
m_assembly.setSourceLocation(_call.location);
|
|
|
|
EVMAssembly::LabelID returnLabel(-1); // only used for evm 1.0
|
|
|
|
if (!m_evm15)
|
|
|
|
{
|
|
|
|
returnLabel = m_assembly.newLabelId();
|
|
|
|
m_assembly.appendLabelReference(returnLabel);
|
|
|
|
m_stackAdjustment++;
|
|
|
|
}
|
|
|
|
|
|
|
|
Scope::Function* function = nullptr;
|
|
|
|
solAssert(m_scope->lookup(_call.functionName.name, Scope::NonconstVisitor(
|
|
|
|
[=](Scope::Variable&) { solAssert(false, "Expected function name."); },
|
|
|
|
[=](Scope::Label&) { solAssert(false, "Expected function name."); },
|
|
|
|
[&](Scope::Function& _function) { function = &_function; }
|
|
|
|
)), "Function name not found.");
|
|
|
|
solAssert(function, "");
|
|
|
|
solAssert(function->arguments.size() == _call.arguments.size(), "");
|
|
|
|
for (auto const& arg: _call.arguments | boost::adaptors::reversed)
|
|
|
|
visitExpression(arg);
|
|
|
|
m_assembly.setSourceLocation(_call.location);
|
|
|
|
if (m_evm15)
|
|
|
|
m_assembly.appendJumpsub(functionEntryID(_call.functionName.name, *function), function->arguments.size(), function->returns.size());
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_assembly.appendJumpTo(functionEntryID(_call.functionName.name, *function), function->returns.size() - function->arguments.size() - 1);
|
|
|
|
m_assembly.appendLabel(returnLabel);
|
|
|
|
m_stackAdjustment--;
|
|
|
|
}
|
|
|
|
checkStackHeight(&_call);
|
2017-05-24 16:34:19 +00:00
|
|
|
}
|
2017-05-23 17:21:14 +00:00
|
|
|
}
|
|
|
|
|
2017-05-24 16:34:19 +00:00
|
|
|
void CodeTransform::operator()(FunctionalInstruction const& _instruction)
|
2017-05-23 17:21:14 +00:00
|
|
|
{
|
2017-05-24 16:34:19 +00:00
|
|
|
if (m_evm15 && (
|
2017-12-05 13:44:20 +00:00
|
|
|
_instruction.instruction == solidity::Instruction::JUMP ||
|
|
|
|
_instruction.instruction == solidity::Instruction::JUMPI
|
2017-05-24 16:34:19 +00:00
|
|
|
))
|
2017-05-23 17:21:14 +00:00
|
|
|
{
|
2017-12-05 13:44:20 +00:00
|
|
|
bool const isJumpI = _instruction.instruction == solidity::Instruction::JUMPI;
|
2017-05-24 16:34:19 +00:00
|
|
|
if (isJumpI)
|
|
|
|
{
|
|
|
|
solAssert(_instruction.arguments.size() == 2, "");
|
|
|
|
visitExpression(_instruction.arguments.at(1));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
solAssert(_instruction.arguments.size() == 1, "");
|
|
|
|
}
|
|
|
|
m_assembly.setSourceLocation(_instruction.location);
|
2018-11-21 11:42:34 +00:00
|
|
|
auto label = labelFromIdentifier(boost::get<Identifier>(_instruction.arguments.at(0)));
|
2017-05-24 16:34:19 +00:00
|
|
|
if (isJumpI)
|
|
|
|
m_assembly.appendJumpToIf(label);
|
|
|
|
else
|
|
|
|
m_assembly.appendJumpTo(label);
|
2017-05-23 17:21:14 +00:00
|
|
|
}
|
2017-05-24 16:34:19 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
for (auto const& arg: _instruction.arguments | boost::adaptors::reversed)
|
|
|
|
visitExpression(arg);
|
2017-12-05 13:44:20 +00:00
|
|
|
m_assembly.setSourceLocation(_instruction.location);
|
|
|
|
m_assembly.appendInstruction(_instruction.instruction);
|
2017-05-24 16:34:19 +00:00
|
|
|
}
|
|
|
|
checkStackHeight(&_instruction);
|
2017-05-23 17:21:14 +00:00
|
|
|
}
|
|
|
|
|
2018-11-21 11:42:34 +00:00
|
|
|
void CodeTransform::operator()(Identifier const& _identifier)
|
2017-05-23 17:21:14 +00:00
|
|
|
{
|
|
|
|
m_assembly.setSourceLocation(_identifier.location);
|
|
|
|
// First search internals, then externals.
|
2017-05-24 16:34:19 +00:00
|
|
|
solAssert(m_scope, "");
|
|
|
|
if (m_scope->lookup(_identifier.name, Scope::NonconstVisitor(
|
2017-05-23 17:21:14 +00:00
|
|
|
[=](Scope::Variable& _var)
|
|
|
|
{
|
2018-09-25 02:47:25 +00:00
|
|
|
// TODO: opportunity for optimization: Do not DUP if this is the last reference
|
|
|
|
// to the top most element of the stack
|
2017-06-06 13:37:43 +00:00
|
|
|
if (int heightDiff = variableHeightDiff(_var, false))
|
2017-05-23 17:21:14 +00:00
|
|
|
m_assembly.appendInstruction(solidity::dupInstruction(heightDiff));
|
|
|
|
else
|
|
|
|
// Store something to balance the stack
|
|
|
|
m_assembly.appendConstant(u256(0));
|
2018-09-25 02:47:25 +00:00
|
|
|
decreaseReference(_identifier.name, _var);
|
2017-05-23 17:21:14 +00:00
|
|
|
},
|
|
|
|
[=](Scope::Label& _label)
|
|
|
|
{
|
2017-06-13 19:58:25 +00:00
|
|
|
m_assembly.appendLabelReference(labelID(_label));
|
2017-05-23 17:21:14 +00:00
|
|
|
},
|
|
|
|
[=](Scope::Function&)
|
|
|
|
{
|
|
|
|
solAssert(false, "Function not removed during desugaring.");
|
|
|
|
}
|
|
|
|
)))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
solAssert(
|
|
|
|
m_identifierAccess.generateCode,
|
|
|
|
"Identifier not found and no external access available."
|
|
|
|
);
|
|
|
|
m_identifierAccess.generateCode(_identifier, IdentifierContext::RValue, m_assembly);
|
|
|
|
checkStackHeight(&_identifier);
|
|
|
|
}
|
|
|
|
|
2018-11-21 11:42:34 +00:00
|
|
|
void CodeTransform::operator()(Literal const& _literal)
|
2017-05-23 17:21:14 +00:00
|
|
|
{
|
|
|
|
m_assembly.setSourceLocation(_literal.location);
|
2018-11-21 11:42:34 +00:00
|
|
|
if (_literal.kind == LiteralKind::Number)
|
2018-10-29 14:12:02 +00:00
|
|
|
m_assembly.appendConstant(u256(_literal.value.str()));
|
2018-11-21 11:42:34 +00:00
|
|
|
else if (_literal.kind == LiteralKind::Boolean)
|
2017-05-23 17:21:14 +00:00
|
|
|
{
|
2018-12-10 03:25:51 +00:00
|
|
|
if (_literal.value == "true"_yulstring)
|
2017-05-23 17:21:14 +00:00
|
|
|
m_assembly.appendConstant(u256(1));
|
|
|
|
else
|
|
|
|
m_assembly.appendConstant(u256(0));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-10-29 14:12:02 +00:00
|
|
|
solAssert(_literal.value.str().size() <= 32, "");
|
|
|
|
m_assembly.appendConstant(u256(h256(_literal.value.str(), h256::FromBinary, h256::AlignLeft)));
|
2017-05-23 17:21:14 +00:00
|
|
|
}
|
|
|
|
checkStackHeight(&_literal);
|
|
|
|
}
|
|
|
|
|
2018-11-21 11:42:34 +00:00
|
|
|
void CodeTransform::operator()(yul::Instruction const& _instruction)
|
2017-05-23 17:21:14 +00:00
|
|
|
{
|
2018-09-25 02:47:25 +00:00
|
|
|
solAssert(!m_allowStackOpt, "");
|
2017-05-24 16:34:19 +00:00
|
|
|
solAssert(!m_evm15 || _instruction.instruction != solidity::Instruction::JUMP, "Bare JUMP instruction used for EVM1.5");
|
|
|
|
solAssert(!m_evm15 || _instruction.instruction != solidity::Instruction::JUMPI, "Bare JUMPI instruction used for EVM1.5");
|
2017-05-23 17:21:14 +00:00
|
|
|
m_assembly.setSourceLocation(_instruction.location);
|
|
|
|
m_assembly.appendInstruction(_instruction.instruction);
|
|
|
|
checkStackHeight(&_instruction);
|
|
|
|
}
|
2017-05-24 16:34:19 +00:00
|
|
|
|
2017-11-21 12:36:41 +00:00
|
|
|
void CodeTransform::operator()(If const& _if)
|
|
|
|
{
|
|
|
|
visitExpression(*_if.condition);
|
|
|
|
m_assembly.setSourceLocation(_if.location);
|
|
|
|
m_assembly.appendInstruction(solidity::Instruction::ISZERO);
|
|
|
|
AbstractAssembly::LabelID end = m_assembly.newLabelId();
|
|
|
|
m_assembly.appendJumpToIf(end);
|
|
|
|
(*this)(_if.body);
|
|
|
|
m_assembly.setSourceLocation(_if.location);
|
|
|
|
m_assembly.appendLabel(end);
|
|
|
|
checkStackHeight(&_if);
|
|
|
|
}
|
|
|
|
|
2017-05-24 16:34:19 +00:00
|
|
|
void CodeTransform::operator()(Switch const& _switch)
|
|
|
|
{
|
|
|
|
//@TODO use JUMPV in EVM1.5?
|
|
|
|
|
|
|
|
visitExpression(*_switch.expression);
|
|
|
|
int expressionHeight = m_assembly.stackHeight();
|
|
|
|
map<Case const*, AbstractAssembly::LabelID> caseBodies;
|
|
|
|
AbstractAssembly::LabelID end = m_assembly.newLabelId();
|
|
|
|
for (Case const& c: _switch.cases)
|
|
|
|
{
|
|
|
|
if (c.value)
|
|
|
|
{
|
|
|
|
(*this)(*c.value);
|
|
|
|
m_assembly.setSourceLocation(c.location);
|
|
|
|
AbstractAssembly::LabelID bodyLabel = m_assembly.newLabelId();
|
|
|
|
caseBodies[&c] = bodyLabel;
|
|
|
|
solAssert(m_assembly.stackHeight() == expressionHeight + 1, "");
|
|
|
|
m_assembly.appendInstruction(solidity::dupInstruction(2));
|
|
|
|
m_assembly.appendInstruction(solidity::Instruction::EQ);
|
|
|
|
m_assembly.appendJumpToIf(bodyLabel);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
// default case
|
|
|
|
(*this)(c.body);
|
|
|
|
}
|
|
|
|
m_assembly.setSourceLocation(_switch.location);
|
|
|
|
m_assembly.appendJumpTo(end);
|
|
|
|
|
|
|
|
size_t numCases = caseBodies.size();
|
|
|
|
for (auto const& c: caseBodies)
|
|
|
|
{
|
|
|
|
m_assembly.setSourceLocation(c.first->location);
|
|
|
|
m_assembly.appendLabel(c.second);
|
|
|
|
(*this)(c.first->body);
|
2017-06-01 16:16:38 +00:00
|
|
|
// Avoid useless "jump to next" for the last case.
|
2017-05-24 16:34:19 +00:00
|
|
|
if (--numCases > 0)
|
|
|
|
{
|
|
|
|
m_assembly.setSourceLocation(c.first->location);
|
|
|
|
m_assembly.appendJumpTo(end);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_assembly.setSourceLocation(_switch.location);
|
|
|
|
m_assembly.appendLabel(end);
|
|
|
|
m_assembly.appendInstruction(solidity::Instruction::POP);
|
|
|
|
checkStackHeight(&_switch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CodeTransform::operator()(FunctionDefinition const& _function)
|
|
|
|
{
|
|
|
|
solAssert(m_scope, "");
|
|
|
|
solAssert(m_scope->identifiers.count(_function.name), "");
|
|
|
|
Scope::Function& function = boost::get<Scope::Function>(m_scope->identifiers.at(_function.name));
|
|
|
|
|
2017-05-31 10:15:43 +00:00
|
|
|
int const localStackAdjustment = m_evm15 ? 0 : 1;
|
|
|
|
int height = localStackAdjustment;
|
2017-05-24 16:34:19 +00:00
|
|
|
solAssert(m_info.scopes.at(&_function.body), "");
|
|
|
|
Scope* varScope = m_info.scopes.at(m_info.virtualBlocks.at(&_function).get()).get();
|
|
|
|
solAssert(varScope, "");
|
2017-12-01 13:10:49 +00:00
|
|
|
for (auto const& v: _function.parameters | boost::adaptors::reversed)
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
|
|
|
auto& var = boost::get<Scope::Variable>(varScope->identifiers.at(v.name));
|
2017-06-13 22:01:06 +00:00
|
|
|
m_context->variableStackHeights[&var] = height++;
|
2017-05-24 16:34:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m_assembly.setSourceLocation(_function.location);
|
|
|
|
int stackHeightBefore = m_assembly.stackHeight();
|
|
|
|
AbstractAssembly::LabelID afterFunction = m_assembly.newLabelId();
|
|
|
|
|
|
|
|
if (m_evm15)
|
2017-05-31 10:15:43 +00:00
|
|
|
{
|
|
|
|
m_assembly.appendJumpTo(afterFunction, -stackHeightBefore);
|
2017-12-01 13:10:49 +00:00
|
|
|
m_assembly.appendBeginsub(functionEntryID(_function.name, function), _function.parameters.size());
|
2017-05-31 10:15:43 +00:00
|
|
|
}
|
2017-05-24 16:34:19 +00:00
|
|
|
else
|
2017-05-31 10:15:43 +00:00
|
|
|
{
|
|
|
|
m_assembly.appendJumpTo(afterFunction, -stackHeightBefore + height);
|
2017-08-25 15:04:31 +00:00
|
|
|
m_assembly.appendLabel(functionEntryID(_function.name, function));
|
2017-05-31 10:15:43 +00:00
|
|
|
}
|
|
|
|
m_stackAdjustment += localStackAdjustment;
|
2017-05-24 16:34:19 +00:00
|
|
|
|
2017-12-01 13:10:49 +00:00
|
|
|
for (auto const& v: _function.returnVariables)
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
|
|
|
auto& var = boost::get<Scope::Variable>(varScope->identifiers.at(v.name));
|
2017-06-13 22:01:06 +00:00
|
|
|
m_context->variableStackHeights[&var] = height++;
|
2017-06-01 16:16:38 +00:00
|
|
|
// Preset stack slots for return variables to zero.
|
2017-05-24 16:34:19 +00:00
|
|
|
m_assembly.appendConstant(u256(0));
|
|
|
|
}
|
|
|
|
|
2017-08-25 15:04:31 +00:00
|
|
|
CodeTransform(
|
|
|
|
m_assembly,
|
|
|
|
m_info,
|
2018-09-25 02:47:25 +00:00
|
|
|
_function.body,
|
|
|
|
m_allowStackOpt,
|
2018-12-06 17:07:08 +00:00
|
|
|
m_dialect,
|
2017-08-25 15:04:31 +00:00
|
|
|
m_evm15,
|
|
|
|
m_identifierAccess,
|
|
|
|
m_useNamedLabelsForFunctions,
|
|
|
|
localStackAdjustment,
|
|
|
|
m_context
|
|
|
|
)(_function.body);
|
2017-05-24 16:34:19 +00:00
|
|
|
|
|
|
|
{
|
2017-06-01 16:16:38 +00:00
|
|
|
// The stack layout here is:
|
|
|
|
// <return label>? <arguments...> <return values...>
|
|
|
|
// But we would like it to be:
|
|
|
|
// <return values...> <return label>?
|
|
|
|
// So we have to append some SWAP and POP instructions.
|
|
|
|
|
|
|
|
// This vector holds the desired target positions of all stack slots and is
|
|
|
|
// modified parallel to the actual stack.
|
2017-05-24 16:34:19 +00:00
|
|
|
vector<int> stackLayout;
|
|
|
|
if (!m_evm15)
|
2017-12-01 13:10:49 +00:00
|
|
|
stackLayout.push_back(_function.returnVariables.size()); // Move return label to the top
|
|
|
|
stackLayout += vector<int>(_function.parameters.size(), -1); // discard all arguments
|
2018-09-25 02:47:25 +00:00
|
|
|
|
2017-12-01 13:10:49 +00:00
|
|
|
for (size_t i = 0; i < _function.returnVariables.size(); ++i)
|
2017-06-01 16:16:38 +00:00
|
|
|
stackLayout.push_back(i); // Move return values down, but keep order.
|
2017-05-24 16:34:19 +00:00
|
|
|
|
|
|
|
solAssert(stackLayout.size() <= 17, "Stack too deep");
|
2017-05-31 10:15:43 +00:00
|
|
|
while (!stackLayout.empty() && stackLayout.back() != int(stackLayout.size() - 1))
|
2017-05-24 16:34:19 +00:00
|
|
|
if (stackLayout.back() < 0)
|
|
|
|
{
|
|
|
|
m_assembly.appendInstruction(solidity::Instruction::POP);
|
|
|
|
stackLayout.pop_back();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_assembly.appendInstruction(swapInstruction(stackLayout.size() - stackLayout.back() - 1));
|
|
|
|
swap(stackLayout[stackLayout.back()], stackLayout.back());
|
|
|
|
}
|
|
|
|
for (int i = 0; size_t(i) < stackLayout.size(); ++i)
|
|
|
|
solAssert(i == stackLayout[i], "Error reshuffling stack.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_evm15)
|
2017-12-01 13:10:49 +00:00
|
|
|
m_assembly.appendReturnsub(_function.returnVariables.size(), stackHeightBefore);
|
2017-05-24 16:34:19 +00:00
|
|
|
else
|
2017-12-01 13:10:49 +00:00
|
|
|
m_assembly.appendJump(stackHeightBefore - _function.returnVariables.size());
|
2017-05-31 10:15:43 +00:00
|
|
|
m_stackAdjustment -= localStackAdjustment;
|
2017-05-24 16:34:19 +00:00
|
|
|
m_assembly.appendLabel(afterFunction);
|
|
|
|
checkStackHeight(&_function);
|
|
|
|
}
|
|
|
|
|
2017-06-09 11:59:26 +00:00
|
|
|
void CodeTransform::operator()(ForLoop const& _forLoop)
|
|
|
|
{
|
|
|
|
Scope* originalScope = m_scope;
|
|
|
|
// We start with visiting the block, but not finalizing it.
|
|
|
|
m_scope = m_info.scopes.at(&_forLoop.pre).get();
|
|
|
|
int stackStartHeight = m_assembly.stackHeight();
|
|
|
|
|
2017-06-14 13:35:51 +00:00
|
|
|
visitStatements(_forLoop.pre.statements);
|
2017-06-09 11:59:26 +00:00
|
|
|
|
|
|
|
// TODO: When we implement break and continue, the labels and the stack heights at that point
|
|
|
|
// have to be stored in a stack.
|
|
|
|
AbstractAssembly::LabelID loopStart = m_assembly.newLabelId();
|
|
|
|
AbstractAssembly::LabelID loopEnd = m_assembly.newLabelId();
|
|
|
|
AbstractAssembly::LabelID postPart = m_assembly.newLabelId();
|
|
|
|
|
2017-06-14 13:37:14 +00:00
|
|
|
m_assembly.setSourceLocation(_forLoop.location);
|
2017-06-09 11:59:26 +00:00
|
|
|
m_assembly.appendLabel(loopStart);
|
|
|
|
|
|
|
|
visitExpression(*_forLoop.condition);
|
|
|
|
m_assembly.setSourceLocation(_forLoop.location);
|
|
|
|
m_assembly.appendInstruction(solidity::Instruction::ISZERO);
|
|
|
|
m_assembly.appendJumpToIf(loopEnd);
|
|
|
|
|
|
|
|
(*this)(_forLoop.body);
|
|
|
|
|
|
|
|
m_assembly.setSourceLocation(_forLoop.location);
|
|
|
|
m_assembly.appendLabel(postPart);
|
|
|
|
|
|
|
|
(*this)(_forLoop.post);
|
|
|
|
|
|
|
|
m_assembly.setSourceLocation(_forLoop.location);
|
|
|
|
m_assembly.appendJumpTo(loopStart);
|
|
|
|
m_assembly.appendLabel(loopEnd);
|
|
|
|
|
|
|
|
finalizeBlock(_forLoop.pre, stackStartHeight);
|
|
|
|
m_scope = originalScope;
|
|
|
|
}
|
|
|
|
|
2017-05-24 16:34:19 +00:00
|
|
|
void CodeTransform::operator()(Block const& _block)
|
|
|
|
{
|
2017-06-09 11:59:16 +00:00
|
|
|
Scope* originalScope = m_scope;
|
|
|
|
m_scope = m_info.scopes.at(&_block).get();
|
|
|
|
|
|
|
|
int blockStartStackHeight = m_assembly.stackHeight();
|
2017-06-14 13:35:51 +00:00
|
|
|
visitStatements(_block.statements);
|
2017-06-09 11:59:16 +00:00
|
|
|
|
|
|
|
finalizeBlock(_block, blockStartStackHeight);
|
|
|
|
m_scope = originalScope;
|
2017-05-24 16:34:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AbstractAssembly::LabelID CodeTransform::labelFromIdentifier(Identifier const& _identifier)
|
|
|
|
{
|
|
|
|
AbstractAssembly::LabelID label = AbstractAssembly::LabelID(-1);
|
|
|
|
if (!m_scope->lookup(_identifier.name, Scope::NonconstVisitor(
|
|
|
|
[=](Scope::Variable&) { solAssert(false, "Expected label"); },
|
|
|
|
[&](Scope::Label& _label)
|
|
|
|
{
|
2017-06-13 19:58:25 +00:00
|
|
|
label = labelID(_label);
|
2017-05-24 16:34:19 +00:00
|
|
|
},
|
|
|
|
[=](Scope::Function&) { solAssert(false, "Expected label"); }
|
|
|
|
)))
|
|
|
|
{
|
|
|
|
solAssert(false, "Identifier not found.");
|
|
|
|
}
|
|
|
|
return label;
|
|
|
|
}
|
|
|
|
|
2017-06-13 19:58:25 +00:00
|
|
|
AbstractAssembly::LabelID CodeTransform::labelID(Scope::Label const& _label)
|
|
|
|
{
|
|
|
|
if (!m_context->labelIDs.count(&_label))
|
|
|
|
m_context->labelIDs[&_label] = m_assembly.newLabelId();
|
|
|
|
return m_context->labelIDs[&_label];
|
|
|
|
}
|
|
|
|
|
2018-10-29 14:12:02 +00:00
|
|
|
AbstractAssembly::LabelID CodeTransform::functionEntryID(YulString _name, Scope::Function const& _function)
|
2017-06-13 19:58:25 +00:00
|
|
|
{
|
|
|
|
if (!m_context->functionEntryIDs.count(&_function))
|
2017-08-25 15:04:31 +00:00
|
|
|
{
|
|
|
|
AbstractAssembly::LabelID id =
|
|
|
|
m_useNamedLabelsForFunctions ?
|
2018-10-29 14:12:02 +00:00
|
|
|
m_assembly.namedLabel(_name.str()) :
|
2017-08-25 15:04:31 +00:00
|
|
|
m_assembly.newLabelId();
|
|
|
|
m_context->functionEntryIDs[&_function] = id;
|
|
|
|
}
|
2017-06-13 19:58:25 +00:00
|
|
|
return m_context->functionEntryIDs[&_function];
|
|
|
|
}
|
|
|
|
|
2017-12-08 13:01:22 +00:00
|
|
|
void CodeTransform::visitExpression(Expression const& _expression)
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
|
|
|
int height = m_assembly.stackHeight();
|
|
|
|
boost::apply_visitor(*this, _expression);
|
|
|
|
expectDeposit(1, height);
|
|
|
|
}
|
|
|
|
|
2017-06-14 13:35:51 +00:00
|
|
|
void CodeTransform::visitStatements(vector<Statement> const& _statements)
|
|
|
|
{
|
|
|
|
for (auto const& statement: _statements)
|
2018-09-25 02:47:25 +00:00
|
|
|
{
|
|
|
|
freeUnusedVariables();
|
2017-06-14 13:35:51 +00:00
|
|
|
boost::apply_visitor(*this, statement);
|
2018-09-25 02:47:25 +00:00
|
|
|
}
|
|
|
|
freeUnusedVariables();
|
2017-06-14 13:35:51 +00:00
|
|
|
}
|
|
|
|
|
2017-06-09 11:59:16 +00:00
|
|
|
void CodeTransform::finalizeBlock(Block const& _block, int blockStartStackHeight)
|
|
|
|
{
|
|
|
|
m_assembly.setSourceLocation(_block.location);
|
|
|
|
|
2018-09-25 02:47:25 +00:00
|
|
|
freeUnusedVariables();
|
|
|
|
|
2017-06-09 11:59:16 +00:00
|
|
|
// pop variables
|
|
|
|
solAssert(m_info.scopes.at(&_block).get() == m_scope, "");
|
2018-09-25 02:47:25 +00:00
|
|
|
for (auto const& id: m_scope->identifiers)
|
|
|
|
if (id.second.type() == typeid(Scope::Variable))
|
|
|
|
{
|
|
|
|
Scope::Variable const& var = boost::get<Scope::Variable>(id.second);
|
|
|
|
if (m_allowStackOpt)
|
|
|
|
{
|
|
|
|
solAssert(!m_context->variableStackHeights.count(&var), "");
|
|
|
|
solAssert(!m_context->variableReferences.count(&var), "");
|
|
|
|
m_stackAdjustment++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
m_assembly.appendInstruction(solidity::Instruction::POP);
|
|
|
|
}
|
2017-06-09 11:59:16 +00:00
|
|
|
|
|
|
|
int deposit = m_assembly.stackHeight() - blockStartStackHeight;
|
2018-09-25 02:47:25 +00:00
|
|
|
solAssert(deposit == 0, "Invalid stack height at end of block: " + to_string(deposit));
|
2017-06-09 11:59:16 +00:00
|
|
|
checkStackHeight(&_block);
|
|
|
|
}
|
|
|
|
|
2017-09-20 09:16:07 +00:00
|
|
|
void CodeTransform::generateMultiAssignment(vector<Identifier> const& _variableNames)
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
|
|
|
solAssert(m_scope, "");
|
2017-05-19 16:06:26 +00:00
|
|
|
for (auto const& variableName: _variableNames | boost::adaptors::reversed)
|
2017-09-20 09:16:07 +00:00
|
|
|
generateAssignment(variableName);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CodeTransform::generateAssignment(Identifier const& _variableName)
|
|
|
|
{
|
|
|
|
solAssert(m_scope, "");
|
2018-09-25 02:47:25 +00:00
|
|
|
if (auto var = m_scope->lookup(_variableName.name))
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
2017-09-20 09:16:07 +00:00
|
|
|
Scope::Variable const& _var = boost::get<Scope::Variable>(*var);
|
|
|
|
if (int heightDiff = variableHeightDiff(_var, true))
|
|
|
|
m_assembly.appendInstruction(solidity::swapInstruction(heightDiff - 1));
|
|
|
|
m_assembly.appendInstruction(solidity::Instruction::POP);
|
2018-09-25 02:47:25 +00:00
|
|
|
decreaseReference(_variableName.name, _var);
|
2017-09-20 09:16:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
solAssert(
|
|
|
|
m_identifierAccess.generateCode,
|
|
|
|
"Identifier not found and no external access available."
|
|
|
|
);
|
|
|
|
m_identifierAccess.generateCode(_variableName, IdentifierContext::LValue, m_assembly);
|
2017-05-24 16:34:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-21 11:42:34 +00:00
|
|
|
int CodeTransform::variableHeightDiff(Scope::Variable const& _var, bool _forSwap) const
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
2017-06-13 22:01:06 +00:00
|
|
|
solAssert(m_context->variableStackHeights.count(&_var), "");
|
|
|
|
int heightDiff = m_assembly.stackHeight() - m_context->variableStackHeights[&_var];
|
2017-05-24 16:34:19 +00:00
|
|
|
if (heightDiff <= (_forSwap ? 1 : 0) || heightDiff > (_forSwap ? 17 : 16))
|
|
|
|
{
|
2017-06-06 13:37:43 +00:00
|
|
|
solUnimplemented(
|
2018-08-08 14:26:30 +00:00
|
|
|
"Variable inaccessible, too deep inside stack (" + to_string(heightDiff) + ")"
|
2017-05-24 16:34:19 +00:00
|
|
|
);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return heightDiff;
|
|
|
|
}
|
|
|
|
|
2017-09-20 07:52:10 +00:00
|
|
|
void CodeTransform::expectDeposit(int _deposit, int _oldHeight) const
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
|
|
|
solAssert(m_assembly.stackHeight() == _oldHeight + _deposit, "Invalid stack deposit.");
|
|
|
|
}
|
|
|
|
|
2017-09-20 07:52:10 +00:00
|
|
|
void CodeTransform::checkStackHeight(void const* _astElement) const
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
|
|
|
solAssert(m_info.stackHeightInfo.count(_astElement), "Stack height for AST element not found.");
|
2018-09-26 09:52:09 +00:00
|
|
|
int stackHeightInAnalysis = m_info.stackHeightInfo.at(_astElement);
|
|
|
|
int stackHeightInCodegen = m_assembly.stackHeight() - m_stackAdjustment;
|
2017-05-24 16:34:19 +00:00
|
|
|
solAssert(
|
2018-09-26 09:52:09 +00:00
|
|
|
stackHeightInAnalysis == stackHeightInCodegen,
|
2017-05-24 16:34:19 +00:00
|
|
|
"Stack height mismatch between analysis and code generation phase: Analysis: " +
|
2018-09-26 09:52:09 +00:00
|
|
|
to_string(stackHeightInAnalysis) +
|
2017-05-24 16:34:19 +00:00
|
|
|
" code gen: " +
|
2018-09-26 09:52:09 +00:00
|
|
|
to_string(stackHeightInCodegen)
|
2017-05-24 16:34:19 +00:00
|
|
|
);
|
|
|
|
}
|