solidity/libyul/optimiser/CallGraphGenerator.h

70 lines
1.9 KiB
C
Raw Normal View History

2019-08-06 10:46:16 +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/>.
*/
/**
* Specific AST walker that generates the call graph.
*/
#pragma once
#include <libyul/optimiser/ASTWalker.h>
#include <libsolutil/InvertibleMap.h>
2019-08-06 10:46:16 +00:00
#include <map>
#include <optional>
#include <set>
2019-08-06 10:46:16 +00:00
2019-12-11 16:31:36 +00:00
namespace solidity::yul
2019-08-06 10:46:16 +00:00
{
2019-12-02 11:33:24 +00:00
struct CallGraph
{
std::map<YulString, std::set<YulString>> functionCalls;
std::set<YulString> functionsWithLoops;
/// @returns the set of functions contained in cycles in the call graph, i.e.
/// functions that are part of a (mutual) recursion.
/// Note that this does not include functions that merely call recursive functions.
std::set<YulString> recursiveFunctions() const;
2019-12-02 11:33:24 +00:00
};
2019-08-06 10:46:16 +00:00
/**
* Specific AST walker that generates the call graph.
*
2019-12-02 11:33:24 +00:00
* It also generates information about which functions contain for loops.
*
2019-08-06 10:46:16 +00:00
* The outermost (non-function) context is denoted by the empty string.
*/
class CallGraphGenerator: public ASTWalker
{
public:
2019-12-02 11:33:24 +00:00
static CallGraph callGraph(Block const& _ast);
2019-08-06 10:46:16 +00:00
using ASTWalker::operator();
void operator()(FunctionCall const& _functionCall) override;
2019-12-02 11:33:24 +00:00
void operator()(ForLoop const& _forLoop) override;
2019-08-06 10:46:16 +00:00
void operator()(FunctionDefinition const& _functionDefinition) override;
private:
2019-08-13 14:25:12 +00:00
CallGraphGenerator();
2019-12-02 11:33:24 +00:00
CallGraph m_callGraph;
2019-08-06 10:46:16 +00:00
/// The name of the function we are currently visiting during traversal.
YulString m_currentFunction;
};
}