2019-01-28 17:11:58 +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/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2019-01-28 17:11:58 +00:00
|
|
|
/**
|
|
|
|
* Assembly interface that ignores everything. Can be used as a backend for a compilation dry-run.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <libyul/backends/evm/NoOutputAssembly.h>
|
2020-04-14 08:52:27 +00:00
|
|
|
|
2020-10-29 14:00:27 +00:00
|
|
|
#include <libyul/AST.h>
|
2019-11-26 21:52:09 +00:00
|
|
|
#include <libyul/Exceptions.h>
|
2019-01-28 17:11:58 +00:00
|
|
|
|
|
|
|
#include <libevmasm/Instruction.h>
|
|
|
|
|
2020-04-14 08:52:27 +00:00
|
|
|
#include <boost/range/adaptor/reversed.hpp>
|
|
|
|
|
|
|
|
|
2019-01-28 17:11:58 +00:00
|
|
|
using namespace std;
|
2019-12-11 16:31:36 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::yul;
|
|
|
|
using namespace solidity::util;
|
|
|
|
using namespace solidity::langutil;
|
2019-01-28 17:11:58 +00:00
|
|
|
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
void NoOutputAssembly::appendInstruction(evmasm::Instruction _instr)
|
2019-01-28 17:11:58 +00:00
|
|
|
{
|
2019-03-28 11:47:21 +00:00
|
|
|
m_stackHeight += instructionInfo(_instr).ret - instructionInfo(_instr).args;
|
2019-01-28 17:11:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NoOutputAssembly::appendConstant(u256 const&)
|
|
|
|
{
|
2019-12-11 16:31:36 +00:00
|
|
|
appendInstruction(evmasm::pushInstruction(1));
|
2019-01-28 17:11:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NoOutputAssembly::appendLabel(LabelID)
|
|
|
|
{
|
2019-12-11 16:31:36 +00:00
|
|
|
appendInstruction(evmasm::Instruction::JUMPDEST);
|
2019-01-28 17:11:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NoOutputAssembly::appendLabelReference(LabelID)
|
|
|
|
{
|
2019-11-26 21:52:09 +00:00
|
|
|
yulAssert(!m_evm15, "Cannot use plain label references in EMV1.5 mode.");
|
2019-12-11 16:31:36 +00:00
|
|
|
appendInstruction(evmasm::pushInstruction(1));
|
2019-01-28 17:11:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NoOutputAssembly::LabelID NoOutputAssembly::newLabelId()
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
AbstractAssembly::LabelID NoOutputAssembly::namedLabel(string const&)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NoOutputAssembly::appendLinkerSymbol(string const&)
|
|
|
|
{
|
2019-11-26 21:52:09 +00:00
|
|
|
yulAssert(false, "Linker symbols not yet implemented.");
|
2019-01-28 17:11:58 +00:00
|
|
|
}
|
|
|
|
|
2020-06-22 12:22:01 +00:00
|
|
|
void NoOutputAssembly::appendJump(int _stackDiffAfter, JumpType)
|
2019-01-28 17:11:58 +00:00
|
|
|
{
|
2019-11-26 21:52:09 +00:00
|
|
|
yulAssert(!m_evm15, "Plain JUMP used for EVM 1.5");
|
2019-12-11 16:31:36 +00:00
|
|
|
appendInstruction(evmasm::Instruction::JUMP);
|
2019-01-28 17:11:58 +00:00
|
|
|
m_stackHeight += _stackDiffAfter;
|
|
|
|
}
|
|
|
|
|
2020-06-22 12:22:01 +00:00
|
|
|
void NoOutputAssembly::appendJumpTo(LabelID _labelId, int _stackDiffAfter, JumpType _jumpType)
|
2019-01-28 17:11:58 +00:00
|
|
|
{
|
|
|
|
if (m_evm15)
|
|
|
|
m_stackHeight += _stackDiffAfter;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
appendLabelReference(_labelId);
|
2020-06-22 12:22:01 +00:00
|
|
|
appendJump(_stackDiffAfter, _jumpType);
|
2019-01-28 17:11:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-22 12:22:01 +00:00
|
|
|
void NoOutputAssembly::appendJumpToIf(LabelID _labelId, JumpType)
|
2019-01-28 17:11:58 +00:00
|
|
|
{
|
|
|
|
if (m_evm15)
|
|
|
|
m_stackHeight--;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
appendLabelReference(_labelId);
|
2019-12-11 16:31:36 +00:00
|
|
|
appendInstruction(evmasm::Instruction::JUMPI);
|
2019-01-28 17:11:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void NoOutputAssembly::appendBeginsub(LabelID, int _arguments)
|
|
|
|
{
|
2019-11-26 21:52:09 +00:00
|
|
|
yulAssert(m_evm15, "BEGINSUB used for EVM 1.0");
|
|
|
|
yulAssert(_arguments >= 0, "");
|
2019-01-28 17:11:58 +00:00
|
|
|
m_stackHeight += _arguments;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NoOutputAssembly::appendJumpsub(LabelID, int _arguments, int _returns)
|
|
|
|
{
|
2019-11-26 21:52:09 +00:00
|
|
|
yulAssert(m_evm15, "JUMPSUB used for EVM 1.0");
|
|
|
|
yulAssert(_arguments >= 0 && _returns >= 0, "");
|
2019-01-28 17:11:58 +00:00
|
|
|
m_stackHeight += _returns - _arguments;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NoOutputAssembly::appendReturnsub(int _returns, int _stackDiffAfter)
|
|
|
|
{
|
2019-11-26 21:52:09 +00:00
|
|
|
yulAssert(m_evm15, "RETURNSUB used for EVM 1.0");
|
|
|
|
yulAssert(_returns >= 0, "");
|
2019-01-28 17:11:58 +00:00
|
|
|
m_stackHeight += _stackDiffAfter - _returns;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NoOutputAssembly::appendAssemblySize()
|
|
|
|
{
|
2019-12-11 16:31:36 +00:00
|
|
|
appendInstruction(evmasm::Instruction::PUSH1);
|
2019-01-28 17:11:58 +00:00
|
|
|
}
|
|
|
|
|
2021-02-03 10:47:16 +00:00
|
|
|
pair<shared_ptr<AbstractAssembly>, AbstractAssembly::SubID> NoOutputAssembly::createSubAssembly(std::string)
|
2019-01-28 17:11:58 +00:00
|
|
|
{
|
2019-11-26 21:52:09 +00:00
|
|
|
yulAssert(false, "Sub assemblies not implemented.");
|
2019-01-28 17:11:58 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2020-06-17 09:17:35 +00:00
|
|
|
void NoOutputAssembly::appendDataOffset(std::vector<AbstractAssembly::SubID> const&)
|
2019-01-28 17:11:58 +00:00
|
|
|
{
|
2019-12-11 16:31:36 +00:00
|
|
|
appendInstruction(evmasm::Instruction::PUSH1);
|
2019-01-28 17:11:58 +00:00
|
|
|
}
|
|
|
|
|
2020-06-17 09:17:35 +00:00
|
|
|
void NoOutputAssembly::appendDataSize(std::vector<AbstractAssembly::SubID> const&)
|
2019-01-28 17:11:58 +00:00
|
|
|
{
|
2019-12-11 16:31:36 +00:00
|
|
|
appendInstruction(evmasm::Instruction::PUSH1);
|
2019-01-28 17:11:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AbstractAssembly::SubID NoOutputAssembly::appendData(bytes const&)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
2019-02-21 09:28:34 +00:00
|
|
|
|
2020-04-14 08:52:27 +00:00
|
|
|
|
|
|
|
void NoOutputAssembly::appendImmutable(std::string const&)
|
|
|
|
{
|
|
|
|
yulAssert(false, "loadimmutable not implemented.");
|
|
|
|
}
|
|
|
|
|
|
|
|
void NoOutputAssembly::appendImmutableAssignment(std::string const&)
|
|
|
|
{
|
|
|
|
yulAssert(false, "setimmutable not implemented.");
|
|
|
|
}
|
|
|
|
|
2019-05-16 08:56:56 +00:00
|
|
|
NoOutputEVMDialect::NoOutputEVMDialect(EVMDialect const& _copyFrom):
|
2019-12-19 16:58:20 +00:00
|
|
|
EVMDialect(_copyFrom.evmVersion(), _copyFrom.providesObjectAccess())
|
2019-02-21 09:28:34 +00:00
|
|
|
{
|
|
|
|
for (auto& fun: m_functions)
|
|
|
|
{
|
|
|
|
size_t returns = fun.second.returns.size();
|
2020-04-14 08:52:27 +00:00
|
|
|
fun.second.generateCode = [=](FunctionCall const& _call, AbstractAssembly& _assembly, BuiltinContext&, std::function<void(Expression const&)> _visitExpression)
|
2019-02-21 09:28:34 +00:00
|
|
|
{
|
2020-07-23 11:55:17 +00:00
|
|
|
size_t visited = 0;
|
|
|
|
for (size_t j = 0; j < _call.arguments.size(); j++)
|
|
|
|
{
|
|
|
|
size_t const i = _call.arguments.size() - j - 1;
|
2020-08-04 15:30:16 +00:00
|
|
|
if (!fun.second.literalArgument(i))
|
2020-07-23 11:55:17 +00:00
|
|
|
{
|
|
|
|
_visitExpression(_call.arguments[i]);
|
|
|
|
visited++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < visited; i++)
|
2019-12-11 16:31:36 +00:00
|
|
|
_assembly.appendInstruction(evmasm::Instruction::POP);
|
2019-02-21 09:28:34 +00:00
|
|
|
|
|
|
|
for (size_t i = 0; i < returns; i++)
|
2019-02-26 18:43:24 +00:00
|
|
|
_assembly.appendConstant(u256(0));
|
2019-02-21 09:28:34 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|