mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Redundant store eliminator.
This commit is contained in:
@@ -162,6 +162,8 @@ add_library(yul
|
||||
optimiser/ReasoningBasedSimplifier.h
|
||||
optimiser/RedundantAssignEliminator.cpp
|
||||
optimiser/RedundantAssignEliminator.h
|
||||
optimiser/RedundantStoreEliminator.cpp
|
||||
optimiser/RedundantStoreEliminator.h
|
||||
optimiser/Rematerialiser.cpp
|
||||
optimiser/Rematerialiser.h
|
||||
optimiser/SSAReverser.cpp
|
||||
|
||||
@@ -0,0 +1,83 @@
|
||||
/*
|
||||
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
|
||||
/**
|
||||
*/
|
||||
|
||||
#include <libyul/optimiser/RedundantStoreEliminator.h>
|
||||
|
||||
#include <libyul/optimiser/Semantics.h>
|
||||
#include <libyul/AST.h>
|
||||
|
||||
#include <libsolutil/CommonData.h>
|
||||
|
||||
#include <boost/range/algorithm_ext/erase.hpp>
|
||||
|
||||
using namespace std;
|
||||
using namespace solidity;
|
||||
using namespace solidity::yul;
|
||||
|
||||
|
||||
void RedundantStoreEliminator::run(OptimiserStepContext& _context, Block& _ast)
|
||||
{
|
||||
RedundantStoreEliminator rse{_context.dialect};
|
||||
rse(_ast);
|
||||
}
|
||||
|
||||
void RedundantStoreEliminator::operator()(Block& _block)
|
||||
{
|
||||
// TODO This is copied from DataflowAnalyzer
|
||||
size_t numScopes = m_variableScopes.size();
|
||||
pushScope(false);
|
||||
|
||||
map<YulString, size_t> latestStore;
|
||||
set<size_t> redundantStores;
|
||||
|
||||
for (size_t i = 0; i < _block.statements.size(); ++i)
|
||||
{
|
||||
Statement& statement = _block.statements.at(i);
|
||||
if (holds_alternative<ExpressionStatement>(statement))
|
||||
{
|
||||
ExpressionStatement& exprStatement = get<ExpressionStatement>(statement);
|
||||
// This mechanism relies on the way the data flow analyzer
|
||||
// handles `m_storage`.
|
||||
if (auto vars = isSimpleStore(StoreLoadLocation::Storage, exprStatement))
|
||||
{
|
||||
if (m_storage.count(vars->first) && latestStore.count(vars->first))
|
||||
redundantStores.insert(latestStore.at(vars->first));
|
||||
latestStore[vars->first] = i;
|
||||
}
|
||||
}
|
||||
ASTModifier::visit(statement);
|
||||
}
|
||||
|
||||
popScope();
|
||||
assertThrow(numScopes == m_variableScopes.size(), OptimizerException, "");
|
||||
DataFlowAnalyzer::operator()(_block);
|
||||
if (redundantStores.empty())
|
||||
return;
|
||||
|
||||
// The arguments to sstore are identifiers and thus do not have side-effects,
|
||||
// because otherwise the statement would not have ended up in `redundantStores`.
|
||||
vector<Statement> newStatements;
|
||||
for (size_t i = 0; i < _block.statements.size(); ++i)
|
||||
{
|
||||
if (!redundantStores.count(i))
|
||||
newStatements.emplace_back(move(_block.statements.at(i)));
|
||||
}
|
||||
_block.statements = move(newStatements);
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
/*
|
||||
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
|
||||
/**
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <libyul/ASTForward.h>
|
||||
#include <libyul/optimiser/ASTWalker.h>
|
||||
#include <libyul/optimiser/OptimiserStep.h>
|
||||
#include <libyul/optimiser/DataFlowAnalyzer.h>
|
||||
|
||||
#include <map>
|
||||
#include <vector>
|
||||
|
||||
namespace solidity::yul
|
||||
{
|
||||
struct Dialect;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
class RedundantStoreEliminator: public DataFlowAnalyzer
|
||||
{
|
||||
public:
|
||||
static constexpr char const* name{"RedundantStoreEliminator"};
|
||||
explicit RedundantStoreEliminator(
|
||||
Dialect const& _dialect
|
||||
): DataFlowAnalyzer(_dialect) {}
|
||||
static void run(OptimiserStepContext&, Block& _ast);
|
||||
|
||||
void operator()(Block& _block);
|
||||
|
||||
|
||||
private:
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
@@ -56,6 +56,7 @@
|
||||
#include <libyul/optimiser/StructuralSimplifier.h>
|
||||
#include <libyul/optimiser/SyntacticalEquality.h>
|
||||
#include <libyul/optimiser/RedundantAssignEliminator.h>
|
||||
#include <libyul/optimiser/RedundantStoreEliminator.h>
|
||||
#include <libyul/optimiser/VarNameCleaner.h>
|
||||
#include <libyul/optimiser/LoadResolver.h>
|
||||
#include <libyul/optimiser/LoopInvariantCodeMotion.h>
|
||||
@@ -200,6 +201,7 @@ map<string, unique_ptr<OptimiserStep>> const& OptimiserSuite::allSteps()
|
||||
LoadResolver,
|
||||
LoopInvariantCodeMotion,
|
||||
RedundantAssignEliminator,
|
||||
RedundantStoreEliminator,
|
||||
ReasoningBasedSimplifier,
|
||||
Rematerialiser,
|
||||
SSAReverser,
|
||||
@@ -241,6 +243,7 @@ map<string, char> const& OptimiserSuite::stepNameToAbbreviationMap()
|
||||
{LoopInvariantCodeMotion::name, 'M'},
|
||||
{ReasoningBasedSimplifier::name, 'R'},
|
||||
{RedundantAssignEliminator::name, 'r'},
|
||||
{RedundantStoreEliminator::name, 'S'},
|
||||
{Rematerialiser::name, 'm'},
|
||||
{SSAReverser::name, 'V'},
|
||||
{SSATransform::name, 'a'},
|
||||
|
||||
Reference in New Issue
Block a user