solidity/libyul/optimiser/DeadCodeEliminator.cpp

67 lines
2.1 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 unreachable code.
*/
#include <libyul/optimiser/DeadCodeEliminator.h>
2019-05-13 09:00:45 +00:00
#include <libyul/optimiser/Semantics.h>
2019-09-23 14:32:50 +00:00
#include <libyul/optimiser/OptimiserStep.h>
2019-03-28 13:18:17 +00:00
#include <libyul/AsmData.h>
#include <libevmasm/SemanticInformation.h>
#include <libevmasm/AssemblyItem.h>
#include <algorithm>
using namespace std;
2019-12-11 16:31:36 +00:00
using namespace solidity;
using namespace solidity::util;
using namespace solidity::yul;
2019-03-28 13:18:17 +00:00
2019-09-23 14:32:50 +00:00
void DeadCodeEliminator::run(OptimiserStepContext& _context, Block& _ast)
{
DeadCodeEliminator{_context.dialect}(_ast);
}
void DeadCodeEliminator::operator()(ForLoop& _for)
{
yulAssert(_for.pre.statements.empty(), "DeadCodeEliminator needs ForLoopInitRewriter as a prerequisite.");
ASTModifier::operator()(_for);
}
2019-03-28 13:18:17 +00:00
void DeadCodeEliminator::operator()(Block& _block)
{
2019-05-13 09:00:45 +00:00
TerminationFinder::ControlFlow controlFlowChange;
size_t index;
2019-05-20 12:30:32 +00:00
tie(controlFlowChange, index) = TerminationFinder{m_dialect}.firstUnconditionalControlFlowChange(_block.statements);
2019-05-13 09:00:45 +00:00
// Erase everything after the terminating statement that is not a function definition.
if (controlFlowChange != TerminationFinder::ControlFlow::FlowOut && index != size_t(-1))
_block.statements.erase(
remove_if(
_block.statements.begin() + index + 1,
_block.statements.end(),
[] (Statement const& _s) { return !holds_alternative<yul::FunctionDefinition>(_s); }
2019-03-28 13:18:17 +00:00
),
2019-05-13 09:00:45 +00:00
_block.statements.end()
2019-03-28 13:18:17 +00:00
);
ASTModifier::operator()(_block);
}