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
|
|
|
/**
|
2020-11-02 11:53:17 +00:00
|
|
|
* Helper to compile Yul code using libevmasm.
|
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>
|
2020-11-02 11:53:17 +00:00
|
|
|
#include <liblangutil/EVMVersion.h>
|
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-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;
|
2020-11-02 11:53:17 +00:00
|
|
|
struct AsmAnalysisInfo;
|
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,
|
2021-08-04 16:38:10 +00:00
|
|
|
ExternalIdentifierAccess::CodeGenerator _identifierAccess = {},
|
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
|
|
|
};
|
|
|
|
}
|