2017-12-20 12:46:43 +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:46:43 +00:00
|
|
|
/**
|
|
|
|
* Small useful snippets for the optimiser.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/Common.h>
|
2020-10-29 14:00:27 +00:00
|
|
|
#include <libyul/ASTForward.h>
|
2020-07-06 17:25:12 +00:00
|
|
|
#include <libyul/Dialect.h>
|
|
|
|
#include <libyul/YulString.h>
|
2021-11-11 14:54:38 +00:00
|
|
|
#include <libyul/optimiser/ASTWalker.h>
|
2017-12-20 12:46:43 +00:00
|
|
|
|
2021-04-22 10:46:25 +00:00
|
|
|
#include <optional>
|
|
|
|
|
|
|
|
namespace solidity::evmasm
|
|
|
|
{
|
|
|
|
enum class Instruction: uint8_t;
|
|
|
|
}
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::yul
|
2017-12-20 12:46:43 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
/// Removes statements that are just empty blocks (non-recursive).
|
2021-11-09 12:25:00 +00:00
|
|
|
/// If this is run on the outermost block, the FunctionGrouper should be run afterwards to keep
|
|
|
|
/// the canonical form.
|
2017-12-20 12:46:43 +00:00
|
|
|
void removeEmptyBlocks(Block& _block);
|
|
|
|
|
2020-07-06 17:25:12 +00:00
|
|
|
/// Returns true if a given literal can not be used as an identifier.
|
|
|
|
/// This includes Yul keywords and builtins of the given dialect.
|
|
|
|
bool isRestrictedIdentifier(Dialect const& _dialect, YulString const& _identifier);
|
|
|
|
|
2021-04-22 10:46:25 +00:00
|
|
|
/// Helper function that returns the instruction, if the `_name` is a BuiltinFunction
|
|
|
|
std::optional<evmasm::Instruction> toEVMInstruction(Dialect const& _dialect, YulString const& _name);
|
|
|
|
|
2021-11-11 14:54:38 +00:00
|
|
|
class StatementRemover: public ASTModifier
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit StatementRemover(std::set<Statement const*> const& _toRemove): m_toRemove(_toRemove) {}
|
|
|
|
|
|
|
|
void operator()(Block& _block) override;
|
|
|
|
private:
|
|
|
|
std::set<Statement const*> const& m_toRemove;
|
|
|
|
};
|
|
|
|
|
2017-12-20 12:46:43 +00:00
|
|
|
}
|