2017-05-24 16:34:19 +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/>.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Assembly interface for EVM and EVM1.5.
|
|
|
|
*/
|
|
|
|
|
2018-10-15 09:52:35 +00:00
|
|
|
#include <libyul/backends/evm/EVMAssembly.h>
|
2017-05-24 16:34:19 +00:00
|
|
|
|
|
|
|
#include <libevmasm/Instruction.h>
|
|
|
|
|
2018-11-14 13:59:30 +00:00
|
|
|
#include <liblangutil/Exceptions.h>
|
2017-05-24 16:34:19 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
2018-11-14 16:11:55 +00:00
|
|
|
using namespace langutil;
|
2018-11-21 11:42:34 +00:00
|
|
|
using namespace yul;
|
2017-05-24 16:34:19 +00:00
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
2017-06-08 13:52:15 +00:00
|
|
|
/// Size of labels in bytes. Four-byte labels are required by some EVM1.5 instructions.
|
2017-05-24 16:34:19 +00:00
|
|
|
size_t constexpr labelReferenceSize = 4;
|
2017-06-13 22:55:34 +00:00
|
|
|
|
|
|
|
size_t constexpr assemblySizeReferenceSize = 4;
|
2017-05-24 16:34:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void EVMAssembly::setSourceLocation(SourceLocation const&)
|
|
|
|
{
|
|
|
|
// Ignored for now;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EVMAssembly::appendInstruction(solidity::Instruction _instr)
|
|
|
|
{
|
2018-11-07 11:04:46 +00:00
|
|
|
m_bytecode.push_back(uint8_t(_instr));
|
2017-05-24 16:34:19 +00:00
|
|
|
m_stackHeight += solidity::instructionInfo(_instr).ret - solidity::instructionInfo(_instr).args;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EVMAssembly::appendConstant(u256 const& _constant)
|
|
|
|
{
|
|
|
|
bytes data = toCompactBigEndian(_constant, 1);
|
|
|
|
appendInstruction(solidity::pushInstruction(data.size()));
|
|
|
|
m_bytecode += data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EVMAssembly::appendLabel(LabelID _labelId)
|
|
|
|
{
|
|
|
|
setLabelToCurrentPosition(_labelId);
|
|
|
|
appendInstruction(solidity::Instruction::JUMPDEST);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EVMAssembly::appendLabelReference(LabelID _labelId)
|
|
|
|
{
|
|
|
|
solAssert(!m_evm15, "Cannot use plain label references in EMV1.5 mode.");
|
|
|
|
// @TODO we now always use labelReferenceSize for all labels, it could be shortened
|
|
|
|
// for some of them.
|
|
|
|
appendInstruction(solidity::pushInstruction(labelReferenceSize));
|
|
|
|
m_labelReferences[m_bytecode.size()] = _labelId;
|
|
|
|
m_bytecode += bytes(labelReferenceSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
EVMAssembly::LabelID EVMAssembly::newLabelId()
|
|
|
|
{
|
2017-06-08 13:52:15 +00:00
|
|
|
m_labelPositions[m_nextLabelId] = size_t(-1);
|
|
|
|
return m_nextLabelId++;
|
2017-05-24 16:34:19 +00:00
|
|
|
}
|
|
|
|
|
2017-08-25 15:04:31 +00:00
|
|
|
AbstractAssembly::LabelID EVMAssembly::namedLabel(string const& _name)
|
|
|
|
{
|
|
|
|
solAssert(!_name.empty(), "");
|
|
|
|
if (!m_namedLabels.count(_name))
|
|
|
|
m_namedLabels[_name] = newLabelId();
|
|
|
|
return m_namedLabels[_name];
|
|
|
|
}
|
|
|
|
|
2017-05-24 16:34:19 +00:00
|
|
|
void EVMAssembly::appendLinkerSymbol(string const&)
|
|
|
|
{
|
|
|
|
solAssert(false, "Linker symbols not yet implemented.");
|
|
|
|
}
|
|
|
|
|
|
|
|
void EVMAssembly::appendJump(int _stackDiffAfter)
|
|
|
|
{
|
|
|
|
solAssert(!m_evm15, "Plain JUMP used for EVM 1.5");
|
|
|
|
appendInstruction(solidity::Instruction::JUMP);
|
|
|
|
m_stackHeight += _stackDiffAfter;
|
|
|
|
}
|
|
|
|
|
2017-06-01 16:16:38 +00:00
|
|
|
void EVMAssembly::appendJumpTo(LabelID _labelId, int _stackDiffAfter)
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
|
|
|
if (m_evm15)
|
|
|
|
{
|
2018-11-07 11:04:46 +00:00
|
|
|
m_bytecode.push_back(uint8_t(solidity::Instruction::JUMPTO));
|
2017-05-24 16:34:19 +00:00
|
|
|
appendLabelReferenceInternal(_labelId);
|
|
|
|
m_stackHeight += _stackDiffAfter;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
appendLabelReference(_labelId);
|
|
|
|
appendJump(_stackDiffAfter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-01 16:16:38 +00:00
|
|
|
void EVMAssembly::appendJumpToIf(LabelID _labelId)
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
|
|
|
if (m_evm15)
|
|
|
|
{
|
2018-11-07 11:04:46 +00:00
|
|
|
m_bytecode.push_back(uint8_t(solidity::Instruction::JUMPIF));
|
2017-05-24 16:34:19 +00:00
|
|
|
appendLabelReferenceInternal(_labelId);
|
|
|
|
m_stackHeight--;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
appendLabelReference(_labelId);
|
|
|
|
appendInstruction(solidity::Instruction::JUMPI);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-01 16:16:38 +00:00
|
|
|
void EVMAssembly::appendBeginsub(LabelID _labelId, int _arguments)
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
|
|
|
solAssert(m_evm15, "BEGINSUB used for EVM 1.0");
|
|
|
|
solAssert(_arguments >= 0, "");
|
|
|
|
setLabelToCurrentPosition(_labelId);
|
2018-11-07 11:04:46 +00:00
|
|
|
m_bytecode.push_back(uint8_t(solidity::Instruction::BEGINSUB));
|
2017-05-24 16:34:19 +00:00
|
|
|
m_stackHeight += _arguments;
|
|
|
|
}
|
|
|
|
|
2017-06-01 16:16:38 +00:00
|
|
|
void EVMAssembly::appendJumpsub(LabelID _labelId, int _arguments, int _returns)
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
|
|
|
solAssert(m_evm15, "JUMPSUB used for EVM 1.0");
|
|
|
|
solAssert(_arguments >= 0 && _returns >= 0, "");
|
2018-11-07 11:04:46 +00:00
|
|
|
m_bytecode.push_back(uint8_t(solidity::Instruction::JUMPSUB));
|
2017-05-24 16:34:19 +00:00
|
|
|
appendLabelReferenceInternal(_labelId);
|
|
|
|
m_stackHeight += _returns - _arguments;
|
|
|
|
}
|
|
|
|
|
2017-05-31 11:06:51 +00:00
|
|
|
void EVMAssembly::appendReturnsub(int _returns, int _stackDiffAfter)
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
|
|
|
solAssert(m_evm15, "RETURNSUB used for EVM 1.0");
|
|
|
|
solAssert(_returns >= 0, "");
|
2018-11-07 11:04:46 +00:00
|
|
|
m_bytecode.push_back(uint8_t(solidity::Instruction::RETURNSUB));
|
2017-05-31 11:06:51 +00:00
|
|
|
m_stackHeight += _stackDiffAfter - _returns;
|
2017-05-24 16:34:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
eth::LinkerObject EVMAssembly::finalize()
|
|
|
|
{
|
2017-06-13 22:55:34 +00:00
|
|
|
size_t bytecodeSize = m_bytecode.size();
|
|
|
|
for (auto const& ref: m_assemblySizePositions)
|
2017-06-23 00:00:14 +00:00
|
|
|
updateReference(ref, assemblySizeReferenceSize, u256(bytecodeSize));
|
2017-06-13 22:55:34 +00:00
|
|
|
|
2017-05-24 16:34:19 +00:00
|
|
|
for (auto const& ref: m_labelReferences)
|
|
|
|
{
|
|
|
|
size_t referencePos = ref.first;
|
|
|
|
solAssert(m_labelPositions.count(ref.second), "");
|
|
|
|
size_t labelPos = m_labelPositions.at(ref.second);
|
|
|
|
solAssert(labelPos != size_t(-1), "Undefined but allocated label used.");
|
2017-06-23 00:00:14 +00:00
|
|
|
updateReference(referencePos, labelReferenceSize, u256(labelPos));
|
2017-05-24 16:34:19 +00:00
|
|
|
}
|
2017-06-13 22:55:34 +00:00
|
|
|
|
2017-05-24 16:34:19 +00:00
|
|
|
eth::LinkerObject obj;
|
|
|
|
obj.bytecode = m_bytecode;
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2017-06-01 16:16:38 +00:00
|
|
|
void EVMAssembly::setLabelToCurrentPosition(LabelID _labelId)
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
|
|
|
solAssert(m_labelPositions.count(_labelId), "Label not found.");
|
|
|
|
solAssert(m_labelPositions[_labelId] == size_t(-1), "Label already set.");
|
|
|
|
m_labelPositions[_labelId] = m_bytecode.size();
|
|
|
|
}
|
|
|
|
|
2017-06-01 16:16:38 +00:00
|
|
|
void EVMAssembly::appendLabelReferenceInternal(LabelID _labelId)
|
2017-05-24 16:34:19 +00:00
|
|
|
{
|
|
|
|
m_labelReferences[m_bytecode.size()] = _labelId;
|
|
|
|
m_bytecode += bytes(labelReferenceSize);
|
|
|
|
}
|
2017-06-13 22:55:34 +00:00
|
|
|
|
|
|
|
void EVMAssembly::appendAssemblySize()
|
|
|
|
{
|
|
|
|
appendInstruction(solidity::pushInstruction(assemblySizeReferenceSize));
|
|
|
|
m_assemblySizePositions.push_back(m_bytecode.size());
|
|
|
|
m_bytecode += bytes(assemblySizeReferenceSize);
|
|
|
|
}
|
2017-06-23 00:00:14 +00:00
|
|
|
|
|
|
|
void EVMAssembly::updateReference(size_t pos, size_t size, u256 value)
|
|
|
|
{
|
|
|
|
solAssert(m_bytecode.size() >= size && pos <= m_bytecode.size() - size, "");
|
|
|
|
solAssert(value < (u256(1) << (8 * size)), "");
|
|
|
|
for (size_t i = 0; i < size; i++)
|
2018-11-07 11:04:46 +00:00
|
|
|
m_bytecode[pos + i] = uint8_t((value >> (8 * (size - i - 1))) & 0xff);
|
2017-06-23 00:00:14 +00:00
|
|
|
}
|