-
Notifications
You must be signed in to change notification settings - Fork 6k
/
Copy pathAsmAnalysis.h
148 lines (126 loc) · 4.89 KB
/
AsmAnalysis.h
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
147
148
/*
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/>.
*/
// SPDX-License-Identifier: GPL-3.0
/**
* Analysis part of inline assembly.
*/
#pragma once
#include <liblangutil/Exceptions.h>
#include <liblangutil/EVMVersion.h>
#include <libyul/ASTForward.h>
#include <libyul/Dialect.h>
#include <libyul/Scope.h>
#include <libyul/backends/evm/AbstractAssembly.h>
#include <libyul/backends/evm/EVMDialect.h>
#include <libyul/Object.h>
#include <functional>
#include <list>
#include <memory>
#include <optional>
#include <utility>
namespace solidity::langutil
{
class ErrorReporter;
struct SourceLocation;
}
namespace solidity::yul
{
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:
explicit AsmAnalyzer(
AsmAnalysisInfo& _analysisInfo,
langutil::ErrorReporter& _errorReporter,
Dialect const& _dialect,
ExternalIdentifierAccess::Resolver _resolver = ExternalIdentifierAccess::Resolver(),
Object::Structure _objectStructure = {}
):
m_resolver(std::move(_resolver)),
m_info(_analysisInfo),
m_errorReporter(_errorReporter),
m_dialect(_dialect),
m_objectStructure(std::move(_objectStructure))
{
if (EVMDialect const* evmDialect = dynamic_cast<EVMDialect const*>(&m_dialect))
{
m_evmVersion = evmDialect->evmVersion();
m_eofVersion = evmDialect->eofVersion();
}
}
bool analyze(Block const& _block);
/// Performs analysis on the outermost code of the given object and returns the analysis info.
/// Asserts on failure.
static AsmAnalysisInfo analyzeStrictAssertCorrect(Object const& _object);
static AsmAnalysisInfo analyzeStrictAssertCorrect(
Dialect const& _dialect,
Block const& _astRoot,
Object::Structure _objectStructure
);
static AsmAnalysisInfo analyzeStrictAssertCorrect(
Dialect const& _dialect,
AST const& _ast,
Object::Structure _objectStructure
);
size_t operator()(Literal const& _literal);
size_t operator()(Identifier const&);
void operator()(ExpressionStatement const&);
void operator()(Assignment const& _assignment);
void operator()(VariableDeclaration const& _variableDeclaration);
void operator()(FunctionDefinition const& _functionDefinition);
size_t operator()(FunctionCall const& _functionCall);
void operator()(If const& _if);
void operator()(Switch const& _switch);
void operator()(ForLoop const& _forLoop);
void operator()(Break const&) const { }
void operator()(Continue const&) const { }
void operator()(Leave const&) const { }
void operator()(Block const& _block);
/// @returns the worst side effects encountered during analysis (including within defined functions).
SideEffects const& sideEffects() const { return m_sideEffects; }
private:
/// Visits the expression, expects that it evaluates to exactly one value.
/// Reports errors otherwise.
void expectExpression(Expression const& _expr);
static void expectUnlimitedStringLiteral(Literal const& _literal);
/// Verifies that a variable to be assigned to exists and can be assigned to.
void checkAssignment(Identifier const& _variable);
Scope& scope(Block const* _block);
void expectValidIdentifier(YulName _identifier, langutil::SourceLocation const& _location);
bool validateInstructions(evmasm::Instruction _instr, langutil::SourceLocation const& _location);
bool validateInstructions(std::string_view _instrIdentifier, langutil::SourceLocation const& _location);
bool validateInstructions(FunctionCall const& _functionCall);
void validateObjectStructure(langutil::SourceLocation const& _astRootLocation);
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;
langutil::EVMVersion m_evmVersion;
std::optional<uint8_t> m_eofVersion;
Dialect const& m_dialect;
/// Names of data objects to be referenced by builtin functions with literal arguments.
Object::Structure m_objectStructure;
ForLoop const* m_currentForLoop = nullptr;
/// Worst side effects encountered during analysis (including within defined functions).
SideEffects m_sideEffects;
};
}