2016-03-01 21:56:39 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2016-03-01 21:56:39 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2016-03-01 21:56:39 +00:00
|
|
|
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.
|
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2016-03-01 21:56:39 +00:00
|
|
|
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
|
2016-11-18 23:13:20 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2016-03-01 21:56:39 +00:00
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2016-03-01 21:56:39 +00:00
|
|
|
/**
|
2018-12-04 14:20:29 +00:00
|
|
|
* Adaptor between the abstract assembly and eth assembly.
|
2016-03-01 21:56:39 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-12-04 15:26:38 +00:00
|
|
|
#include <libyul/backends/evm/AbstractAssembly.h>
|
2019-02-13 10:35:49 +00:00
|
|
|
#include <libyul/AsmAnalysis.h>
|
2018-12-04 15:26:38 +00:00
|
|
|
#include <liblangutil/SourceLocation.h>
|
2017-03-14 14:41:23 +00:00
|
|
|
#include <functional>
|
2016-03-01 21:56:39 +00:00
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::evmasm
|
2016-03-01 21:56:39 +00:00
|
|
|
{
|
|
|
|
class Assembly;
|
2018-12-04 15:26:38 +00:00
|
|
|
class AssemblyItem;
|
2016-03-01 21:56:39 +00:00
|
|
|
}
|
2018-11-21 11:42:34 +00:00
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::yul
|
2016-03-01 21:56:39 +00:00
|
|
|
{
|
2019-02-13 10:35:49 +00:00
|
|
|
struct Block;
|
2016-03-01 21:56:39 +00:00
|
|
|
|
2019-02-13 10:35:49 +00:00
|
|
|
class EthAssemblyAdapter: public AbstractAssembly
|
2018-12-04 15:26:38 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-12-11 16:31:36 +00:00
|
|
|
explicit EthAssemblyAdapter(evmasm::Assembly& _assembly);
|
2018-12-04 15:26:38 +00:00
|
|
|
void setSourceLocation(langutil::SourceLocation const& _location) override;
|
|
|
|
int stackHeight() const override;
|
2019-05-25 10:37:51 +00:00
|
|
|
void setStackHeight(int height) override;
|
2019-12-11 16:31:36 +00:00
|
|
|
void appendInstruction(evmasm::Instruction _instruction) override;
|
|
|
|
void appendConstant(u256 const& _constant) override;
|
2018-12-04 15:26:38 +00:00
|
|
|
void appendLabel(LabelID _labelId) override;
|
|
|
|
void appendLabelReference(LabelID _labelId) override;
|
|
|
|
size_t newLabelId() override;
|
|
|
|
size_t namedLabel(std::string const& _name) override;
|
|
|
|
void appendLinkerSymbol(std::string const& _linkerSymbol) override;
|
2020-06-22 12:22:01 +00:00
|
|
|
void appendJump(int _stackDiffAfter, JumpType _jumpType) override;
|
|
|
|
void appendJumpTo(LabelID _labelId, int _stackDiffAfter, JumpType _jumpType) override;
|
|
|
|
void appendJumpToIf(LabelID _labelId, JumpType _jumpType) override;
|
2018-12-04 15:26:38 +00:00
|
|
|
void appendAssemblySize() override;
|
2021-02-03 10:47:16 +00:00
|
|
|
std::pair<std::shared_ptr<AbstractAssembly>, SubID> createSubAssembly(std::string _name = {}) override;
|
2020-06-17 09:17:35 +00:00
|
|
|
void appendDataOffset(std::vector<SubID> const& _subPath) override;
|
|
|
|
void appendDataSize(std::vector<SubID> const& _subPath) override;
|
2019-12-11 16:31:36 +00:00
|
|
|
SubID appendData(bytes const& _data) override;
|
2018-12-04 15:26:38 +00:00
|
|
|
|
2020-04-14 08:52:27 +00:00
|
|
|
void appendImmutable(std::string const& _identifier) override;
|
|
|
|
void appendImmutableAssignment(std::string const& _identifier) override;
|
|
|
|
|
2020-07-15 09:32:34 +00:00
|
|
|
void markAsInvalid() override;
|
|
|
|
|
2018-12-04 15:26:38 +00:00
|
|
|
private:
|
2019-12-11 16:31:36 +00:00
|
|
|
static LabelID assemblyTagToIdentifier(evmasm::AssemblyItem const& _tag);
|
2020-06-22 12:22:01 +00:00
|
|
|
void appendJumpInstruction(evmasm::Instruction _instruction, JumpType _jumpType);
|
2018-12-04 15:26:38 +00:00
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
evmasm::Assembly& m_assembly;
|
|
|
|
std::map<SubID, u256> m_dataHashBySubId;
|
2018-12-04 17:57:07 +00:00
|
|
|
size_t m_nextDataCounter = std::numeric_limits<size_t>::max() / 2;
|
2018-12-04 15:26:38 +00:00
|
|
|
};
|
|
|
|
|
2016-03-01 21:56:39 +00:00
|
|
|
class CodeGenerator
|
|
|
|
{
|
|
|
|
public:
|
2018-09-20 14:54:57 +00:00
|
|
|
/// Performs code generation and appends generated to _assembly.
|
2017-06-06 13:37:43 +00:00
|
|
|
static void assemble(
|
2019-02-13 10:35:49 +00:00
|
|
|
Block const& _parsedData,
|
|
|
|
AsmAnalysisInfo& _analysisInfo,
|
2019-12-11 16:31:36 +00:00
|
|
|
evmasm::Assembly& _assembly,
|
2019-02-25 14:29:57 +00:00
|
|
|
langutil::EVMVersion _evmVersion,
|
2019-02-13 10:35:49 +00:00
|
|
|
ExternalIdentifierAccess const& _identifierAccess = ExternalIdentifierAccess(),
|
2018-09-25 02:47:25 +00:00
|
|
|
bool _useNamedLabelsForFunctions = false,
|
2019-02-26 18:55:13 +00:00
|
|
|
bool _optimizeStackAllocation = false
|
2017-04-12 16:32:25 +00:00
|
|
|
);
|
2016-03-01 21:56:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|