solidity/libyul/optimiser/FunctionHoister.h

56 lines
1.5 KiB
C
Raw Normal View History

2017-12-04 15:42: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/>.
*/
// SPDX-License-Identifier: GPL-3.0
2017-12-04 15:42:18 +00:00
/**
* Optimiser component that changes the code so that all function definitions are at the top
* level block.
*/
#pragma once
#include <libyul/ASTForward.h>
2018-10-15 09:52:35 +00:00
#include <libyul/optimiser/ASTWalker.h>
2017-12-04 15:42:18 +00:00
2019-12-11 16:31:36 +00:00
namespace solidity::yul
2017-12-04 15:42:18 +00:00
{
2019-09-23 14:32:50 +00:00
struct OptimiserStepContext;
2017-12-04 15:42:18 +00:00
/**
* Moves all functions to the top-level scope.
* Applying this transformation to source code that has ambiguous identifiers might
* lead to invalid code.
*
* Prerequisites: Disambiguator
*/
class FunctionHoister: public ASTModifier
{
public:
2019-09-23 14:32:50 +00:00
static constexpr char const* name{"FunctionHoister"};
static void run(OptimiserStepContext&, Block& _ast) { FunctionHoister{}(_ast); }
2017-12-04 15:42:18 +00:00
using ASTModifier::operator();
2020-03-31 23:58:22 +00:00
void operator()(Block& _block) override;
2017-12-04 15:42:18 +00:00
private:
2019-09-23 14:32:50 +00:00
FunctionHoister() = default;
2017-12-04 15:42:18 +00:00
bool m_isTopLevel = true;
std::vector<Statement> m_functions;
};
}