aboutsummaryrefslogtreecommitdiffstats
path: root/libyul/optimiser/ASTCopier.cpp
blob: d0c8dd4562dd89326c1e9b543eeaab628594fca0 (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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/*
    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/>.
*/
/**
 * Creates an independent copy of an AST, renaming identifiers to be unique.
 */

#include <libyul/optimiser/ASTCopier.h>

#include <libyul/Exceptions.h>

#include <libsolidity/inlineasm/AsmData.h>

#include <libdevcore/Common.h>

using namespace std;
using namespace dev;
using namespace dev::yul;

Statement ASTCopier::operator()(Instruction const&)
{
    assertThrow(false, OptimizerException, "Invalid operation.");
    return {};
}

Statement ASTCopier::operator()(ExpressionStatement const& _statement)
{
    return ExpressionStatement{ _statement.location, translate(_statement.expression) };
}

Statement ASTCopier::operator()(VariableDeclaration const& _varDecl)
{
    return VariableDeclaration{
        _varDecl.location,
        translateVector(_varDecl.variables),
        translate(_varDecl.value)
    };
}

Statement ASTCopier::operator()(Assignment const& _assignment)
{
    return Assignment{
        _assignment.location,
        translateVector(_assignment.variableNames),
        translate(_assignment.value)
    };
}

Statement ASTCopier::operator()(StackAssignment const&)
{
    assertThrow(false, OptimizerException, "Invalid operation.");
    return {};
}

Statement ASTCopier::operator()(Label const&)
{
    assertThrow(false, OptimizerException, "Invalid operation.");
    return {};
}

Expression ASTCopier::operator()(FunctionCall const& _call)
{
    return FunctionCall{
        _call.location,
        translate(_call.functionName),
        translateVector(_call.arguments)
    };
}

Expression ASTCopier::operator()(FunctionalInstruction const& _instruction)
{
    return FunctionalInstruction{
        _instruction.location,
        _instruction.instruction,
        translateVector(_instruction.arguments)
    };
}

Expression ASTCopier::operator()(Identifier const& _identifier)
{
    return Identifier{_identifier.location, translateIdentifier(_identifier.name)};
}

Expression ASTCopier::operator()(Literal const& _literal)
{
    return translate(_literal);
}

Statement ASTCopier::operator()(If const& _if)
{
    return If{_if.location, translate(_if.condition), translate(_if.body)};
}

Statement ASTCopier::operator()(Switch const& _switch)
{
    return Switch{_switch.location, translate(_switch.expression), translateVector(_switch.cases)};
}

Statement ASTCopier::operator()(FunctionDefinition const& _function)
{
    YulString translatedName = translateIdentifier(_function.name);

    enterFunction(_function);
    ScopeGuard g([&]() { this->leaveFunction(_function); });

    return FunctionDefinition{
        _function.location,
        translatedName,
        translateVector(_function.parameters),
        translateVector(_function.returnVariables),
        translate(_function.body)
    };
}

Statement ASTCopier::operator()(ForLoop const& _forLoop)
{
    enterScope(_forLoop.pre);
    ScopeGuard g([&]() { this->leaveScope(_forLoop.pre); });

    return ForLoop{
        _forLoop.location,
        translate(_forLoop.pre),
        translate(_forLoop.condition),
        translate(_forLoop.post),
        translate(_forLoop.body)
    };
}

Statement ASTCopier::operator ()(Block const& _block)
{
    return translate(_block);
}

Expression ASTCopier::translate(Expression const& _expression)
{
    return _expression.apply_visitor(static_cast<ExpressionCopier&>(*this));
}

Statement ASTCopier::translate(Statement const& _statement)
{
    return _statement.apply_visitor(static_cast<StatementCopier&>(*this));
}

Block ASTCopier::translate(Block const& _block)
{
    enterScope(_block);
    ScopeGuard g([&]() { this->leaveScope(_block); });

    return Block{_block.location, translateVector(_block.statements)};
}

Case ASTCopier::translate(Case const& _case)
{
    return Case{_case.location, translate(_case.value), translate(_case.body)};
}

Identifier ASTCopier::translate(Identifier const& _identifier)
{
    return Identifier{_identifier.location, translateIdentifier(_identifier.name)};
}

Literal ASTCopier::translate(Literal const& _literal)
{
    return _literal;
}

TypedName ASTCopier::translate(TypedName const& _typedName)
{
    return TypedName{_typedName.location, translateIdentifier(_typedName.name), _typedName.type};
}