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/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2017-11-30 00:19:49 +00:00
|
|
|
/**
|
|
|
|
* Generic AST walker.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-10-29 14:00:27 +00:00
|
|
|
#include <libyul/ASTForward.h>
|
2017-11-30 00:19:49 +00:00
|
|
|
|
2018-10-15 09:52:35 +00:00
|
|
|
#include <libyul/Exceptions.h>
|
2018-10-29 14:12:02 +00:00
|
|
|
#include <libyul/YulString.h>
|
2017-11-30 00:19:49 +00:00
|
|
|
|
|
|
|
#include <map>
|
2019-10-28 10:39:30 +00:00
|
|
|
#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.
|
|
|
|
*/
|
2019-11-19 15:42:49 +00:00
|
|
|
class ASTWalker
|
2017-11-30 00:19:49 +00:00
|
|
|
{
|
|
|
|
public:
|
2018-05-02 11:29:16 +00:00
|
|
|
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&);
|
2019-03-04 14:38:05 +00:00
|
|
|
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);
|
|
|
|
|
2018-09-25 02:47:25 +00:00
|
|
|
virtual void visit(Statement const& _st);
|
|
|
|
virtual void visit(Expression const& _e);
|
2017-12-20 13:12:52 +00:00
|
|
|
|
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).
|
|
|
|
*/
|
2019-11-19 15:42:49 +00:00
|
|
|
class ASTModifier
|
2017-11-30 00:19:49 +00:00
|
|
|
{
|
|
|
|
public:
|
2018-05-02 11:29:16 +00:00
|
|
|
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&);
|
2019-03-04 14:38:05 +00:00
|
|
|
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);
|
|
|
|
|
2018-09-25 02:47:25 +00:00
|
|
|
virtual void visit(Statement& _st);
|
|
|
|
virtual void visit(Expression& _e);
|
2017-12-20 13:12:52 +00:00
|
|
|
|
|
|
|
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
|
|
|
}
|