-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathOptimizer.pas
More file actions
428 lines (405 loc) · 11.2 KB
/
Optimizer.pas
File metadata and controls
428 lines (405 loc) · 11.2 KB
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
unit Optimizer;
interface
uses
Classes, Types;
procedure OptimizeDCPUCode(AIn, AOut: TStrings);
function SimpleOptimizeDCPUCode(AIn: string): string;
var
DoOptimization: Boolean = True;
implementation
uses
SysUtils, StrUtils;
procedure SplitLine(ALine: string; var AOp, ATarget, ASource: string);
var
LPos, LPosB: Integer;
begin
LPos := Pos(' ', ALine);
LPosB := Pos(',', ALine);
AOp := Trim(Copy(ALine, 1, LPos-1));
ATarget := Trim(Copy(ALine, LPos+1, LPosB-LPos-1));
ASource := Trim(Copy(ALine, LPosB+1, Length(ALine)-LPosB));
end;
procedure RemoveEmptyLines(ALines: TStrings);
var
i: Integer;
begin
for i := ALines.Count - 1 downto 0 do
begin
if Trim(ALines.Strings[i]) = '' then
begin
ALines.Delete(i);
end;
end;
end;
procedure OptimizePushPop(ALines: TStrings);
var
i, k, m, LCount: Integer;
LOpA, LOpB, LTargetA, LTargetB, LSourceA, LSourceB: string;
begin
for i := 0 to ALines.Count - 2 do
begin
if StartsText('set push', ALines.Strings[i]) then
begin
k := i;
while StartsText('set push', ALines.Strings[k]) do
begin
Inc(k);
end;
LCount := 0;
for m := k-1 downto i do
begin
SplitLine(ALines.Strings[m], LOpA, LTargetA, LSourceA);
SplitLine(ALines.Strings[k+LCount], LOpB, LTargetB, LSourceB);
if SameText(LOpA, 'set') and SameText(LOpB, 'set')
and SameText(LTargetA, 'push') and SameText(LSourceB, 'pop') then
begin
if not SameText(LTargetB, LSourceA) then
begin
ALines.Strings[k+LCount] := 'set ' + LTargetB + ', ' + LSourceA;
end
else
begin
ALines.Strings[k+LCount] := '';
end;
ALines.Strings[m] := '';
end
else
begin
Break;
end;
Inc(LCount);
end;
end;
end;
RemoveEmptyLines(ALines);
end;
procedure OptimizePopPush(ALines: TStrings);
var
i: Integer;
LOpA, LOpB, LTargetA, LTargetB, LSourceA, LSourceB: string;
begin
for i := 0 to ALines.Count-2 do
begin
SplitLine(ALines.Strings[i], LOpA, LTargetA, LSourceA);
SplitLine(ALines.Strings[i+1], LOpB, LTargetB, LSourceB);
if SameText(LSourceA, 'pop') and SameText(LTargetB, 'push') then
begin
if SameText(LTargetA, LSourceB) then
begin
ALines.Strings[i] := '';
ALines.Strings[i+1] := '';
end
else
begin
ALines.Strings[i] := 'set [sp], ' + LTargetB;
ALines.Strings[i+1] := '';
end;
end;
end;
RemoveEmptyLines(ALines);
end;
function IsRegister(AIn: string): Boolean;
var
LReg: string;
begin
LReg := StringReplace(AIn, '[', '', []);
LReg := StringReplace(LReg, ']', '', []);
Result := AnsiIndexText(LReg, ['a', 'b', 'c', 'x', 'y', 'z', 'i', 'j']) >= 0;
end;
procedure OptimizePushNopPop(ALines: TStrings);
var
LOpA, LOpB, LTargetA, LTargetB, LSourceA, LSourceB: string;
i, k: Integer;
LLevel: Integer;
begin
for i := 0 to ALines.Count-1 do
begin
SplitLine(ALines.Strings[i], LOpA, LTargetA, LSourceA);
if SameText(LTargetA, 'push') then
begin
LLevel := 1;
for k := i+1 to ALines.Count-1 do
begin
SplitLine(ALines.Strings[k], LOpB, LTargetB, LSourceB);
if SameText(LOpB, 'jsr') and IsRegister(LSourceA) then
begin
Break;
end;
if SameText(LTargetB, 'push') then
begin
Inc(LLevel);
end;
if SameText(LSourceB, 'pop') then
begin
Dec(LLevel);
if LLevel = 0 then
begin
ALines.Strings[i] := '';
if not SameText(LTargetB, LSourceA) then
begin
ALines.Strings[k] := LOpB + ' ' + LTargetB + ', ' + LSourceA;
end
else
begin
ALines.Strings[k] := '';
end;
Break;
end;
end;
if SameText(LTargetB, LSourceA) then
begin
Break;
end;
end;
end;
end;
RemoveEmptyLines(ALines);
end;
procedure OptimizeMoveOP(ALines: TStrings);
var
LOpA, LOpB, LTargetA, LTargetB, LSourceA, LSourceB: string;
i: Integer;
begin
for i := 0 to ALines.Count - 2 do
begin
SplitLine(ALines.Strings[i], LOpA, LTargetA, LSourceA);
SplitLine(ALines.Strings[i+1], LOpB, LTargetB, LSourceB);
if SameText(LOpA, 'set') and (not SameText(LOpB, 'set')) and (not SameText(LSourceA, 'pop')) then
begin
if SameText(LTargetA, LSourceB) then
begin
ALines.Strings[i] := '';
ALines.Strings[i+1] := LOpB + ' ' + LTargetB + ', ' + LSourceA;
end;
end;
end;
RemoveEmptyLines(ALines);
end;
function IsWriteAbleTarget(AIn: string): Boolean;
begin
Result := not CharInSet(AIn[1], ['0'..'9']);
end;
procedure OptimizeMoveOpMove(ALines: TStrings);
var
LOpA, LOpB, LOpC, LTargetA, LTargetB, LTargetC, LSourceA, LSourceB, LSourceC: string;
i: Integer;
begin
for i := 0 to ALines.Count - 3 do
begin
SplitLine(ALines.Strings[i], LOpA, LTargetA, LSourceA);
SplitLine(ALines.Strings[i+1], LOpB, LTargetB, LSourceB);
SplitLine(ALines.Strings[i+2], LOpC, LTargetC, LSourceC);
if SameText(LOpA, 'set')
and SameText(LOpC, 'set')
and (not SameText(LOpB, 'set'))
and (not SameText(LTargetC, 'push')) then
begin
if SameText(LTargetA, LTargetB) and SameText(LTargetB, LSourceC) then
begin
if SameText(LSourceA, LTargetC) and (not (SameText(LTargetC, LSourceC))) then
begin
ALines.Strings[i] := '';
ALines.Strings[i+1] := LOpB + ' ' + LTargetC + ', ' + LSourceB;
ALines.Strings[i+2] := '';
end
else
begin
if not SameText(LTargetC, LSOurceB) then
begin
ALines.Strings[i] := LOpA + ' ' + LTargetC + ', ' + LSourceA;
ALines.Strings[i+1] := LOpB + ' ' + LTargetC + ', ' + LSourceB;
ALines.Strings[i+2] := '';
end;
end;
end;
end;
end;
RemoveEmptyLines(ALines);
end;
procedure OptimizeMoveMove(ALines: TStrings);
var
LOpA, LOpB, LTargetA, LTargetB, LSourceA, LSourceB: string;
i: Integer;
LSkipNext: Boolean;
begin
LSkipNext := False;
for i := 0 to ALines.Count-2 do
begin
if LSkipNext then
begin
LSkipNext := False;
continue;
end;
SplitLine(ALines.Strings[i], LOpA, LTargetA,LSourceA);
if StartsText('if', LOpA) then
begin
LSkipNext := True;
continue;
end;
SplitLine(ALines.Strings[i+1], LOpB, LTargetB, LSourceB);
if (SameText(LOpA, 'set') and SameText(LOpA, LOpB)
and (SameText(LTargetA, LSourceB) or SameText('['+LTargetA+']', LSourceB)))
and not(StartsText('[', LSourceA) and StartsText('[', LSourceB) and not(StartsText('[', LTargetA)))
then
begin
ALines.Strings[i] := '';
if not SameText(LTargetB, LSourceA) then
begin
ALines.Strings[i+1] := LOpB + ' ' + LTargetB + ', ';
if StartsText('[', LSourceB) then
begin
ALines.Strings[i+1] := ALines.Strings[i+1] + '[' + LSourceA + ']';
end
else
begin
ALines.Strings[i+1] := ALines.Strings[i+1] + LSourceA;
end;
end
else
begin
ALines.Strings[i+1] := '';
end;
end;
end;
RemoveEmptyLines(ALines);
end;
procedure OptimizeMovNopMovOrOp(ALines: TStrings);
var
LOpA, LOpB, LTargetA, LTargetB, LSourceA, LSourceB: string;
i, k: Integer;
LSkipNext: Boolean;
begin
LSkipNext := False;
for i := 0 to ALines.Count - 1 do
begin
if LSkipNext then
begin
LSkipNext := False;
continue;
end;
SplitLine(ALines.Strings[i], LOpA, LTargetA,LSourceA);
if StartsText('if', LOpA) then
begin
LSkipNext := True;
continue;
end;
if SameText(LOpA, 'set') then
begin
for k := i+1 to ALines.Count-1 do
begin
SplitLine(ALines.Strings[k], LOpB, LTargetB, LSourceB);
if SameText(LSourceA, LTargetB)
//the following line prevents a screwup for specific push/pop case(dont know them anymore -.-)
or (SameText(LSourceB, LTargetA) and (SameText(LSourceA, 'pop') or SameText(LTargetB, 'push'))) then
begin
Break;
end;
if SameText(LTargetA, LSourceB)then
begin
ALines.Strings[i] := '';
ALines.Strings[k] := LOpB + ' ' + LTargetB + ', ' + LSourceA;
Break;
end;
if not SameText(LOpB, 'set') then
begin
Break;
end;
end;
end;
end;
RemoveEmptyLines(ALines);
end;
procedure OptimizeMovNopIf(ALines: TStrings);
var
LOpA, LOpB, LTargetA, LTargetB, LSourceA, LSourceB: string;
i, k: Integer;
LSkipNext: Boolean;
begin
LSkipNext := False;
for i := 0 to ALines.Count - 1 do
begin
if LSkipNext then
begin
LSkipNext := False;
continue;
end;
SplitLine(ALines.Strings[i], LOpA, LTargetA,LSourceA);
if StartsText('if', LOpA) then
begin
LSkipNext := True;
continue;
end;
if SameText(LOpA, 'set') then
begin
for k := i+1 to ALines.Count-1 do
begin
SplitLine(ALines.Strings[k], LOpB, LTargetB, LSourceB);
if SameText(LSourceA, LTargetB) or
((not SameText(LOpB, 'set')) and SameText(LTargetA, LTargetB) and (not StartsText('if', LOpB))) then
begin
Break;
end;
if StartsText('if', LOpB) then
begin
if SameText(LTargetA, LSourceB)then
begin
ALines.Strings[i] := '';
ALines.Strings[k] := LOpB + ' ' + LTargetB + ', ' + LSourceA;
Break;
end;
if SameText(LTargetA, LTargetB)then
begin
ALines.Strings[i] := '';
ALines.Strings[k] := LOpB + ' ' + LSourceA + ', ' + LSourceB;
Break;
end;
Break;
end;
end;
end;
end;
RemoveEmptyLines(ALines);
end;
procedure OptimizeDCPUCode(AIn, AOut: TStrings);
var
LLines: TStringList;
LLastCount: Integer;
begin
LLines := TStringList.Create();
LLines.Assign(AIn);
LLastCount := 0;
if DoOptimization then
begin
while LLastCount <> LLines.Count do
begin
LLastCount := LLines.Count;
OptimizePushPop(LLines);
OptimizePopPush(LLines);
OptimizeMoveMove(LLines);
OptimizeMoveOP(LLines);
OptimizeMoveOpMove(LLines);
OptimizePushNopPop(LLines);
OptimizeMovNopMovOrOp(LLines);
OptimizeMovNopIf(LLines);
end;
end;
AOut.Assign(LLines);
LLines.Free;
end;
function SimpleOptimizeDCPUCode(AIn: string): string;
var
LLines: TStringList;
begin
LLines := TStringList.Create();
LLines.Text := AIn;
if DoOptimization then
begin
OptimizePushPop(LLines);
OptimizePopPush(LLines);
OptimizeMoveMove(LLines);
OptimizeMoveOP(LLines);
end;
Result := LLines.Text;
LLines.Free;
end;
end.