solidity/libyul/backends/evm/EVMObjectCompiler.h

46 lines
1.3 KiB
C
Raw Normal View History

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/>.
*/
/**
* 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:
2019-05-16 08:24:03 +00:00
static void compile(Object& _object, AbstractAssembly& _assembly, EVMDialect const& _dialect, bool _evm15, bool _optimize);
2018-12-04 17:57:32 +00:00
private:
2019-05-16 08:24:03 +00:00
EVMObjectCompiler(AbstractAssembly& _assembly, EVMDialect const& _dialect, bool _evm15):
2018-12-06 17:07:08 +00:00
m_assembly(_assembly), m_dialect(_dialect), m_evm15(_evm15)
2018-12-04 17:57:32 +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
bool m_evm15 = false;
};
}