2017-12-20 12:48:23 +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/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2017-12-20 12:48:23 +00:00
|
|
|
/**
|
|
|
|
* Optimisation stage that removes unused variables and functions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-10-15 09:52:35 +00:00
|
|
|
#include <libyul/optimiser/ASTWalker.h>
|
2019-09-23 14:32:50 +00:00
|
|
|
#include <libyul/optimiser/OptimiserStep.h>
|
2018-10-29 14:12:02 +00:00
|
|
|
#include <libyul/YulString.h>
|
2017-12-20 12:48:23 +00:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::yul
|
2017-12-20 12:48:23 +00:00
|
|
|
{
|
2018-12-20 17:55:32 +00:00
|
|
|
struct Dialect;
|
2019-08-29 13:26:36 +00:00
|
|
|
struct SideEffects;
|
2017-12-20 12:48:23 +00:00
|
|
|
|
|
|
|
/**
|
2018-10-28 11:58:21 +00:00
|
|
|
* Optimisation stage that removes unused variables and functions and also
|
2019-05-13 16:41:37 +00:00
|
|
|
* removes side-effect-free expression statements.
|
2017-12-20 12:48:23 +00:00
|
|
|
*
|
2019-07-15 12:29:29 +00:00
|
|
|
* If msize is used, we cannot remove any statements that access memory.
|
|
|
|
* Because of that, the Unused Pruner should only be invoked on full ASTs,
|
|
|
|
* such that it can check for the presence of msize itself, or
|
|
|
|
* the `_allowMSizeOptimization` needs to be passed.
|
|
|
|
*
|
2017-12-20 12:48:23 +00:00
|
|
|
* Note that this does not remove circular references.
|
|
|
|
*
|
|
|
|
* Prerequisite: Disambiguator
|
|
|
|
*/
|
|
|
|
class UnusedPruner: public ASTModifier
|
|
|
|
{
|
|
|
|
public:
|
2019-09-23 14:32:50 +00:00
|
|
|
static constexpr char const* name{"UnusedPruner"};
|
|
|
|
static void run(OptimiserStepContext& _context, Block& _ast) {
|
|
|
|
UnusedPruner::runUntilStabilisedOnFullAST(_context.dialect, _ast, _context.reservedIdentifiers);
|
|
|
|
}
|
|
|
|
|
2017-12-20 12:48:23 +00:00
|
|
|
|
|
|
|
using ASTModifier::operator();
|
2018-11-16 01:09:04 +00:00
|
|
|
void operator()(Block& _block) override;
|
2017-12-20 12:48:23 +00:00
|
|
|
|
2018-02-05 17:16:08 +00:00
|
|
|
// @returns true iff the code changed in the previous run.
|
2017-12-20 12:48:23 +00:00
|
|
|
bool shouldRunAgain() const { return m_shouldRunAgain; }
|
|
|
|
|
2018-02-05 17:16:08 +00:00
|
|
|
// Run the pruner until the code does not change anymore.
|
2019-05-27 11:42:50 +00:00
|
|
|
static void runUntilStabilised(
|
|
|
|
Dialect const& _dialect,
|
|
|
|
Block& _ast,
|
2019-07-15 12:29:29 +00:00
|
|
|
bool _allowMSizeOptimization,
|
2019-08-29 13:26:36 +00:00
|
|
|
std::map<YulString, SideEffects> const* _functionSideEffects = nullptr,
|
2019-05-27 11:42:50 +00:00
|
|
|
std::set<YulString> const& _externallyUsedFunctions = {}
|
|
|
|
);
|
|
|
|
|
2019-09-23 14:32:50 +00:00
|
|
|
static void run(
|
|
|
|
Dialect const& _dialect,
|
|
|
|
Block& _ast,
|
|
|
|
std::set<YulString> const& _externallyUsedFunctions = {}
|
|
|
|
)
|
|
|
|
{
|
|
|
|
runUntilStabilisedOnFullAST(_dialect, _ast, _externallyUsedFunctions);
|
|
|
|
}
|
|
|
|
|
2019-08-29 13:26:36 +00:00
|
|
|
/// Run the pruner until the code does not change anymore.
|
|
|
|
/// The provided block has to be a full AST.
|
|
|
|
/// The pruner itself determines if msize is used and which user-defined functions
|
|
|
|
/// are side-effect free.
|
|
|
|
static void runUntilStabilisedOnFullAST(
|
2018-12-20 17:55:32 +00:00
|
|
|
Dialect const& _dialect,
|
|
|
|
Block& _ast,
|
|
|
|
std::set<YulString> const& _externallyUsedFunctions = {}
|
|
|
|
);
|
2017-12-20 12:48:23 +00:00
|
|
|
|
2019-02-04 13:01:05 +00:00
|
|
|
// Run the pruner until the code does not change anymore.
|
|
|
|
// Only run on the given function.
|
2019-05-27 11:42:50 +00:00
|
|
|
// @param _allowMSizeOptimization if true, allows to remove instructions
|
|
|
|
// whose only side-effect is a potential change of the return value of
|
|
|
|
// the msize instruction.
|
2019-02-04 13:01:05 +00:00
|
|
|
static void runUntilStabilised(
|
|
|
|
Dialect const& _dialect,
|
|
|
|
FunctionDefinition& _functionDefinition,
|
2019-05-27 11:42:50 +00:00
|
|
|
bool _allowMSizeOptimization,
|
2019-02-04 13:01:05 +00:00
|
|
|
std::set<YulString> const& _externallyUsedFunctions = {}
|
|
|
|
);
|
|
|
|
|
2017-12-20 12:48:23 +00:00
|
|
|
private:
|
2019-09-23 14:32:50 +00:00
|
|
|
UnusedPruner(
|
|
|
|
Dialect const& _dialect,
|
|
|
|
Block& _ast,
|
|
|
|
bool _allowMSizeOptimization,
|
|
|
|
std::map<YulString, SideEffects> const* _functionSideEffects = nullptr,
|
|
|
|
std::set<YulString> const& _externallyUsedFunctions = {}
|
|
|
|
);
|
|
|
|
UnusedPruner(
|
|
|
|
Dialect const& _dialect,
|
|
|
|
FunctionDefinition& _function,
|
|
|
|
bool _allowMSizeOptimization,
|
|
|
|
std::set<YulString> const& _externallyUsedFunctions = {}
|
|
|
|
);
|
|
|
|
|
2018-10-29 14:12:02 +00:00
|
|
|
bool used(YulString _name) const;
|
|
|
|
void subtractReferences(std::map<YulString, size_t> const& _subtrahend);
|
2017-12-20 12:48:23 +00:00
|
|
|
|
2018-12-20 17:55:32 +00:00
|
|
|
Dialect const& m_dialect;
|
2019-05-27 11:42:50 +00:00
|
|
|
bool m_allowMSizeOptimization = false;
|
2019-08-29 13:26:36 +00:00
|
|
|
std::map<YulString, SideEffects> const* m_functionSideEffects = nullptr;
|
2017-12-20 12:48:23 +00:00
|
|
|
bool m_shouldRunAgain = false;
|
2018-10-29 14:12:02 +00:00
|
|
|
std::map<YulString, size_t> m_references;
|
2017-12-20 12:48:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|