solidity/libyul/optimiser/ASTWalker.h

136 lines
3.4 KiB
C
Raw Normal View History

2017-11-30 00:19:49 +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/>.
*/
// SPDX-License-Identifier: GPL-3.0
2017-11-30 00:19:49 +00:00
/**
* Generic AST walker.
*/
#pragma once
#include <libyul/ASTForward.h>
2017-11-30 00:19:49 +00:00
2018-10-15 09:52:35 +00:00
#include <libyul/Exceptions.h>
#include <libyul/YulString.h>
2017-11-30 00:19:49 +00:00
#include <map>
#include <optional>
#include <set>
#include <vector>
2017-11-30 00:19:49 +00:00
2019-12-11 16:31:36 +00:00
namespace solidity::yul
2017-11-30 00:19:49 +00:00
{
/**
* Generic AST walker.
*/
class ASTWalker
2017-11-30 00:19:49 +00:00
{
public:
virtual ~ASTWalker() = default;
2017-11-30 00:19:49 +00:00
virtual void operator()(Literal const&) {}
virtual void operator()(Identifier const&) {}
virtual void operator()(FunctionCall const& _funCall);
2017-12-08 13:01:22 +00:00
virtual void operator()(ExpressionStatement const& _statement);
2017-11-30 00:19:49 +00:00
virtual void operator()(Assignment const& _assignment);
virtual void operator()(VariableDeclaration const& _varDecl);
virtual void operator()(If const& _if);
virtual void operator()(Switch const& _switch);
virtual void operator()(FunctionDefinition const&);
virtual void operator()(ForLoop const&);
virtual void operator()(Break const&) {}
virtual void operator()(Continue const&) {}
2019-10-28 14:25:02 +00:00
virtual void operator()(Leave const&) {}
2017-11-30 00:19:49 +00:00
virtual void operator()(Block const& _block);
virtual void visit(Statement const& _st);
virtual void visit(Expression const& _e);
2017-11-30 00:19:49 +00:00
protected:
template <class T>
void walkVector(T const& _statements)
{
2017-12-20 12:47:51 +00:00
for (auto const& statement: _statements)
visit(statement);
2017-11-30 00:19:49 +00:00
}
};
/**
* Generic AST modifier (i.e. non-const version of ASTWalker).
*/
class ASTModifier
2017-11-30 00:19:49 +00:00
{
public:
virtual ~ASTModifier() = default;
2017-11-30 00:19:49 +00:00
virtual void operator()(Literal&) {}
virtual void operator()(Identifier&) {}
virtual void operator()(FunctionCall& _funCall);
2017-12-08 13:01:22 +00:00
virtual void operator()(ExpressionStatement& _statement);
2017-11-30 00:19:49 +00:00
virtual void operator()(Assignment& _assignment);
virtual void operator()(VariableDeclaration& _varDecl);
virtual void operator()(If& _if);
virtual void operator()(Switch& _switch);
virtual void operator()(FunctionDefinition&);
virtual void operator()(ForLoop&);
virtual void operator()(Break&);
virtual void operator()(Continue&);
2019-10-28 14:25:02 +00:00
virtual void operator()(Leave&);
2017-11-30 00:19:49 +00:00
virtual void operator()(Block& _block);
virtual void visit(Statement& _st);
virtual void visit(Expression& _e);
protected:
template <class T>
void walkVector(T&& _statements)
{
for (auto& st: _statements)
visit(st);
}
2017-11-30 00:19:49 +00:00
};
2021-11-04 14:40:57 +00:00
namespace detail
{
template <
typename Node,
typename Visitor,
typename Base = std::conditional_t<std::is_const_v<Node>, ASTWalker, ASTModifier>
>
struct ForEach: Base
{
2021-11-05 12:03:13 +00:00
ForEach(Visitor& _visitor): visitor(_visitor) {}
2021-11-04 14:40:57 +00:00
using Base::operator();
void operator()(Node& _node) override
{
visitor(_node);
Base::operator()(_node);
}
2021-11-05 12:03:13 +00:00
Visitor& visitor;
2021-11-04 14:40:57 +00:00
};
}
/// Helper function that traverses the AST and calls the visitor for each
/// node of a specific type.
template<typename Node, typename Entry, typename Visitor>
void forEach(Entry&& _entry, Visitor&& _visitor)
{
2021-11-05 12:03:13 +00:00
detail::ForEach<Node, Visitor&>{_visitor}(_entry);
2021-11-04 14:40:57 +00:00
}
2017-11-30 00:19:49 +00:00
}