aboutsummaryrefslogtreecommitdiffstats
path: root/libyul/AsmAnalysis.h
blob: edca5b50b8cf1636f269e0dad315be17e4936f55 (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
/*
    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/>.
*/
/**
 * Analysis part of inline assembly.
 */

#pragma once

#include <liblangutil/Exceptions.h>
#include <liblangutil/EVMVersion.h>

#include <libyul/AsmScope.h>

#include <libyul/backends/evm/AbstractAssembly.h>

#include <libyul/AsmDataForward.h>

#include <boost/variant.hpp>
#include <boost/optional.hpp>

#include <functional>
#include <memory>

namespace langutil
{
class ErrorReporter;
struct SourceLocation;
}

namespace dev
{
namespace solidity
{
namespace assembly
{

struct AsmAnalysisInfo;

/**
 * Performs the full analysis stage, calls the ScopeFiller internally, then resolves
 * references and performs other checks.
 * If all these checks pass, code generation should not throw errors.
 */
class AsmAnalyzer: public boost::static_visitor<bool>
{
public:
    explicit AsmAnalyzer(
        AsmAnalysisInfo& _analysisInfo,
        langutil::ErrorReporter& _errorReporter,
        EVMVersion _evmVersion,
        boost::optional<langutil::Error::Type> _errorTypeForLoose,
        AsmFlavour _flavour = AsmFlavour::Loose,
        yul::ExternalIdentifierAccess::Resolver const& _resolver = yul::ExternalIdentifierAccess::Resolver()
    ):
        m_resolver(_resolver),
        m_info(_analysisInfo),
        m_errorReporter(_errorReporter),
        m_evmVersion(_evmVersion),
        m_flavour(_flavour),
        m_errorTypeForLoose(_errorTypeForLoose)
    {}

    bool analyze(assembly::Block const& _block);

    bool operator()(assembly::Instruction const&);
    bool operator()(assembly::Literal const& _literal);
    bool operator()(assembly::Identifier const&);
    bool operator()(assembly::FunctionalInstruction const& _functionalInstruction);
    bool operator()(assembly::Label const& _label);
    bool operator()(assembly::ExpressionStatement const&);
    bool operator()(assembly::StackAssignment const&);
    bool operator()(assembly::Assignment const& _assignment);
    bool operator()(assembly::VariableDeclaration const& _variableDeclaration);
    bool operator()(assembly::FunctionDefinition const& _functionDefinition);
    bool operator()(assembly::FunctionCall const& _functionCall);
    bool operator()(assembly::If const& _if);
    bool operator()(assembly::Switch const& _switch);
    bool operator()(assembly::ForLoop const& _forLoop);
    bool operator()(assembly::Block const& _block);

private:
    /// Visits the statement and expects it to deposit one item onto the stack.
    bool expectExpression(Expression const& _expr);
    bool expectDeposit(int _deposit, int _oldHeight, langutil::SourceLocation const& _location);

    /// Verifies that a variable to be assigned to exists and has the same size
    /// as the value, @a _valueSize, unless that is equal to -1.
    bool checkAssignment(assembly::Identifier const& _assignment, size_t _valueSize = size_t(-1));

    Scope& scope(assembly::Block const* _block);
    void expectValidType(std::string const& type, langutil::SourceLocation const& _location);
    void warnOnInstructions(solidity::Instruction _instr, langutil::SourceLocation const& _location);

    /// Depending on @a m_flavour and @a m_errorTypeForLoose, throws an internal compiler
    /// exception (if the flavour is not Loose), reports an error/warning
    /// (if m_errorTypeForLoose is set) or does nothing.
    void checkLooseFeature(langutil::SourceLocation const& _location, std::string const& _description);

    int m_stackHeight = 0;
    yul::ExternalIdentifierAccess::Resolver m_resolver;
    Scope* m_currentScope = nullptr;
    /// Variables that are active at the current point in assembly (as opposed to
    /// "part of the scope but not yet declared")
    std::set<Scope::Variable const*> m_activeVariables;
    AsmAnalysisInfo& m_info;
    langutil::ErrorReporter& m_errorReporter;
    EVMVersion m_evmVersion;
    AsmFlavour m_flavour = AsmFlavour::Loose;
    boost::optional<langutil::Error::Type> m_errorTypeForLoose;
};

}
}
}