-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathast.rb
More file actions
305 lines (255 loc) · 4.24 KB
/
ast.rb
File metadata and controls
305 lines (255 loc) · 4.24 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
class Node
end
class Expression < Node
end
class Statement < Node
end
class IntLit < Expression
attr_reader :value
attr_accessor :type
def initialize(value, type)
@value = value
@type = type
end
def to_s
"[#{@type}] #{@value}"
end
end
class Binary < Expression
attr_accessor :type
attr_reader :a_type, :type, :left, :right
def initialize(a_type, type, left, right)
@a_type = a_type
@left = left
@right = right
@type = type
end
def to_s
"[#{@a_type} #{@left.to_s} #{@right.to_s}]"
end
end
class Scale < Expression
attr_reader :tree, :type, :size
def initialize(tree, type, size)
@tree = tree
@type = type
@size = size
end
def to_s
"Scale (to: #{@type}): #{@tree.to_s}"
end
def inspect
to_s
end
end
class Ident < Expression
attr_reader :name, :id
attr_accessor :type
def initialize(name, id, type)
@name = name
@id = id
@type = type
end
def to_s
"Ident #{@name}(#{@type}, #{@id})"
end
def inspect
to_s
end
end
class LVIdent < Expression
attr_reader :name, :id
attr_accessor :type
def initialize(name, id, type)
@name = name
@id = id
@type = type
end
def to_s
"LVIdent #{@name}(#{@type}, #{@id})"
end
def inspect
to_s
end
end
class FuncCall < Expression
attr_accessor :type, :args, :id
def initialize(type, args, id)
@type = type
@args = args
@id = id
end
def to_s
"Call to #{@id} with #{@args.map{|x|x.to_s}}"
end
def inspect
to_s
end
end
class Addr < Expression
attr_accessor :type, :expr
def initialize(type, expr)
@type = type
@expr = expr
end
def to_s
"ADDR [#{@type}]: #{@expr.to_s}"
end
def inspect
to_s
end
end
class Deref < Expression
attr_accessor :type, :expr
def initialize(type, expr)
@type = type
@expr = expr
end
def to_s
"DEREF [#{@type}]: #{@expr.to_s}"
end
def inspect
to_s
end
end
class Statements < Statement
# a simple set of statements
attr_reader :stmts
def initialize(stmts)
@stmts = stmts
end
def to_s
for s in stmts
puts s.to_s
end
""
end
def inspect
to_s
end
end
=begin
class Compoundstatement < Statement
# like `Statements` but enclosed by barces
attr_reader :stmts
def initialize(stmts)
@stmts = stmts
end
def to_s
puts "BLOCK"
for s in stmts
puts s.to_s
end
puts "BLOCK END"
''
end
def inspect
to_s
end
end
=end
class VarDecl < Statement
attr_reader :ident, :id
def initialize(ident, id)
@ident = ident
@id = id
end
def to_s
"Var: #{@ident}"
end
def inspect
to_s
end
end
class FuncDecl < Statement
attr_reader :name, :body, :nameslot
def initialize(name, nameslot, body)
@name = name
@nameslot = nameslot
@body = body
end
def to_s
puts "FUNC #{@name}"
puts body.to_s
puts "F_END #{@name}"
end
def inspect
to_s
end
end
class PrintStmt < Statement
attr_reader :expr
def initialize(expr)
@expr = expr
end
def to_s
"PRINT: " + @expr.to_s
end
def inspect
to_s
end
end
class AssignmentStmt < Statement
attr_reader :left, :right
def initialize(left, right)
@left = left
@right = right
end
def to_s
"Assign: #{@left.to_s} = #{@right.to_s}"
end
def inspect
to_s
end
end
class IfStmt < Statement
attr_reader :cond, :thenBranch, :elseBranch
def initialize(cond, thenBranch, elseBranch)
@cond = cond
@thenBranch = thenBranch
@elseBranch = elseBranch
end
def to_s
puts "IF"
puts "(" + @cond.to_s + ")"
puts "THEN"
puts @thenBranch.to_s
if @elseBranch != nil
puts "ELSE"
puts @elseBranch.to_s
end
end
def inspect
to_s
end
end
class WhileStmt < Statement
attr_reader :cond, :body
def initialize(cond, body)
@cond = cond
@body = body
end
def to_s
puts "WHILE:"
puts @cond.to_s
puts "BODY:"
puts @body.to_s
puts "WHILE_END"
end
def inspect
to_s
end
end
class ReturnStmt < Statement
attr_reader :expr, :functionId
def initialize(expr, functionId)
@expr = expr
@functionId = functionId
end
def to_s
"RETURN " + @expr.to_s
end
def inspect
to_s
end
end