2018-12-04 17:57:32 +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
|
2018-12-04 17:57:32 +00:00
|
|
|
/**
|
|
|
|
* Compiler that transforms Yul Objects to EVM bytecode objects.
|
|
|
|
*/
|
|
|
|
|
2018-12-12 15:47:05 +00:00
|
|
|
#pragma once
|
2018-12-04 17:57:32 +00:00
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::yul
|
2018-12-04 17:57:32 +00:00
|
|
|
{
|
|
|
|
struct Object;
|
|
|
|
class AbstractAssembly;
|
2018-12-06 23:56:16 +00:00
|
|
|
struct EVMDialect;
|
2018-12-04 17:57:32 +00:00
|
|
|
|
|
|
|
class EVMObjectCompiler
|
|
|
|
{
|
|
|
|
public:
|
2021-03-09 11:46:33 +00:00
|
|
|
static void compile(Object& _object, AbstractAssembly& _assembly, EVMDialect const& _dialect, bool _optimize);
|
2018-12-04 17:57:32 +00:00
|
|
|
private:
|
2021-03-09 11:46:33 +00:00
|
|
|
EVMObjectCompiler(AbstractAssembly& _assembly, EVMDialect const& _dialect):
|
|
|
|
m_assembly(_assembly), m_dialect(_dialect)
|
2018-12-04 17:57:32 +00:00
|
|
|
{}
|
|
|
|
|
2018-09-25 02:47:25 +00:00
|
|
|
void run(Object& _object, bool _optimize);
|
2018-12-04 17:57:32 +00:00
|
|
|
|
|
|
|
AbstractAssembly& m_assembly;
|
2019-05-16 08:24:03 +00:00
|
|
|
EVMDialect const& m_dialect;
|
2018-12-04 17:57:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|