2017-04-28 16:15:18 +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/>.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @date 2017
|
|
|
|
* Abstract assembly interface, subclasses of which are to be used with the generic
|
|
|
|
* bytecode generator.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-11-21 11:42:34 +00:00
|
|
|
#include <libdevcore/Common.h>
|
2017-04-28 16:15:18 +00:00
|
|
|
#include <libdevcore/CommonData.h>
|
|
|
|
|
|
|
|
#include <functional>
|
2018-12-04 17:57:07 +00:00
|
|
|
#include <memory>
|
2017-04-28 16:15:18 +00:00
|
|
|
|
2018-11-14 16:11:55 +00:00
|
|
|
namespace langutil
|
2017-04-28 16:15:18 +00:00
|
|
|
{
|
|
|
|
struct SourceLocation;
|
2018-11-14 16:11:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
2017-04-28 16:15:18 +00:00
|
|
|
namespace solidity
|
|
|
|
{
|
|
|
|
enum class Instruction: uint8_t;
|
|
|
|
}
|
|
|
|
}
|
2018-11-21 11:42:34 +00:00
|
|
|
|
2018-10-15 09:58:51 +00:00
|
|
|
namespace yul
|
2017-04-28 16:15:18 +00:00
|
|
|
{
|
2018-11-21 11:42:34 +00:00
|
|
|
struct Instruction;
|
|
|
|
struct Identifier;
|
2017-04-28 16:15:18 +00:00
|
|
|
|
2017-05-24 16:34:19 +00:00
|
|
|
///
|
2018-06-18 21:26:31 +00:00
|
|
|
/// Assembly class that abstracts both the libevmasm assembly and the new Yul assembly.
|
2017-05-24 16:34:19 +00:00
|
|
|
///
|
2017-04-28 16:15:18 +00:00
|
|
|
class AbstractAssembly
|
|
|
|
{
|
|
|
|
public:
|
2017-05-24 16:34:19 +00:00
|
|
|
using LabelID = size_t;
|
2018-12-04 17:57:07 +00:00
|
|
|
using SubID = size_t;
|
2017-05-24 16:34:19 +00:00
|
|
|
|
2018-12-12 13:51:22 +00:00
|
|
|
virtual ~AbstractAssembly() = default;
|
2017-04-28 16:15:18 +00:00
|
|
|
|
|
|
|
/// Set a new source location valid starting from the next instruction.
|
2018-11-14 16:11:55 +00:00
|
|
|
virtual void setSourceLocation(langutil::SourceLocation const& _location) = 0;
|
2017-04-28 16:15:18 +00:00
|
|
|
/// Retrieve the current height of the stack. This does not have to be zero
|
|
|
|
/// at the beginning.
|
|
|
|
virtual int stackHeight() const = 0;
|
|
|
|
/// Append an EVM instruction.
|
2018-11-21 11:42:34 +00:00
|
|
|
virtual void appendInstruction(dev::solidity::Instruction _instruction) = 0;
|
2017-04-28 16:15:18 +00:00
|
|
|
/// Append a constant.
|
2018-11-21 11:42:34 +00:00
|
|
|
virtual void appendConstant(dev::u256 const& _constant) = 0;
|
2017-04-28 16:15:18 +00:00
|
|
|
/// Append a label.
|
2017-05-24 16:34:19 +00:00
|
|
|
virtual void appendLabel(LabelID _labelId) = 0;
|
2017-04-28 16:15:18 +00:00
|
|
|
/// Append a label reference.
|
2017-05-24 16:34:19 +00:00
|
|
|
virtual void appendLabelReference(LabelID _labelId) = 0;
|
2017-04-28 16:15:18 +00:00
|
|
|
/// Generate a new unique label.
|
2017-05-24 16:34:19 +00:00
|
|
|
virtual LabelID newLabelId() = 0;
|
2017-08-25 15:04:31 +00:00
|
|
|
/// Returns a label identified by the given name. Creates it if it does not yet exist.
|
|
|
|
virtual LabelID namedLabel(std::string const& _name) = 0;
|
2018-07-10 07:18:59 +00:00
|
|
|
/// Append a reference to a to-be-linked symbol.
|
2017-05-19 18:12:12 +00:00
|
|
|
/// Currently, we assume that the value is always a 20 byte number.
|
2017-04-28 16:15:18 +00:00
|
|
|
virtual void appendLinkerSymbol(std::string const& _name) = 0;
|
2017-05-24 16:34:19 +00:00
|
|
|
|
|
|
|
/// Append a jump instruction.
|
|
|
|
/// @param _stackDiffAfter the stack adjustment after this instruction.
|
2017-06-01 16:16:38 +00:00
|
|
|
/// This is helpful to stack height analysis if there is no continuing control flow.
|
2017-05-24 16:34:19 +00:00
|
|
|
virtual void appendJump(int _stackDiffAfter) = 0;
|
|
|
|
|
|
|
|
/// Append a jump-to-immediate operation.
|
2017-06-01 16:16:38 +00:00
|
|
|
/// @param _stackDiffAfter the stack adjustment after this instruction.
|
2017-06-08 13:52:15 +00:00
|
|
|
virtual void appendJumpTo(LabelID _labelId, int _stackDiffAfter = 0) = 0;
|
2017-05-24 16:34:19 +00:00
|
|
|
/// Append a jump-to-if-immediate operation.
|
2017-06-08 13:52:15 +00:00
|
|
|
virtual void appendJumpToIf(LabelID _labelId) = 0;
|
|
|
|
/// Start a subroutine identified by @a _labelId that takes @a _arguments
|
2017-06-01 16:16:38 +00:00
|
|
|
/// stack slots as arguments.
|
2017-06-08 13:52:15 +00:00
|
|
|
virtual void appendBeginsub(LabelID _labelId, int _arguments) = 0;
|
|
|
|
/// Call a subroutine identified by @a _labelId, taking @a _arguments from the
|
2017-06-01 16:16:38 +00:00
|
|
|
/// stack upon call and putting @a _returns arguments onto the stack upon return.
|
2017-06-08 13:52:15 +00:00
|
|
|
virtual void appendJumpsub(LabelID _labelId, int _arguments, int _returns) = 0;
|
2017-05-24 16:34:19 +00:00
|
|
|
/// Return from a subroutine.
|
2017-06-01 16:16:38 +00:00
|
|
|
/// @param _stackDiffAfter the stack adjustment after this instruction.
|
2017-05-31 11:06:51 +00:00
|
|
|
virtual void appendReturnsub(int _returns, int _stackDiffAfter = 0) = 0;
|
2017-06-13 22:55:34 +00:00
|
|
|
|
|
|
|
/// Append the assembled size as a constant.
|
|
|
|
virtual void appendAssemblySize() = 0;
|
2018-12-04 17:57:07 +00:00
|
|
|
/// Creates a new sub-assembly, which can be referenced using dataSize and dataOffset.
|
|
|
|
virtual std::pair<std::shared_ptr<AbstractAssembly>, SubID> createSubAssembly() = 0;
|
|
|
|
/// Appends the offset of the given sub-assembly or data.
|
|
|
|
virtual void appendDataOffset(SubID _sub) = 0;
|
|
|
|
/// Appends the size of the given sub-assembly or data.
|
|
|
|
virtual void appendDataSize(SubID _sub) = 0;
|
|
|
|
/// Appends the given data to the assembly and returns its ID.
|
|
|
|
virtual SubID appendData(dev::bytes const& _data) = 0;
|
2017-04-28 16:15:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class IdentifierContext { LValue, RValue };
|
|
|
|
|
|
|
|
/// Object that is used to resolve references and generate code for access to identifiers external
|
|
|
|
/// to inline assembly (not used in standalone assembly mode).
|
|
|
|
struct ExternalIdentifierAccess
|
|
|
|
{
|
2018-11-21 11:42:34 +00:00
|
|
|
using Resolver = std::function<size_t(Identifier const&, IdentifierContext, bool /*_crossesFunctionBoundary*/)>;
|
2018-09-21 01:27:33 +00:00
|
|
|
/// Resolve an external reference given by the identifier in the given context.
|
2017-04-28 16:15:18 +00:00
|
|
|
/// @returns the size of the value (number of stack slots) or size_t(-1) if not found.
|
|
|
|
Resolver resolve;
|
2018-11-21 11:42:34 +00:00
|
|
|
using CodeGenerator = std::function<void(Identifier const&, IdentifierContext, yul::AbstractAssembly&)>;
|
2017-04-28 16:15:18 +00:00
|
|
|
/// Generate code for retrieving the value (rvalue context) or storing the value (lvalue context)
|
|
|
|
/// of an identifier. The code should be appended to the assembly. In rvalue context, the value is supposed
|
|
|
|
/// to be put onto the stack, in lvalue context, the value is assumed to be at the top of the stack.
|
|
|
|
CodeGenerator generateCode;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|