aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/analysis/ControlFlowBuilder.h
blob: f196e5fc7f1e0b343df69e8344c4e79fd43b586e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*
    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/>.
*/

#pragma once

#include <libsolidity/analysis/ControlFlowGraph.h>
#include <libsolidity/ast/AST.h>
#include <libsolidity/ast/ASTVisitor.h>

#include <array>
#include <memory>

namespace dev {
namespace solidity {

/** Helper class that builds the control flow of a function or modifier.
 * Modifiers are not yet applied to the functions. This is done in a second
 * step in the CFG class.
 */
class ControlFlowBuilder: private ASTConstVisitor
{
public:
    static std::unique_ptr<FunctionFlow> createFunctionFlow(
        CFG::NodeContainer& _nodeContainer,
        FunctionDefinition const& _function
    );

private:
    explicit ControlFlowBuilder(CFG::NodeContainer& _nodeContainer, FunctionFlow const& _functionFlow);

    // Visits for constructing the control flow.
    bool visit(BinaryOperation const& _operation) override;
    bool visit(Conditional const& _conditional) override;
    bool visit(IfStatement const& _ifStatement) override;
    bool visit(ForStatement const& _forStatement) override;
    bool visit(WhileStatement const& _whileStatement) override;
    bool visit(Break const&) override;
    bool visit(Continue const&) override;
    bool visit(Throw const&) override;
    bool visit(PlaceholderStatement const&) override;
    bool visit(FunctionCall const& _functionCall) override;
    bool visit(ModifierInvocation const& _modifierInvocation) override;

    // Visits for constructing the control flow as well as filling variable occurrences.
    bool visit(FunctionDefinition const& _functionDefinition) override;
    bool visit(Return const& _return) override;

    // Visits for filling variable occurrences.
    bool visit(FunctionTypeName const& _functionTypeName) override;
    bool visit(InlineAssembly const& _inlineAssembly) override;
    bool visit(VariableDeclaration const& _variableDeclaration) override;
    bool visit(VariableDeclarationStatement const& _variableDeclarationStatement) override;
    bool visit(Identifier const& _identifier) override;

    /// Appends the control flow of @a _node to the current control flow.
    void appendControlFlow(ASTNode const& _node);

    /// Starts at @a _entry and parses the control flow of @a _node.
    /// @returns The node at which the parsed control flow ends.
    /// m_currentNode is not affected (it is saved and restored).
    CFGNode* createFlow(CFGNode* _entry, ASTNode const& _node);

    /// Creates an arc from @a _from to @a _to.
    static void connect(CFGNode* _from, CFGNode* _to);


private:

    /// Splits the control flow starting at the current node into n paths.
    /// m_currentNode is set to nullptr and has to be set manually or
    /// using mergeFlow later.
    template<size_t n>
    std::array<CFGNode*, n> splitFlow()
    {
        std::array<CFGNode*, n> result;
        for (auto& node: result)
        {
            node = m_nodeContainer.newNode();
            connect(m_currentNode, node);
        }
        m_currentNode = nullptr;
        return result;
    }

    /// Merges the control flow of @a _nodes to @a _endNode.
    /// If @a _endNode is nullptr, a new node is creates and used as end node.
    /// Sets the merge destination as current node.
    /// Note: @a _endNode may be one of the nodes in @a _nodes.
    template<size_t n>
    void mergeFlow(std::array<CFGNode*, n> const& _nodes, CFGNode* _endNode = nullptr)
    {
        CFGNode* mergeDestination = (_endNode == nullptr) ? m_nodeContainer.newNode() : _endNode;
        for (auto& node: _nodes)
            if (node != mergeDestination)
                connect(node, mergeDestination);
        m_currentNode = mergeDestination;
    }

    CFGNode* newLabel();
    CFGNode* createLabelHere();
    void placeAndConnectLabel(CFGNode *_node);

    CFG::NodeContainer& m_nodeContainer;

    CFGNode* m_currentNode = nullptr;
    CFGNode* m_returnNode = nullptr;
    CFGNode* m_revertNode = nullptr;

    /// The current jump destination of break Statements.
    CFGNode* m_breakJump = nullptr;
    /// The current jump destination of continue Statements.
    CFGNode* m_continueJump = nullptr;

    CFGNode* m_placeholderEntry = nullptr;
    CFGNode* m_placeholderExit = nullptr;

    /// Helper class that replaces the break and continue jump destinations for the
    /// current scope and restores the originals at the end of the scope.
    class BreakContinueScope
    {
    public:
        BreakContinueScope(ControlFlowBuilder& _parser, CFGNode* _breakJump, CFGNode* _continueJump);
        ~BreakContinueScope();
    private:
        ControlFlowBuilder& m_parser;
        CFGNode* m_origBreakJump;
        CFGNode* m_origContinueJump;
    };
};

}
}