solidity/libyul/optimiser/DeadCodeEliminator.h

65 lines
1.8 KiB
C
Raw Normal View History

2019-03-28 13:18:17 +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/>.
*/
/**
* Optimisation stage that removes unused variables and functions.
*/
#pragma once
#include <libyul/optimiser/ASTWalker.h>
#include <libyul/YulString.h>
#include <map>
#include <set>
2019-12-11 16:31:36 +00:00
namespace solidity::yul
2019-03-28 13:18:17 +00:00
{
2019-05-20 12:30:32 +00:00
struct Dialect;
2019-09-23 14:32:50 +00:00
struct OptimiserStepContext;
2019-03-28 13:18:17 +00:00
/**
* Optimisation stage that removes unreachable code
*
* Unreachable code is any code within a block which is preceded by a
2019-10-28 14:25:02 +00:00
* leave, return, invalid, break, continue, selfdestruct or revert.
2019-03-28 13:18:17 +00:00
*
* Function definitions are retained as they might be called by earlier
* code and thus are considered reachable.
*
* Because variables declared in a for loop's init block have their scope extended to the loop body,
* we require ForLoopInitRewriter to run before this step.
*
2019-05-13 09:00:45 +00:00
* Prerequisite: ForLoopInitRewriter, Function Hoister, Function Grouper
2019-03-28 13:18:17 +00:00
*/
class DeadCodeEliminator: public ASTModifier
{
public:
2019-09-23 14:32:50 +00:00
static constexpr char const* name{"DeadCodeEliminator"};
static void run(OptimiserStepContext&, Block& _ast);
2019-05-20 12:30:32 +00:00
2019-03-28 13:18:17 +00:00
using ASTModifier::operator();
void operator()(ForLoop& _for) override;
2019-03-28 13:18:17 +00:00
void operator()(Block& _block) override;
2019-05-20 12:30:32 +00:00
private:
2019-09-23 14:32:50 +00:00
DeadCodeEliminator(Dialect const& _dialect): m_dialect(_dialect) {}
2019-05-20 12:30:32 +00:00
Dialect const& m_dialect;
2019-03-28 13:18:17 +00:00
};
}