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/>.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Generic AST walker.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-11-21 11:43:41 +00:00
|
|
|
#include <libyul/AsmDataForward.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 <boost/variant.hpp>
|
|
|
|
#include <boost/optional.hpp>
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <set>
|
|
|
|
#include <map>
|
|
|
|
|
2018-10-15 09:58:51 +00:00
|
|
|
namespace yul
|
2017-11-30 00:19:49 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generic AST walker.
|
|
|
|
*/
|
|
|
|
class ASTWalker: public boost::static_visitor<>
|
|
|
|
{
|
|
|
|
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&) {}
|
2018-05-09 09:43:14 +00:00
|
|
|
virtual void operator()(Instruction const&) { assertThrow(false, OptimizerException, ""); }
|
2017-11-30 00:19:49 +00:00
|
|
|
virtual void operator()(Identifier const&) {}
|
|
|
|
virtual void operator()(FunctionalInstruction const& _instr);
|
|
|
|
virtual void operator()(FunctionCall const& _funCall);
|
2017-12-08 13:01:22 +00:00
|
|
|
virtual void operator()(ExpressionStatement const& _statement);
|
2018-05-09 09:43:14 +00:00
|
|
|
virtual void operator()(Label const&) { assertThrow(false, OptimizerException, ""); }
|
|
|
|
virtual void operator()(StackAssignment const&) { assertThrow(false, OptimizerException, ""); }
|
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&) {}
|
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).
|
|
|
|
*/
|
|
|
|
class ASTModifier: public boost::static_visitor<>
|
|
|
|
{
|
|
|
|
public:
|
2018-05-02 11:29:16 +00:00
|
|
|
virtual ~ASTModifier() = default;
|
2017-11-30 00:19:49 +00:00
|
|
|
virtual void operator()(Literal&) {}
|
2018-05-09 09:43:14 +00:00
|
|
|
virtual void operator()(Instruction&) { assertThrow(false, OptimizerException, ""); }
|
2017-11-30 00:19:49 +00:00
|
|
|
virtual void operator()(Identifier&) {}
|
|
|
|
virtual void operator()(FunctionalInstruction& _instr);
|
|
|
|
virtual void operator()(FunctionCall& _funCall);
|
2017-12-08 13:01:22 +00:00
|
|
|
virtual void operator()(ExpressionStatement& _statement);
|
2018-05-09 09:43:14 +00:00
|
|
|
virtual void operator()(Label&) { assertThrow(false, OptimizerException, ""); }
|
|
|
|
virtual void operator()(StackAssignment&) { assertThrow(false, OptimizerException, ""); }
|
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&);
|
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
|
|
|
};
|
|
|
|
|
|
|
|
}
|