-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscript-optimize.cc
217 lines (152 loc) · 5.27 KB
/
script-optimize.cc
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#include <cstring>
#include <map>
#include <set>
#include "script.h"
typedef std::map<struct ScriptExpression *, std::set<struct ScriptExpression **>> script_ExpressionList;
static void
script_CollectExpressions (struct ScriptStatement *statement,
script_ExpressionList &container);
static void
script_CollectExpressions (struct ScriptExpression **expression,
script_ExpressionList &container)
{
container[*expression].insert (expression);
switch ((*expression)->type)
{
case ScriptExpressionStatement:
script_CollectExpressions ((*expression)->lhs.statement, container);
break;
case ScriptExpressionParen:
case ScriptExpressionNegative:
case ScriptExpressionAbsolute:
script_CollectExpressions (&(*expression)->lhs.expression, container);
break;
case ScriptExpressionAdd:
case ScriptExpressionSubtract:
case ScriptExpressionMultiply:
case ScriptExpressionDivide:
script_CollectExpressions (&(*expression)->lhs.expression, container);
script_CollectExpressions (&(*expression)->rhs, container);
break;
case ScriptExpressionNumeric:
case ScriptExpressionString:
case ScriptExpressionBinary:
case ScriptExpressionIdentifier:
/* Nothing to do */
break;
}
}
static void
script_CollectExpressions (struct ScriptStatement *statement,
script_ExpressionList &container)
{
while (statement)
{
struct ScriptParameter *parameter;
for (parameter = statement->parameters;
parameter; parameter = parameter->next)
{
script_CollectExpressions (¶meter->expression, container);
}
statement = statement->next;
}
}
void
SCRIPT_Optimize (struct script_parse_context *context)
{
script_ExpressionList expressions;
bool dirty;
script_CollectExpressions (context->statements, expressions);
do
{
dirty = false;
for (auto lhs = expressions.begin (); lhs != expressions.end (); ++lhs)
{
struct ScriptExpression *a;
if (lhs->second.empty ())
continue;
a = lhs->first;
for (auto rhs = lhs; ++rhs != expressions.end(); )
{
struct ScriptExpression *b;
if (rhs->second.empty ())
continue;
b = rhs->first;
if (a->type != b->type)
continue;
switch (a->type)
{
case ScriptExpressionNumeric:
if (strcmp (a->lhs.numeric, b->lhs.numeric)
|| a->scale != b->scale)
continue;
break;
case ScriptExpressionString:
if (strcmp (a->lhs.string, b->lhs.string))
continue;
break;
case ScriptExpressionBinary:
if (strcmp (a->lhs.binary, b->lhs.binary))
continue;
break;
case ScriptExpressionIdentifier:
if (strcmp (a->lhs.identifier, b->lhs.identifier))
continue;
break;
case ScriptExpressionStatement:
{
struct ScriptParameter *pa, *pb;
if (strcmp (a->lhs.statement->identifier,
b->lhs.statement->identifier))
{
continue;
}
pa = a->lhs.statement->parameters;
pb = b->lhs.statement->parameters;
while (pa && pb)
{
if (strcmp (pa->identifier, pb->identifier))
break;
if (pa->expression != pb->expression)
break;
pa = pa->next;
pb = pb->next;
}
if (pa || pb)
continue;
}
break;
case ScriptExpressionParen:
case ScriptExpressionNegative:
case ScriptExpressionAbsolute:
if (a->lhs.expression != b->lhs.expression)
continue;
break;
case ScriptExpressionAdd:
case ScriptExpressionMultiply:
if (a->lhs.expression != b->lhs.expression
|| a->rhs != b->rhs)
{
if (a->lhs.expression != b->rhs
|| a->rhs != b->lhs.expression)
continue;
}
break;
case ScriptExpressionSubtract:
case ScriptExpressionDivide:
if (a->lhs.expression != b->lhs.expression
|| a->rhs != b->rhs)
continue;
break;
default:
continue;
}
for (auto pointer : rhs->second)
*pointer = a;
rhs->second.clear ();
dirty = true;
}
}
}
while (dirty);
}