-
Notifications
You must be signed in to change notification settings - Fork 3
/
astutils.pas
216 lines (186 loc) · 5.74 KB
/
astutils.pas
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
unit astutils;
{$ifdef FPC}
{$mode delphi}
{$endif}
interface
uses
Classes, SysUtils
, expression;
type
{ TASTPrinter }
TASTPrinter = class(IExpressionVisitor)
private
FRPN: boolean;
public
function VisitLit(expr: TLiteralExpression): TObject;
function VisitUn(expr: TUnaryExpression): TObject;
function VisitBin(expr: TBinaryExpression): TObject;
function VisitLogic(expr: TLogicalExpression): TObject;
function VisitGroup(expr: TGroupingExpression): TObject;
function VisitVar(expr: TVariableExpression): TObject;
function VisitAssign(expr: TAssignmentExpression): TObject;
function Print(expr: TExpression; rpn: boolean = false): string;
end;
{ TASTDOTMaker }
TASTDOTMaker = class(IExpressionVisitor)
private
FNodeNum: integer;
FDOT: TStringList;
public
function VisitLit(expr: TLiteralExpression): TObject;
function VisitUn(expr: TUnaryExpression): TObject;
function VisitBin(expr: TBinaryExpression): TObject;
function VisitLogic(expr: TLogicalExpression): TObject;
function VisitGroup(expr: TGroupingExpression): TObject;
function VisitVar(expr: TVariableExpression): TObject;
function VisitAssign(expr: TAssignmentExpression): TObject;
function Make(expr: TExpression): TStringList;
end;
implementation
uses ptypes;
{ TASTDOTMaker }
function TASTDOTMaker.VisitLit(expr: TLiteralExpression): TObject;
begin
Result := TObject(self.FNodeNum);
self.FDOT.Add(Format('%d [label="%s", shape=rectangle]',
[integer(Result), ObjToStr(expr.Value)]));
end;
function TASTDOTMaker.VisitUn(expr: TUnaryExpression): TObject;
begin
Result := TObject(self.FNodeNum);
self.FDOT.Add(Format('%d [label="%s"]', [integer(Result), expr.op.lexeme]));
Inc(self.FNodeNum);
self.FDOT.Add(Format('%d -> %d', [integer(expr.right.Accept(self)),
integer(Result)]));
end;
function TASTDOTMaker.VisitBin(expr: TBinaryExpression): TObject;
begin
Result := TObject(self.FNodeNum);
self.FDOT.Add(Format('%d [label="%s"]', [integer(Result), expr.op.lexeme]));
Inc(self.FNodeNum);
self.FDOT.Add(Format('%d -> %d', [integer(expr.left.Accept(self)),
integer(Result)]));
Inc(self.FNodeNum);
self.FDOT.Add(Format('%d -> %d', [integer(expr.right.Accept(self)),
integer(Result)]));
end;
function TASTDOTMaker.VisitLogic(expr: TLogicalExpression): TObject;
begin
Result := self.VisitBin(expr);
end;
function TASTDOTMaker.VisitGroup(expr: TGroupingExpression): TObject;
begin
Result := TObject(self.FNodeNum);
self.FDOT.Add(Format('%d [label="group"]', [integer(Result)]));
Inc(self.FNodeNum);
self.FDOT.Add(Format('%d -> %d', [integer(expr.expr.Accept(self)),
integer(Result)]));
end;
function TASTDOTMaker.VisitVar(expr: TVariableExpression): TObject;
begin
Result := TObject(self.FNodeNum);
self.FDOT.Add(Format('%d [label="%s", shape=rectangle]',
[integer(Result), expr.varName.lexeme]));
end;
function TASTDOTMaker.VisitAssign(expr: TAssignmentExpression): TObject;
begin
Result := TObject(self.FNodeNum);
self.FDOT.Add(Format('%d [label="assign"]', [integer(Result)]));
Inc(self.FNodeNum);
self.FDOT.Add(Format('%d [label="%s"]', [self.FNodeNum, expr.varName.lexeme]));
self.FDOT.Add(Format('%d -> %d', [self.FNodeNum, integer(Result)]));
Inc(self.FNodeNum);
self.FDOT.Add(Format('%d -> %d', [integer(expr.value.Accept(self)),
integer(Result)]));
end;
function TASTDOTMaker.Make(expr: TExpression): TStringList;
begin
self.FNodeNum := 0;
self.FDOT := TStringList.Create;
self.FDOT.Add('digraph astgraph {');
self.FDOT.Add('node [shape=circle, fontsize=10, fontname="Courier"];');
self.FDOT.Add('rankdir = BT;');
expr.Accept(self);
self.FDOT.Add('}');
Result := self.FDOT;
end;
{ TASTPrinter }
function TASTPrinter.VisitLit(expr: TLiteralExpression): TObject;
begin
if expr.Value is TLoxStr then
Result := TLoxStr.Create(Format('"%s"', [TLoxStr(expr.Value).value]))
else
Result := TLoxStr.Create(ObjToStr(expr.Value));
end;
function TASTPrinter.VisitUn(expr: TUnaryExpression): TObject;
var
s: string;
o: TLoxStr;
begin
o := TLoxStr(expr.right.Accept(self));
if self.FRPN then
s := Format('%s [unary]%s', [o.Value, expr.op.lexeme])
else
s := Format('(%s %s)', [expr.op.lexeme, o.Value]);
FreeAndNil(o);
Result := TLoxStr.Create(s);
end;
function TASTPrinter.VisitBin(expr: TBinaryExpression): TObject;
var
s: string;
l, r: TLoxStr;
begin
l := TLoxStr(expr.left.Accept(self));
r := TLoxStr(expr.right.Accept(self));
if self.FRPN then
s := Format('%s %s %s', [l.Value, r.Value, expr.op.lexeme])
else
s := Format('(%s %s %s)', [expr.op.lexeme, l.Value, r.Value]);
FreeAndNil(l);
FreeAndNil(r);
Result := TLoxStr.Create(s);
end;
function TASTPrinter.VisitLogic(expr: TLogicalExpression): TObject;
begin
Result := self.VisitBin(expr);
end;
function TASTPrinter.VisitGroup(expr: TGroupingExpression): TObject;
var
s: string;
e: TLoxStr;
begin
e := TLoxStr(expr.expr.Accept(self));
if self.FRPN then
s := Format('%s', [e.Value])
else
s := Format('(group %s)', [e.Value]);
FreeAndNil(e);
Result := TLoxStr.Create(s);
end;
function TASTPrinter.VisitVar(expr: TVariableExpression): TObject;
begin
Result := TLoxStr.Create(expr.varName.lexeme);
end;
function TASTPrinter.VisitAssign(expr: TAssignmentExpression): TObject;
var
s: string;
r: TLoxStr;
begin
r := TLoxStr(expr.value.Accept(self));
if self.FRPN then
s := Format('%s %s assign', [expr.varName.lexeme, r.Value])
else
s := Format('(assign %s %s)', [expr.varName.lexeme, r.Value]);
FreeAndNil(r);
Result := TLoxStr.Create(s);
end;
function TASTPrinter.Print(expr: TExpression; rpn: boolean = false): string;
var
o: TLoxStr;
begin
self.FRPN := rpn;
o := TLoxStr(expr.Accept(self));
Result := o.Value;
FreeAndNil(o);
end;
end.