astbuilder: Adding new nodes makers(assert, method, or, and,...)
[nit.git] / src / astbuilder.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # Instantiation and transformation of semantic nodes in the AST of expressions and statements
16 module astbuilder
17
18 intrude import semantize::typing
19 intrude import literal
20 intrude import parser
21 intrude import semantize::scope
22
23 # General factory to build semantic nodes in the AST of expressions
24 class ASTBuilder
25 # The module used as reference for the building
26 # It is used to gather types and other stuff
27 var mmodule: MModule
28
29 # The anchor used for some mechanism relying on types
30 var anchor: nullable MClassType
31
32 # Check mmodule to avoid a new instantiation of ASTBuilder
33 fun check_mmodule(mmodule: MModule)
34 do
35 if self.mmodule != mmodule then self.mmodule = mmodule
36 end
37
38 # Make a new Int literal
39 fun make_int(value: Int): AIntegerExpr
40 do
41 return new AIntegerExpr.make(value, mmodule.int_type)
42 end
43
44 # Make a new instantiation
45 fun make_new(callsite: CallSite, args: nullable Array[AExpr]): ANewExpr
46 do
47 return new ANewExpr.make(callsite, args)
48 end
49
50 # Make a new message send
51 fun make_call(recv: AExpr, callsite: CallSite, args: nullable Array[AExpr]): ACallExpr
52 do
53 return new ACallExpr.make(recv, callsite, args)
54 end
55
56 # Make a new, empty, sequence of statements
57 fun make_block: ABlockExpr
58 do
59 return new ABlockExpr.make
60 end
61
62 # Make a new, empty, loop of statements
63 fun make_loop: ALoopExpr
64 do
65 return new ALoopExpr.make
66 end
67
68 # Make a new variable read
69 fun make_var_read(variable: Variable, mtype: MType): AVarExpr
70 do
71 return new AVarExpr.make(variable, mtype)
72 end
73
74 # Make a new variable assignment
75 fun make_var_assign(variable: Variable, value: AExpr): AVarAssignExpr
76 do
77 return new AVarAssignExpr.make(variable, value)
78 end
79
80 # Make a new attribute read
81 fun make_attr_read(recv: AExpr, attribute: MAttribute): AAttrExpr
82 do
83 var mtype = attribute.intro.static_mtype.resolve_for(recv.mtype.as(not null), anchor, mmodule, true)
84 return new AAttrExpr.make(recv, attribute, mtype)
85 end
86
87 # Make a new attribute assignment
88 fun make_attr_assign(recv: AExpr, attribute: MAttribute, value: AExpr): AAttrAssignExpr
89 do
90 return new AAttrAssignExpr.make(recv, attribute, value)
91 end
92
93 # Make a new escapable block
94 fun make_do: ADoExpr
95 do
96 return new ADoExpr.make
97 end
98
99 # Make a new break for a given escapemark
100 fun make_break(escapemark: EscapeMark): ABreakExpr
101 do
102 return new ABreakExpr.make(escapemark)
103 end
104
105 # Make a new conditional
106 # `mtype` is the return type of the whole if, in case of a ternary operator.
107 fun make_if(condition: AExpr, mtype: nullable MType): AIfExpr
108 do
109 return new AIfExpr.make(condition, mtype)
110 end
111
112 # Make a new assert
113 fun make_assert(n_id : nullable TId , n_expr : AExpr , n_else : nullable AExpr): AAssertExpr
114 do
115 return new AAssertExpr.make(n_id , n_expr , n_else)
116 end
117
118 # Make a new method
119 fun make_method(n_visibility: nullable APublicVisibility,
120 tk_redef: nullable TKwredef,
121 mmethoddef: MMethodDef,
122 n_signature: nullable ASignature,
123 n_annotations: nullable AAnnotations,
124 n_extern_calls: nullable AExternCalls,
125 n_extern_code_block: nullable AExternCodeBlock,
126 n_block: AExpr): AMethPropdef
127 do
128 return new AMethPropdef.make(n_visibility, tk_redef, mmethoddef, n_signature, n_annotations, n_extern_calls, n_extern_code_block, n_block)
129 end
130
131 # Make a new or with two expr
132 fun make_or(right_expr: AExpr, left_expr: AExpr): AOrExpr
133 do
134 return new AOrExpr.make(right_expr,left_expr)
135 end
136
137 # Make a new and with two expr
138 fun make_and(right_expr: AExpr, left_expr: AExpr): AAndExpr
139 do
140 return new AAndExpr.make(right_expr,left_expr)
141 end
142
143 # Make a new parenthesis expr
144 fun make_parenthesis(expr: AExpr, annotations: nullable AAnnotations): AParExpr
145 do
146 return new AParExpr.make(expr,annotations)
147 end
148
149 # Make a new message super
150 fun make_super_call(args: nullable Array[AExpr], n_qualified: nullable AQualified): ASuperExpr
151 do
152 return new ASuperExpr.make(args,n_qualified)
153 end
154
155 # Make a new return
156 fun make_return(expr: nullable AExpr): AReturnExpr
157 do
158 return new AReturnExpr.make(expr)
159 end
160 end
161
162 redef class AExpr
163 # Return a new variable read that contains the value of the expression
164 # This method take care efficiently of creating and initalising an anonymous local variable
165 #
166 # Note: since this method do side-effects (AST replacement), there could be unexpected effects when used as
167 # argument of other methods related to AST transformations.
168 fun make_var_read: AVarExpr
169 do
170 var variable = self.variable_cache
171 if variable == null then
172 assert parent != null
173 var place = detach_with_placeholder
174 variable = new Variable("")
175 variable.declared_type = self.mtype
176 var nvar = new AVarAssignExpr.make(variable, self)
177 place.replace_with(nvar)
178 self.variable_cache = variable
179 end
180 return new AVarExpr.make(variable, variable.declared_type.as(not null))
181 end
182
183 private var variable_cache: nullable Variable
184
185 # The `detach` method completely remove the node in the parent.
186 # However, sometime, it is useful to keep the emplacement of the removed child.
187 #
188 # The standard use case is the insertion of a node between a parent `p` and a child `p.c`.
189 # To create the new node `n`, we need to attach the child to it.
190 # But, to put `n` where `c` was in `p`, the place has to be remembered.
191 #
192 # ~~~nitish
193 # var p: AExpr
194 # var c = p.c
195 # var h = c.detach_with_placeholder
196 # var n = astbuilder.make_XXX(c)
197 # h.replace_with(n)
198 # ~~~
199 fun detach_with_placeholder: AExpr
200 do
201 var h = new APlaceholderExpr.make
202 self.replace_with(h)
203 return h
204 end
205
206
207 # Add `expr` at the end of the block
208 #
209 # REQUIRE: self isa ABlockExpr
210 #
211 # Note: this method, aimed to `ABlockExpr` is promoted to `AExpr` because of the limitations of the hierarchies generated by sablecc3
212 fun add(expr: AExpr)
213 do
214 print "add not implemented in {inspect}"
215 abort
216 end
217
218 redef fun accept_ast_validation(v)
219 do
220 super
221 if mtype == null and not is_typed then
222 #debug "TYPING: untyped expression"
223 end
224 end
225 end
226
227 # A placeholder for a `AExpr` node
228 # Instances are transiantly used to mark some specific emplacements in the AST
229 # during complex transformations.
230 #
231 # Their must not appear in a valid AST
232 #
233 # @see AExpr::detach_with_placeholder
234 class APlaceholderExpr
235 super AExpr
236 private init make
237 do
238 end
239
240 redef fun accept_ast_validation(v)
241 do
242 super
243 debug "PARENT: remaining placeholder"
244 end
245 end
246
247 redef class AReturnExpr
248 private init make(expr: nullable AExpr)
249 do
250 self.init_areturnexpr(null, expr)
251 end
252 end
253
254 redef class ASuperExpr
255 private init make(args: nullable Array[AExpr], n_qualified: nullable AQualified)
256 do
257 var n_args = new AListExprs
258 if args != null then
259 n_args.n_exprs.add_all(args)
260 end
261 self.init_asuperexpr(n_qualified, new TKwsuper, n_args)
262 end
263 end
264
265 redef class AParExpr
266 private init make(expr: AExpr, annotations: nullable AAnnotations)
267 do
268 self.location = expr.location
269 self.init_aparexpr(new TOpar, expr, new TCpar, annotations)
270 end
271 end
272
273 redef class AOrExpr
274 private init make(right_expr: AExpr, left_expr: AExpr)
275 do
276 self.init_aorexpr(right_expr,new TKwor,left_expr)
277 end
278 end
279
280 redef class AAndExpr
281 private init make(right_expr: AExpr, left_expr: AExpr)
282 do
283 self.init_aandexpr(right_expr,new TKwand ,left_expr)
284 end
285 end
286
287 redef class AMethPropdef
288 private init make(n_visibility: nullable APublicVisibility,
289 tk_redef: nullable TKwredef,
290 mmethoddef: MMethodDef,
291 n_signature: nullable ASignature,
292 n_annotations: nullable AAnnotations,
293 n_extern_calls: nullable AExternCalls,
294 n_extern_code_block: nullable AExternCodeBlock,
295 n_block: nullable AExpr)
296 do
297 var n_tid = new TId
298 n_tid.text = mmethoddef.name
299 var n_methid = new AIdMethid.init_aidmethid(n_tid)
300 if n_signature == null then n_signature = new ASignature
301 if n_visibility == null then n_visibility = new APublicVisibility
302 self.init_amethpropdef(null,tk_redef,n_visibility,new TKwmeth,null,null,null,n_methid,n_signature,n_annotations,n_extern_calls,n_extern_code_block,new TKwdo,n_block,new TKwend)
303 self.mpropdef = mmethoddef
304 end
305 end
306
307 redef class AAssertExpr
308 private init make(n_id : nullable TId , n_expr : nullable AExpr , n_else : nullable AExpr)
309 do
310 n_kwassert = new TKwassert
311 n_kwelse = null
312 if n_else != null then n_kwelse = new TKwelse
313 self.init_aassertexpr(n_kwassert, n_id , n_expr , n_kwelse , n_else)
314 end
315 end
316
317 redef class ABlockExpr
318 private init make
319 do
320 self.is_typed = true
321 end
322
323 redef fun add(expr)
324 do
325 n_expr.add expr
326 end
327 end
328
329 redef class ALoopExpr
330 private init make
331 do
332 _n_kwloop = new TKwloop
333 self.is_typed = true
334 n_block = new ABlockExpr
335 n_block.is_typed = true
336 end
337
338 redef fun add(expr)
339 do
340 n_block.add expr
341 end
342 end
343
344 redef class ADoExpr
345 private init make
346 do
347 _n_kwdo = new TKwdo
348 self.is_typed = true
349 n_block = new ABlockExpr
350 n_block.is_typed = true
351 end
352
353 # Make a new break expression of the given do
354 fun make_break: ABreakExpr
355 do
356 var escapemark = self.break_mark
357 if escapemark == null then
358 escapemark = new EscapeMark(null)
359 self.break_mark = escapemark
360 end
361 return new ABreakExpr.make(escapemark)
362 end
363
364 redef fun add(expr)
365 do
366 n_block.add expr
367 end
368 end
369
370 redef class ABreakExpr
371 private init make(escapemark: EscapeMark)
372 do
373 _n_kwbreak = new TKwbreak
374 self.escapemark = escapemark
375 escapemark.escapes.add self
376 self.is_typed = true
377 end
378 end
379
380 redef class AIfExpr
381 private init make(condition: AExpr, mtype: nullable MType)
382 do
383 _n_kwif = new TKwif
384 _n_expr = condition
385 _n_expr.parent = self
386 _n_kwthen = new TKwthen
387 _n_then = new ABlockExpr.make
388 _n_kwelse = new TKwelse
389 _n_else = new ABlockExpr.make
390 self.mtype = mtype
391 self.is_typed = true
392 end
393 end
394
395 redef class AType
396 private init make
397 do
398 var n_id = new TClassid
399 var n_qid = new AQclassid
400 n_qid.n_id = n_id
401 _n_qid = n_qid
402 end
403 end
404
405 redef class AIntegerExpr
406 private init make(value: Int, t: MType)
407 do
408 self.value = value
409 self._n_integer = new TInteger # dummy
410 self.mtype = t
411 end
412 end
413
414 redef class ANewExpr
415 private init make(callsite: CallSite, args: nullable Array[AExpr])
416 do
417 _n_kwnew = new TKwnew
418 _n_type = new AType.make
419 _n_args = new AListExprs
420 if args != null then
421 n_args.n_exprs.add_all(args)
422 end
423 self.callsite = callsite
424 self.recvtype = callsite.recv.as(MClassType)
425 if callsite.mproperty.is_new then
426 self.mtype = callsite.msignature.return_mtype
427 else
428 self.mtype = callsite.recv
429 end
430 self.is_typed = true
431 end
432 end
433
434 redef class ACallExpr
435 private init make(recv: AExpr, callsite: CallSite, args: nullable Array[AExpr])
436 do
437 self._n_expr = recv
438 _n_args = new AListExprs
439 _n_qid = new AQid
440 _n_qid.n_id = new TId
441 _n_qid.n_id.text = callsite.mproperty.name
442 if args != null then
443 self.n_args.n_exprs.add_all(args)
444 end
445 self.callsite = callsite
446 self.mtype = callsite.msignature.return_mtype
447 self.is_typed = true
448 end
449 end
450
451 redef class AAttrExpr
452 private init make(recv: AExpr, attribute: MAttribute, t: MType)
453 do
454 _n_expr = recv
455 recv.parent = self
456 _n_id = new TAttrid
457 mproperty = attribute
458 mtype = t
459 end
460 end
461
462 redef class AAttrAssignExpr
463 private init make(recv: AExpr, attribute: MAttribute, value: AExpr)
464 do
465 _n_expr = recv
466 recv.parent = self
467 _n_id = new TAttrid
468 _n_value = value
469 value.parent = self
470 _n_assign = new TAssign
471 mproperty = attribute
472 mtype = value.mtype
473 end
474 end
475
476 redef class AVarExpr
477 private init make(v: Variable, mtype: MType)
478 do
479 _n_id = new TId
480 variable = v
481 self.mtype = mtype
482 end
483 end
484
485 redef class AVarAssignExpr
486 private init make(v: Variable, value: AExpr)
487 do
488 _n_id = new TId
489 _n_value = value
490 value.parent = self
491 _n_assign = new TAssign
492 variable = v
493 mtype = value.mtype
494 end
495 end
496
497 # Check the consitency of AST
498 class ASTValidationVisitor
499 super Visitor
500 redef fun visit(node)
501 do
502 node.accept_ast_validation(self)
503 end
504 private var path = new CircularArray[ANode]
505 private var seen = new HashSet[ANode]
506 end
507
508 redef class ANode
509 # Recursively validate a AST node.
510 # This ensure that location and parenting are defined and coherent.
511 #
512 # After complex low-level AST manipulation and construction,
513 # it is recommended to call it.
514 #
515 # Note: this just instantiate and run an `ASTValidationVisitor`.
516 fun validate
517 do
518 (new ASTValidationVisitor).enter_visit(self)
519 end
520
521 private fun accept_ast_validation(v: ASTValidationVisitor)
522 do
523 var parent = self.parent
524 var path = v.path
525
526 if path.length > 0 then
527 var path_parent = v.path.first
528 if parent == null then
529 self.parent = path_parent
530 #debug "PARENT: expected parent: {path_parent}"
531 v.seen.add(self)
532 else if parent != path_parent then
533 self.parent = path_parent
534 if v.seen.has(self) then
535 debug "DUPLICATE (NOTATREE): already seen node with parent {parent} now with {path_parent}."
536 else
537 v.seen.add(self)
538 debug "PARENT: expected parent: {path_parent}, got {parent}"
539 end
540 end
541 end
542
543 if not isset _location then
544 #debug "LOCATION: unlocated node {v.path.join(", ")}"
545 _location = self.parent.location
546 end
547
548 path.unshift(self)
549 visit_all(v)
550 path.shift
551 end
552 end
553
554 redef class AAnnotation
555 redef fun accept_ast_validation(v)
556 do
557 # Do not enter in annotations
558 end
559 end