typing: warnings related to adaptive typing are moved to the post_typing
[nit.git] / src / semantize / typing.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2012 Jean Privat <jean@pryen.org>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Intraprocedural resolution of static types and OO-services
18 # By OO-services we mean message sending, attribute access, instantiation, etc.
19 module typing
20
21 import modelize
22 import local_var_init
23
24 redef class ToolContext
25 var typing_phase: Phase = new TypingPhase(self, [flow_phase, modelize_property_phase, local_var_init_phase])
26 end
27
28 private class TypingPhase
29 super Phase
30 redef fun process_npropdef(npropdef) do npropdef.do_typing(toolcontext.modelbuilder)
31 end
32
33 private class TypeVisitor
34 var modelbuilder: ModelBuilder
35
36 # The module of the analysis
37 # Used to correctly query the model
38 var mmodule: MModule
39
40 # The static type of the receiver
41 # Mainly used for type tests and type resolutions
42 var anchor: nullable MClassType = null
43
44 # The analyzed mclassdef
45 var mclassdef: nullable MClassDef = null
46
47 # The analyzed property
48 var mpropdef: nullable MPropDef
49
50 var selfvariable = new Variable("self")
51
52 # Is `self` use restricted?
53 # * no explicit `self`
54 # * method called on the implicit self must be top-level
55 # Currently only used for `new` factory since there is no valid receiver inside
56 var is_toplevel_context = false
57
58 init
59 do
60 var mpropdef = self.mpropdef
61
62 if mpropdef != null then
63 self.mpropdef = mpropdef
64 var mclassdef = mpropdef.mclassdef
65 self.mclassdef = mclassdef
66 self.anchor = mclassdef.bound_mtype
67
68 var mclass = mclassdef.mclass
69
70 var selfvariable = new Variable("self")
71 self.selfvariable = selfvariable
72 selfvariable.declared_type = mclass.mclass_type
73
74 var mprop = mpropdef.mproperty
75 if mprop isa MMethod and mprop.is_new then
76 is_toplevel_context = true
77 end
78 end
79 end
80
81 fun anchor_to(mtype: MType): MType
82 do
83 var anchor = anchor
84 if anchor == null then
85 assert not mtype.need_anchor
86 return mtype
87 end
88 return mtype.anchor_to(mmodule, anchor)
89 end
90
91 fun is_subtype(sub, sup: MType): Bool
92 do
93 return sub.is_subtype(mmodule, anchor, sup)
94 end
95
96 fun resolve_for(mtype, subtype: MType, for_self: Bool): MType
97 do
98 #print "resolve_for {mtype} sub={subtype} forself={for_self} mmodule={mmodule} anchor={anchor}"
99 var res = mtype.resolve_for(subtype, anchor, mmodule, not for_self)
100 return res
101 end
102
103 # Check that `sub` is a subtype of `sup`.
104 # If `sub` is not a valid suptype, then display an error on `node` an return null.
105 # If `sub` is a safe subtype of `sup` then return `sub`.
106 # If `sub` is an unsafe subtype (ie an implicit cast is required), then return `sup`.
107 #
108 # The point of the return type is to determinate the usable type on an expression when `autocast` is true:
109 # If the suptype is safe, then the return type is the one on the expression typed by `sub`.
110 # Is the subtype is unsafe, then the return type is the one of an implicit cast on `sup`.
111 fun check_subtype(node: ANode, sub, sup: MType, autocast: Bool): nullable MType
112 do
113 if self.is_subtype(sub, sup) then return sub
114 if autocast and self.is_subtype(sub, self.anchor_to(sup)) then
115 # FIXME workaround to the current unsafe typing policy. To remove once fixed virtual types exists.
116 #node.debug("Unsafe typing: expected {sup}, got {sub}")
117 return sup
118 end
119 if sub.need_anchor then
120 var u = anchor_to(sub)
121 self.modelbuilder.error(node, "Type Error: expected `{sup}`, got `{sub}: {u}`.")
122 else
123 self.modelbuilder.error(node, "Type Error: expected `{sup}`, got `{sub}`.")
124 end
125 return null
126 end
127
128 # Visit an expression and do not care about the return value
129 fun visit_stmt(nexpr: nullable AExpr)
130 do
131 if nexpr == null then return
132 nexpr.accept_typing(self)
133 end
134
135 # Visit an expression and expects that it is not a statement
136 # Return the type of the expression
137 # Display an error and return null if:
138 # * the type cannot be determined or
139 # * `nexpr` is a statement
140 fun visit_expr(nexpr: AExpr): nullable MType
141 do
142 nexpr.accept_typing(self)
143 var mtype = nexpr.mtype
144 if mtype != null then return mtype
145 if not nexpr.is_typed then
146 if not self.modelbuilder.toolcontext.error_count > 0 then # check that there is really an error
147 if self.modelbuilder.toolcontext.verbose_level > 1 then
148 nexpr.debug("No return type but no error.")
149 end
150 end
151 return null # forward error
152 end
153 self.error(nexpr, "Error: expected an expression.")
154 return null
155 end
156
157 # Visit an expression and expect its static type is a least a `sup`
158 # Return the type of the expression or null if
159 # * the type cannot be determined or
160 # * `nexpr` is a statement or
161 # * `nexpr` is not a `sup`
162 fun visit_expr_subtype(nexpr: AExpr, sup: nullable MType): nullable MType
163 do
164 var sub = visit_expr(nexpr)
165 if sub == null then return null # Forward error
166
167 if sup == null then return null # Forward error
168
169 var res = check_subtype(nexpr, sub, sup, true)
170 if res != sub then
171 nexpr.implicit_cast_to = res
172 end
173 return res
174 end
175
176 # Visit an expression and expect its static type is a `Bool`
177 # Return the type of the expression or null if
178 # * the type cannot be determined or
179 # * `nexpr` is a statement or
180 # * `nexpr` is not a `Bool`
181 fun visit_expr_bool(nexpr: AExpr): nullable MType
182 do
183 return self.visit_expr_subtype(nexpr, self.type_bool(nexpr))
184 end
185
186
187 fun check_expr_cast(node: ANode, nexpr: AExpr, ntype: AType): nullable MType
188 do
189 var sub = nexpr.mtype
190 if sub == null then return null # Forward error
191
192 var sup = ntype.mtype
193 if sup == null then return null # Forward error
194
195 if sup == sub then
196 self.modelbuilder.warning(node, "useless-type-test", "Warning: expression is already a `{sup}`.")
197 else if self.is_subtype(sub, sup) then
198 self.modelbuilder.warning(node, "useless-type-test", "Warning: expression is already a `{sup}` since it is a `{sub}`.")
199 end
200 return sup
201 end
202
203 # Can `mtype` be null (up to the current knowledge)?
204 fun can_be_null(mtype: MType): Bool
205 do
206 if mtype isa MNullableType or mtype isa MNullType then return true
207 if mtype isa MFormalType then
208 var x = anchor_to(mtype)
209 if x isa MNullableType or x isa MNullType then return true
210 end
211 return false
212 end
213
214 # Check that `mtype` can be null (up to the current knowledge).
215 #
216 # If not then display a `useless-null-test` warning on node and return false.
217 # Else return true.
218 fun check_can_be_null(anode: ANode, mtype: MType): Bool
219 do
220 if can_be_null(mtype) then return true
221
222 if mtype isa MFormalType then
223 var res = anchor_to(mtype)
224 modelbuilder.warning(anode, "useless-null-test", "Warning: expression is not null, since it is a `{mtype}: {res}`.")
225 else
226 modelbuilder.warning(anode, "useless-null-test", "Warning: expression is not null, since it is a `{mtype}`.")
227 end
228 return false
229 end
230
231 # Special verification on != and == for null
232 # Return true
233 fun null_test(anode: ABinopExpr)
234 do
235 var mtype = anode.n_expr.mtype
236 var mtype2 = anode.n_expr2.mtype
237
238 if mtype == null or mtype2 == null then return
239
240 if not mtype2 isa MNullType then return
241
242 # Check of useless null
243 if not can_be_null(mtype) then return
244
245 if mtype isa MNullType then
246 # Because of type adaptation, we cannot just stop here
247 # so return use `null` as a bottom type that will be merged easily (cf) `merge_types`
248 mtype = null
249 else
250 mtype = mtype.as_notnull
251 end
252
253 # Check for type adaptation
254 var variable = anode.n_expr.its_variable
255 if variable == null then return
256
257 # One is null (mtype2 see above) the other is not null
258 if anode isa AEqExpr then
259 anode.after_flow_context.when_true.set_var(self, variable, mtype2)
260 anode.after_flow_context.when_false.set_var(self, variable, mtype)
261 else if anode isa ANeExpr then
262 anode.after_flow_context.when_false.set_var(self, variable, mtype2)
263 anode.after_flow_context.when_true.set_var(self, variable, mtype)
264 else
265 abort
266 end
267 end
268
269 fun try_get_mproperty_by_name2(anode: ANode, mtype: MType, name: String): nullable MProperty
270 do
271 return self.modelbuilder.try_get_mproperty_by_name2(anode, mmodule, mtype, name)
272 end
273
274 fun resolve_mtype(node: AType): nullable MType
275 do
276 return self.modelbuilder.resolve_mtype(mmodule, mclassdef, node)
277 end
278
279 fun try_get_mclass(node: ANode, name: String): nullable MClass
280 do
281 var mclass = modelbuilder.try_get_mclass_by_name(node, mmodule, name)
282 return mclass
283 end
284
285 fun get_mclass(node: ANode, name: String): nullable MClass
286 do
287 var mclass = modelbuilder.get_mclass_by_name(node, mmodule, name)
288 return mclass
289 end
290
291 fun type_bool(node: ANode): nullable MType
292 do
293 var mclass = self.get_mclass(node, "Bool")
294 if mclass == null then return null
295 return mclass.mclass_type
296 end
297
298 fun get_method(node: ANode, recvtype: MType, name: String, recv_is_self: Bool): nullable CallSite
299 do
300 var unsafe_type = self.anchor_to(recvtype)
301
302 #debug("recv: {recvtype} (aka {unsafe_type})")
303 if recvtype isa MNullType then
304 var objclass = get_mclass(node, "Object")
305 if objclass == null then return null # Forward error
306 unsafe_type = objclass.mclass_type
307 end
308
309 var mproperty = self.try_get_mproperty_by_name2(node, unsafe_type, name)
310 if name == "new" and mproperty == null then
311 name = "init"
312 mproperty = self.try_get_mproperty_by_name2(node, unsafe_type, name)
313 end
314
315 if mproperty == null then
316 if recv_is_self then
317 self.modelbuilder.error(node, "Error: method or variable `{name}` unknown in `{recvtype}`.")
318 else if recvtype.need_anchor then
319 self.modelbuilder.error(node, "Error: method `{name}` does not exists in `{recvtype}: {unsafe_type}`.")
320 else
321 self.modelbuilder.error(node, "Error: method `{name}` does not exists in `{recvtype}`.")
322 end
323 return null
324 end
325
326 assert mproperty isa MMethod
327
328 # `null` only accepts some methods of object.
329 if recvtype isa MNullType and not mproperty.is_null_safe then
330 self.error(node, "Error: method `{name}` called on `null`.")
331 return null
332 else if unsafe_type isa MNullableType and not mproperty.is_null_safe then
333 modelbuilder.advice(node, "call-on-nullable", "Warning: method call on a nullable receiver `{recvtype}`.")
334 end
335
336 if is_toplevel_context and recv_is_self and not mproperty.is_toplevel then
337 error(node, "Error: `{name}` is not a top-level method, thus need a receiver.")
338 end
339 if not recv_is_self and mproperty.is_toplevel then
340 error(node, "Error: cannot call `{name}`, a top-level method, with a receiver.")
341 end
342
343 if mproperty.visibility == protected_visibility and not recv_is_self and self.mmodule.visibility_for(mproperty.intro_mclassdef.mmodule) < intrude_visibility and not modelbuilder.toolcontext.opt_ignore_visibility.value then
344 self.modelbuilder.error(node, "Error: method `{name}` is protected and can only accessed by `self`.")
345 return null
346 end
347
348 var info = mproperty.deprecation
349 if info != null and self.mpropdef.mproperty.deprecation == null then
350 var mdoc = info.mdoc
351 if mdoc != null then
352 self.modelbuilder.warning(node, "deprecated-method", "Deprecation Warning: method `{name}` is deprecated: {mdoc.content.first}")
353 else
354 self.modelbuilder.warning(node, "deprecated-method", "Deprecation Warning: method `{name}` is deprecated.")
355 end
356 end
357
358 var propdefs = mproperty.lookup_definitions(self.mmodule, unsafe_type)
359 var mpropdef
360 if propdefs.length == 0 then
361 self.modelbuilder.error(node, "Type Error: no definition found for property `{name}` in `{unsafe_type}`.")
362 return null
363 else if propdefs.length == 1 then
364 mpropdef = propdefs.first
365 else
366 self.modelbuilder.warning(node, "property-conflict", "Warning: conflicting property definitions for property `{name}` in `{unsafe_type}`: {propdefs.join(" ")}")
367 mpropdef = mproperty.intro
368 end
369
370
371 var msignature = mpropdef.new_msignature or else mpropdef.msignature
372 if msignature == null then return null # skip error
373 msignature = resolve_for(msignature, recvtype, recv_is_self).as(MSignature)
374
375 var erasure_cast = false
376 var rettype = mpropdef.msignature.return_mtype
377 if not recv_is_self and rettype != null then
378 rettype = rettype.undecorate
379 if rettype isa MParameterType then
380 var erased_rettype = msignature.return_mtype
381 assert erased_rettype != null
382 #node.debug("Erasure cast: Really a {rettype} but unsafely a {erased_rettype}")
383 erasure_cast = true
384 end
385 end
386
387 var callsite = new CallSite(node, recvtype, mmodule, anchor, recv_is_self, mproperty, mpropdef, msignature, erasure_cast)
388 return callsite
389 end
390
391 fun try_get_method(node: ANode, recvtype: MType, name: String, recv_is_self: Bool): nullable CallSite
392 do
393 var unsafe_type = self.anchor_to(recvtype)
394 var mproperty = self.try_get_mproperty_by_name2(node, unsafe_type, name)
395 if mproperty == null then return null
396 return get_method(node, recvtype, name, recv_is_self)
397 end
398
399
400 # Visit the expressions of args and check their conformity with the corresponding type in signature
401 # The point of this method is to handle varargs correctly
402 # Note: The signature must be correctly adapted
403 fun check_signature(node: ANode, args: Array[AExpr], mproperty: MProperty, msignature: MSignature): nullable SignatureMap
404 do
405 var vararg_rank = msignature.vararg_rank
406 if vararg_rank >= 0 then
407 if args.length < msignature.arity then
408 modelbuilder.error(node, "Error: expected at least {msignature.arity} argument(s) for `{mproperty}{msignature}`; got {args.length}. See introduction at `{mproperty.full_name}`.")
409 return null
410 end
411 else if args.length != msignature.arity then
412 if msignature.arity == msignature.min_arity then
413 modelbuilder.error(node, "Error: expected {msignature.arity} argument(s) for `{mproperty}{msignature}`; got {args.length}. See introduction at `{mproperty.full_name}`.")
414 return null
415 end
416 if args.length > msignature.arity then
417 modelbuilder.error(node, "Error: expected at most {msignature.arity} argument(s) for `{mproperty}{msignature}`; got {args.length}. See introduction at `{mproperty.full_name}`.")
418 return null
419 end
420 if args.length < msignature.min_arity then
421 modelbuilder.error(node, "Error: expected at least {msignature.min_arity} argument(s) for `{mproperty}{msignature}`; got {args.length}. See introduction at `{mproperty.full_name}`.")
422 return null
423 end
424 end
425
426 #debug("CALL {unsafe_type}.{msignature}")
427
428 # Associate each parameter to a position in the arguments
429 var map = new SignatureMap
430
431 var setted = args.length - msignature.min_arity
432
433 # First, handle named arguments
434 for i in [0..args.length[ do
435 var e = args[i]
436 if not e isa ANamedargExpr then continue
437 var name = e.n_id.text
438 var param = msignature.mparameter_by_name(name)
439 if param == null then
440 modelbuilder.error(e.n_id, "Error: no parameter `{name}` for `{mproperty}{msignature}`.")
441 return null
442 end
443 if not param.is_default then
444 modelbuilder.error(e, "Error: parameter `{name}` is not optional for `{mproperty}{msignature}`.")
445 return null
446 end
447 var idx = msignature.mparameters.index_of(param)
448 var prev = map.map.get_or_null(idx)
449 if prev != null then
450 modelbuilder.error(e, "Error: parameter `{name}` already associated with argument #{prev} for `{mproperty}{msignature}`.")
451 return null
452 end
453 map.map[idx] = i
454 setted -= 1
455 e.mtype = self.visit_expr_subtype(e.n_expr, param.mtype)
456 end
457
458 # Second, associate remaining parameters
459 var vararg_decl = args.length - msignature.arity
460 var j = 0
461 for i in [0..msignature.arity[ do
462 # Skip parameters associated by name
463 if map.map.has_key(i) then continue
464
465 var param = msignature.mparameters[i]
466 if param.is_default then
467 if setted > 0 then
468 setted -= 1
469 else
470 continue
471 end
472 end
473
474 # Search the next free argument: skip named arguments since they are already associated
475 while args[j] isa ANamedargExpr do j += 1
476 var arg = args[j]
477 map.map[i] = j
478 j += 1
479
480 if i == vararg_rank then
481 j += vararg_decl
482 continue # skip the vararg
483 end
484
485 var paramtype = param.mtype
486 self.visit_expr_subtype(arg, paramtype)
487 end
488
489 # Third, check varargs
490 if vararg_rank >= 0 then
491 var paramtype = msignature.mparameters[vararg_rank].mtype
492 var first = args[vararg_rank]
493 if vararg_decl == 0 then
494 var mclass = get_mclass(node, "Array")
495 if mclass == null then return null # Forward error
496 var array_mtype = mclass.get_mtype([paramtype])
497 if first isa AVarargExpr then
498 self.visit_expr_subtype(first.n_expr, array_mtype)
499 first.mtype = first.n_expr.mtype
500 else
501 # only one vararg, maybe `...` was forgot, so be gentle!
502 var t = visit_expr(first)
503 if t == null then return null # Forward error
504 if not is_subtype(t, paramtype) and is_subtype(t, array_mtype) then
505 # Not acceptable but could be a `...`
506 error(first, "Type Error: expected `{paramtype}`, got `{t}`. Is an ellipsis `...` missing on the argument?")
507 return null
508 end
509 # Standard valid vararg, finish the job
510 map.vararg_decl = 1
511 self.visit_expr_subtype(first, paramtype)
512 end
513 else
514 map.vararg_decl = vararg_decl + 1
515 for i in [vararg_rank..vararg_rank+vararg_decl] do
516 self.visit_expr_subtype(args[i], paramtype)
517 end
518 end
519 end
520
521 return map
522 end
523
524 fun error(node: ANode, message: String)
525 do
526 self.modelbuilder.toolcontext.error(node.hot_location, message)
527 end
528
529 fun get_variable(node: AExpr, variable: Variable): nullable MType
530 do
531 if not variable.is_adapted then return variable.declared_type
532
533 var flow = node.after_flow_context
534 if flow == null then return null # skip error
535
536 if flow.vars.has_key(variable) then
537 return flow.vars[variable]
538 else
539 #node.debug("*** START Collected for {variable}")
540 var mtypes = flow.collect_types(variable)
541 #node.debug("**** END Collected for {variable}")
542 if mtypes.length == 0 then
543 return variable.declared_type
544 else if mtypes.length == 1 then
545 return mtypes.first
546 else
547 var res = merge_types(node,mtypes)
548 if res == null then res = variable.declared_type
549 return res
550 end
551 end
552 end
553
554 # Some variables where type-adapted during the visit
555 var dirty = false
556
557 # Some loops had been visited during the visit
558 var has_loop = false
559
560 fun set_variable(node: AExpr, variable: Variable, mtype: nullable MType)
561 do
562 var flow = node.after_flow_context
563 assert flow != null
564
565 flow.set_var(self, variable, mtype)
566 end
567
568 fun merge_types(node: ANode, col: Array[nullable MType]): nullable MType
569 do
570 if col.length == 1 then return col.first
571 for t1 in col do
572 if t1 == null then continue # return null
573 var found = true
574 for t2 in col do
575 if t2 == null then continue # return null
576 if can_be_null(t2) and not can_be_null(t1) then
577 t1 = t1.as_nullable
578 end
579 if not is_subtype(t2, t1) then found = false
580 end
581 if found then
582 #print "merge {col.join(" ")} -> {t1}"
583 return t1
584 end
585 end
586 #self.modelbuilder.warning(node, "Type Error: {col.length} conflicting types: <{col.join(", ")}>")
587 return null
588 end
589 end
590
591 # Mapping between parameters and arguments in a call.
592 #
593 # Parameters and arguments are not stored in the class but referenced by their position (starting from 0)
594 #
595 # The point of this class is to help engine and other things to map arguments in the AST to parameters of the model.
596 class SignatureMap
597 # Associate a parameter to an argument
598 var map = new ArrayMap[Int, Int]
599
600 # The length of the vararg sequence
601 # 0 if no vararg or if reverse vararg (cf `AVarargExpr`)
602 var vararg_decl: Int = 0
603 end
604
605 # A specific method call site with its associated informations.
606 class CallSite
607 # The associated node for location
608 var node: ANode
609
610 # The static type of the receiver (possibly unresolved)
611 var recv: MType
612
613 # The module where the callsite is present
614 var mmodule: MModule
615
616 # The anchor to use with `recv` or `msignature`
617 var anchor: nullable MClassType
618
619 # Is the receiver self?
620 # If "for_self", virtual types of the signature are kept
621 # If "not_for_self", virtual type are erased
622 var recv_is_self: Bool
623
624 # The designated method
625 var mproperty: MMethod
626
627 # The statically designated method definition
628 # The most specif one, it is.
629 var mpropdef: MMethodDef
630
631 # The resolved signature for the receiver
632 var msignature: MSignature
633
634 # Is a implicit cast required on erasure typing policy?
635 var erasure_cast: Bool
636
637 # The mapping used on the call to associate arguments to parameters
638 # If null then no specific association is required.
639 var signaturemap: nullable SignatureMap = null
640
641 private fun check_signature(v: TypeVisitor, args: Array[AExpr]): Bool
642 do
643 var map = v.check_signature(self.node, args, self.mproperty, self.msignature)
644 signaturemap = map
645 return map == null
646 end
647 end
648
649 redef class Variable
650 # The declared type of the variable
651 var declared_type: nullable MType is writable
652
653 # Was the variable type-adapted?
654 # This is used to speedup type retrieval while it remains `false`
655 private var is_adapted = false
656 end
657
658 redef class FlowContext
659 # Store changes of types because of type evolution
660 private var vars = new HashMap[Variable, nullable MType]
661
662 # Adapt the variable to a static type
663 # Warning1: do not modify vars directly.
664 # Warning2: sub-flow may have cached a unadapted variable
665 private fun set_var(v: TypeVisitor, variable: Variable, mtype: nullable MType)
666 do
667 if variable.declared_type == mtype and not variable.is_adapted then return
668 if vars.has_key(variable) and vars[variable] == mtype then return
669 self.vars[variable] = mtype
670 v.dirty = true
671 variable.is_adapted = true
672 #node.debug "set {variable} to {mtype or else "X"}"
673 end
674
675 # Look in the flow and previous flow and collect all first reachable type adaptation of a local variable
676 private fun collect_types(variable: Variable): Array[nullable MType]
677 do
678 #node.debug "flow for {variable}"
679 var res = new Array[nullable MType]
680
681 var todo = [self]
682 var seen = new HashSet[FlowContext]
683 while not todo.is_empty do
684 var f = todo.pop
685 if f.is_unreachable then continue
686 if seen.has(f) then continue
687 seen.add f
688
689 if f.vars.has_key(variable) then
690 # Found something. Collect it and do not process further on this path
691 res.add f.vars[variable]
692 #f.node.debug "process {variable}: got {f.vars[variable] or else "X"}"
693 else
694 todo.add_all f.previous
695 todo.add_all f.loops
696 if f.previous.is_empty then
697 # Root flowcontext mean a parameter or something related
698 res.add variable.declared_type
699 #f.node.debug "root process {variable}: got {variable.declared_type or else "X"}"
700 end
701 end
702 end
703 #self.node.debug "##### end flow for {variable}: {res.join(" ")}"
704 return res
705 end
706 end
707
708 redef class APropdef
709 # The entry point of the whole typing analysis
710 fun do_typing(modelbuilder: ModelBuilder)
711 do
712 end
713
714 # The variable associated to the receiver (if any)
715 var selfvariable: nullable Variable
716 end
717
718 redef class AMethPropdef
719 redef fun do_typing(modelbuilder: ModelBuilder)
720 do
721 var nblock = self.n_block
722 if nblock == null then return
723
724 var mpropdef = self.mpropdef
725 if mpropdef == null then return # skip error
726
727 var v = new TypeVisitor(modelbuilder, mpropdef.mclassdef.mmodule, mpropdef)
728 self.selfvariable = v.selfvariable
729
730 var mmethoddef = self.mpropdef.as(not null)
731 var msignature = mmethoddef.msignature
732 if msignature == null then return # skip error
733 for i in [0..msignature.arity[ do
734 var mtype = msignature.mparameters[i].mtype
735 if msignature.vararg_rank == i then
736 var arrayclass = v.get_mclass(self.n_signature.n_params[i], "Array")
737 if arrayclass == null then return # Skip error
738 mtype = arrayclass.get_mtype([mtype])
739 end
740 var variable = self.n_signature.n_params[i].variable
741 assert variable != null
742 variable.declared_type = mtype
743 end
744
745 loop
746 v.dirty = false
747 v.visit_stmt(nblock)
748 if not v.has_loop or not v.dirty then break
749 end
750
751 var post_visitor = new PostTypingVisitor(v)
752 post_visitor.enter_visit(self)
753
754 if not nblock.after_flow_context.is_unreachable and msignature.return_mtype != null then
755 # We reach the end of the function without having a return, it is bad
756 v.error(self, "Error: reached end of function; expected `return` with a value.")
757 end
758 end
759 end
760
761 private class PostTypingVisitor
762 super Visitor
763 var type_visitor: TypeVisitor
764 redef fun visit(n) do
765 n.visit_all(self)
766 n.accept_post_typing(type_visitor)
767 end
768 end
769
770 redef class ANode
771 private fun accept_post_typing(v: TypeVisitor) do end
772 end
773
774 redef class AAttrPropdef
775 redef fun do_typing(modelbuilder: ModelBuilder)
776 do
777 if not has_value then return
778
779 var mpropdef = self.mreadpropdef
780 if mpropdef == null or mpropdef.msignature == null then return # skip error
781
782 var v = new TypeVisitor(modelbuilder, mpropdef.mclassdef.mmodule, mpropdef)
783 self.selfvariable = v.selfvariable
784
785 var nexpr = self.n_expr
786 if nexpr != null then
787 var mtype = self.mtype
788 v.visit_expr_subtype(nexpr, mtype)
789 end
790 var nblock = self.n_block
791 if nblock != null then
792 v.visit_stmt(nblock)
793 if not nblock.after_flow_context.is_unreachable then
794 # We reach the end of the init without having a return, it is bad
795 v.error(self, "Error: reached end of block; expected `return`.")
796 end
797 end
798 end
799 end
800
801 ###
802
803 redef class AExpr
804 # The static type of the expression.
805 # null if self is a statement or in case of error
806 var mtype: nullable MType = null
807
808 # Is the statement correctly typed?
809 # Used to distinguish errors and statements when `mtype == null`
810 var is_typed: Bool = false
811
812 # If required, the following implicit cast `.as(XXX)`
813 # Such a cast may by required after evaluating the expression when
814 # a unsafe operation is detected (silently accepted by the Nit language).
815 # The attribute is computed by `check_subtype`
816 var implicit_cast_to: nullable MType = null
817
818 # Return the variable read (if any)
819 # Used to perform adaptive typing
820 fun its_variable: nullable Variable do return null
821
822 private fun accept_typing(v: TypeVisitor)
823 do
824 v.error(self, "no implemented accept_typing for {self.class_name}")
825 end
826
827 # Is non-null if `self` is a leaf of a comprehension array construction.
828 # In this case, the enclosing literal array node is designated.
829 # The result of the evaluation of `self` must be
830 # stored inside the designated array (there is an implicit `push`)
831 var comprehension: nullable AArrayExpr = null
832 end
833
834 redef class ABlockExpr
835 redef fun accept_typing(v)
836 do
837 for e in self.n_expr do v.visit_stmt(e)
838 self.is_typed = true
839 end
840
841 # The type of a blockexpr is the one of the last expression (or null if empty)
842 redef fun mtype
843 do
844 if self.n_expr.is_empty then return null
845 return self.n_expr.last.mtype
846 end
847 end
848
849 redef class AVardeclExpr
850 redef fun accept_typing(v)
851 do
852 var variable = self.variable
853 if variable == null then return # Skip error
854
855 var ntype = self.n_type
856 var mtype: nullable MType
857 if ntype == null then
858 mtype = null
859 else
860 mtype = v.resolve_mtype(ntype)
861 if mtype == null then return # Skip error
862 end
863
864 var nexpr = self.n_expr
865 if nexpr != null then
866 if mtype != null then
867 var etype = v.visit_expr_subtype(nexpr, mtype)
868 if etype == mtype then
869 assert ntype != null
870 v.modelbuilder.advice(ntype, "useless-type", "Warning: useless type definition for variable `{variable.name}`")
871 end
872 else
873 mtype = v.visit_expr(nexpr)
874 if mtype == null then return # Skip error
875 end
876 end
877
878 var decltype = mtype
879 if mtype == null or mtype isa MNullType then
880 var objclass = v.get_mclass(self, "Object")
881 if objclass == null then return # skip error
882 decltype = objclass.mclass_type.as_nullable
883 if mtype == null then mtype = decltype
884 end
885
886 variable.declared_type = decltype
887 v.set_variable(self, variable, mtype)
888
889 #debug("var {variable}: {mtype}")
890
891 self.mtype = mtype
892 self.is_typed = true
893 end
894 end
895
896 redef class AVarExpr
897 redef fun its_variable do return self.variable
898 redef fun accept_typing(v)
899 do
900 var variable = self.variable
901 if variable == null then return # Skip error
902
903 var mtype = v.get_variable(self, variable)
904 if mtype != null then
905 #debug("{variable} is {mtype}")
906 else
907 #debug("{variable} is untyped")
908 end
909
910 self.mtype = mtype
911 end
912 end
913
914 redef class AVarAssignExpr
915 redef fun accept_typing(v)
916 do
917 var variable = self.variable
918 assert variable != null
919
920 var mtype = v.visit_expr_subtype(n_value, variable.declared_type)
921
922 v.set_variable(self, variable, mtype)
923
924 self.is_typed = true
925 end
926 end
927
928 redef class AReassignFormExpr
929 # The method designed by the reassign operator.
930 var reassign_callsite: nullable CallSite
931
932 var read_type: nullable MType = null
933
934 # Determine the `reassign_property`
935 # `readtype` is the type of the reading of the left value.
936 # `writetype` is the type of the writing of the left value.
937 # (Because of `ACallReassignExpr`, both can be different.
938 # Return the static type of the value to store.
939 private fun resolve_reassignment(v: TypeVisitor, readtype, writetype: MType): nullable MType
940 do
941 var reassign_name = self.n_assign_op.operator
942
943 self.read_type = readtype
944
945 var callsite = v.get_method(self.n_assign_op, readtype, reassign_name, false)
946 if callsite == null then return null # Skip error
947 self.reassign_callsite = callsite
948
949 var msignature = callsite.msignature
950 var rettype = msignature.return_mtype
951 assert msignature.arity == 1 and rettype != null
952
953 var value_type = v.visit_expr_subtype(self.n_value, msignature.mparameters.first.mtype)
954 if value_type == null then return null # Skip error
955
956 v.check_subtype(self, rettype, writetype, false)
957 return rettype
958 end
959 end
960
961 redef class AVarReassignExpr
962 redef fun accept_typing(v)
963 do
964 var variable = self.variable
965 assert variable != null
966
967 var readtype = v.get_variable(self, variable)
968 if readtype == null then return
969
970 read_type = readtype
971
972 var writetype = variable.declared_type
973 if writetype == null then return
974
975 var rettype = self.resolve_reassignment(v, readtype, writetype)
976
977 v.set_variable(self, variable, rettype)
978
979 self.is_typed = rettype != null
980 end
981 end
982
983
984 redef class AContinueExpr
985 redef fun accept_typing(v)
986 do
987 var nexpr = self.n_expr
988 if nexpr != null then
989 v.visit_expr(nexpr)
990 end
991 self.is_typed = true
992 end
993 end
994
995 redef class ABreakExpr
996 redef fun accept_typing(v)
997 do
998 var nexpr = self.n_expr
999 if nexpr != null then
1000 v.visit_expr(nexpr)
1001 end
1002 self.is_typed = true
1003 end
1004 end
1005
1006 redef class AReturnExpr
1007 redef fun accept_typing(v)
1008 do
1009 var nexpr = self.n_expr
1010 var ret_type
1011 var mpropdef = v.mpropdef
1012 if mpropdef isa MMethodDef then
1013 ret_type = mpropdef.msignature.return_mtype
1014 else if mpropdef isa MAttributeDef then
1015 ret_type = mpropdef.static_mtype
1016 else
1017 abort
1018 end
1019 if nexpr != null then
1020 if ret_type != null then
1021 v.visit_expr_subtype(nexpr, ret_type)
1022 else
1023 v.visit_expr(nexpr)
1024 v.error(nexpr, "Error: `return` with value in a procedure.")
1025 return
1026 end
1027 else if ret_type != null then
1028 v.error(self, "Error: `return` without value in a function.")
1029 return
1030 end
1031 self.is_typed = true
1032 end
1033 end
1034
1035 redef class AAbortExpr
1036 redef fun accept_typing(v)
1037 do
1038 self.is_typed = true
1039 end
1040 end
1041
1042 redef class AIfExpr
1043 redef fun accept_typing(v)
1044 do
1045 v.visit_expr_bool(n_expr)
1046
1047 v.visit_stmt(n_then)
1048 v.visit_stmt(n_else)
1049
1050 self.is_typed = true
1051
1052 if n_then != null and n_else == null then
1053 self.mtype = n_then.mtype
1054 end
1055 end
1056 end
1057
1058 redef class AIfexprExpr
1059 redef fun accept_typing(v)
1060 do
1061 v.visit_expr_bool(n_expr)
1062
1063 var t1 = v.visit_expr(n_then)
1064 var t2 = v.visit_expr(n_else)
1065
1066 if t1 == null or t2 == null then
1067 return # Skip error
1068 end
1069
1070 var t = v.merge_types(self, [t1, t2])
1071 if t == null then
1072 v.error(self, "Type Error: ambiguous type `{t1}` vs `{t2}`.")
1073 end
1074 self.mtype = t
1075 end
1076 end
1077
1078 redef class ADoExpr
1079 redef fun accept_typing(v)
1080 do
1081 v.visit_stmt(n_block)
1082 self.is_typed = true
1083 end
1084 end
1085
1086 redef class AWhileExpr
1087 redef fun accept_typing(v)
1088 do
1089 v.has_loop = true
1090 v.visit_expr_bool(n_expr)
1091 v.visit_stmt(n_block)
1092 self.is_typed = true
1093 end
1094 end
1095
1096 redef class ALoopExpr
1097 redef fun accept_typing(v)
1098 do
1099 v.has_loop = true
1100 v.visit_stmt(n_block)
1101 self.is_typed = true
1102 end
1103 end
1104
1105 redef class AForExpr
1106 var coltype: nullable MClassType
1107
1108 var method_iterator: nullable CallSite
1109 var method_is_ok: nullable CallSite
1110 var method_item: nullable CallSite
1111 var method_next: nullable CallSite
1112 var method_key: nullable CallSite
1113 var method_finish: nullable CallSite
1114
1115 var method_lt: nullable CallSite
1116 var method_successor: nullable CallSite
1117
1118 private fun do_type_iterator(v: TypeVisitor, mtype: MType)
1119 do
1120 if mtype isa MNullType then
1121 v.error(self, "Type Error: `for` cannot iterate over `null`.")
1122 return
1123 end
1124
1125 # get obj class
1126 var objcla = v.get_mclass(self, "Object")
1127 if objcla == null then return
1128
1129 # check iterator method
1130 var itdef = v.get_method(self, mtype, "iterator", n_expr isa ASelfExpr)
1131 if itdef == null then
1132 v.error(self, "Type Error: `for` expects a type providing an `iterator` method, got `{mtype}`.")
1133 return
1134 end
1135 self.method_iterator = itdef
1136
1137 # check that iterator return something
1138 var ittype = itdef.msignature.return_mtype
1139 if ittype == null then
1140 v.error(self, "Type Error: `for` expects the method `iterator` to return an `Iterator` or `MapIterator` type.")
1141 return
1142 end
1143
1144 # get iterator type
1145 var colit_cla = v.try_get_mclass(self, "Iterator")
1146 var mapit_cla = v.try_get_mclass(self, "MapIterator")
1147 var is_col = false
1148 var is_map = false
1149
1150 if colit_cla != null and v.is_subtype(ittype, colit_cla.get_mtype([objcla.mclass_type.as_nullable])) then
1151 # Iterator
1152 var coltype = ittype.supertype_to(v.mmodule, v.anchor, colit_cla)
1153 var variables = self.variables
1154 if variables.length != 1 then
1155 v.error(self, "Type Error: `for` expects only one variable when using `Iterator`.")
1156 else
1157 variables.first.declared_type = coltype.arguments.first
1158 end
1159 is_col = true
1160 end
1161
1162 if mapit_cla != null and v.is_subtype(ittype, mapit_cla.get_mtype([objcla.mclass_type.as_nullable, objcla.mclass_type.as_nullable])) then
1163 # Map Iterator
1164 var coltype = ittype.supertype_to(v.mmodule, v.anchor, mapit_cla)
1165 var variables = self.variables
1166 if variables.length != 2 then
1167 v.error(self, "Type Error: `for` expects two variables when using `MapIterator`.")
1168 else
1169 variables[0].declared_type = coltype.arguments[0]
1170 variables[1].declared_type = coltype.arguments[1]
1171 end
1172 is_map = true
1173 end
1174
1175 if not is_col and not is_map then
1176 v.error(self, "Type Error: `for` expects the method `iterator` to return an `Iterator` or `MapIterator` type.")
1177 return
1178 end
1179
1180 # anchor formal and virtual types
1181 if mtype.need_anchor then mtype = v.anchor_to(mtype)
1182
1183 mtype = mtype.undecorate
1184 self.coltype = mtype.as(MClassType)
1185
1186 # get methods is_ok, next, item
1187 var ikdef = v.get_method(self, ittype, "is_ok", false)
1188 if ikdef == null then
1189 v.error(self, "Type Error: `for` expects a method `is_ok` in type `{ittype}`.")
1190 return
1191 end
1192 self.method_is_ok = ikdef
1193
1194 var itemdef = v.get_method(self, ittype, "item", false)
1195 if itemdef == null then
1196 v.error(self, "Type Error: `for` expects a method `item` in type `{ittype}`.")
1197 return
1198 end
1199 self.method_item = itemdef
1200
1201 var nextdef = v.get_method(self, ittype, "next", false)
1202 if nextdef == null then
1203 v.error(self, "Type Error: `for` expects a method `next` in type {ittype}.")
1204 return
1205 end
1206 self.method_next = nextdef
1207
1208 self.method_finish = v.try_get_method(self, ittype, "finish", false)
1209
1210 if is_map then
1211 var keydef = v.get_method(self, ittype, "key", false)
1212 if keydef == null then
1213 v.error(self, "Type Error: `for` expects a method `key` in type `{ittype}`.")
1214 return
1215 end
1216 self.method_key = keydef
1217 end
1218
1219 if self.variables.length == 1 and n_expr isa ARangeExpr then
1220 var variable = variables.first
1221 var vtype = variable.declared_type.as(not null)
1222
1223 if n_expr isa AOrangeExpr then
1224 self.method_lt = v.get_method(self, vtype, "<", false)
1225 else
1226 self.method_lt = v.get_method(self, vtype, "<=", false)
1227 end
1228
1229 self.method_successor = v.get_method(self, vtype, "successor", false)
1230 end
1231 end
1232
1233 redef fun accept_typing(v)
1234 do
1235 v.has_loop = true
1236 var mtype = v.visit_expr(n_expr)
1237 if mtype == null then return
1238
1239 self.do_type_iterator(v, mtype)
1240
1241 v.visit_stmt(n_block)
1242
1243 self.mtype = n_block.mtype
1244 self.is_typed = true
1245 end
1246 end
1247
1248 redef class AWithExpr
1249 var method_start: nullable CallSite
1250 var method_finish: nullable CallSite
1251
1252 redef fun accept_typing(v: TypeVisitor)
1253 do
1254 var mtype = v.visit_expr(n_expr)
1255 if mtype == null then return
1256
1257 method_start = v.get_method(self, mtype, "start", n_expr isa ASelfExpr)
1258 method_finish = v.get_method(self, mtype, "finish", n_expr isa ASelfExpr)
1259
1260 v.visit_stmt(n_block)
1261 self.mtype = n_block.mtype
1262 self.is_typed = true
1263 end
1264 end
1265
1266 redef class AAssertExpr
1267 redef fun accept_typing(v)
1268 do
1269 v.visit_expr_bool(n_expr)
1270
1271 v.visit_stmt(n_else)
1272 self.is_typed = true
1273 end
1274 end
1275
1276 redef class AOrExpr
1277 redef fun accept_typing(v)
1278 do
1279 v.visit_expr_bool(n_expr)
1280 v.visit_expr_bool(n_expr2)
1281 self.mtype = v.type_bool(self)
1282 end
1283 end
1284
1285 redef class AImpliesExpr
1286 redef fun accept_typing(v)
1287 do
1288 v.visit_expr_bool(n_expr)
1289 v.visit_expr_bool(n_expr2)
1290 self.mtype = v.type_bool(self)
1291 end
1292 end
1293
1294 redef class AAndExpr
1295 redef fun accept_typing(v)
1296 do
1297 v.visit_expr_bool(n_expr)
1298 v.visit_expr_bool(n_expr2)
1299 self.mtype = v.type_bool(self)
1300 end
1301 end
1302
1303
1304 redef class ANotExpr
1305 redef fun accept_typing(v)
1306 do
1307 v.visit_expr_bool(n_expr)
1308 self.mtype = v.type_bool(self)
1309 end
1310 end
1311
1312 redef class AOrElseExpr
1313 redef fun accept_typing(v)
1314 do
1315 var t1 = v.visit_expr(n_expr)
1316 var t2 = v.visit_expr(n_expr2)
1317
1318 if t1 == null or t2 == null then
1319 return # Skip error
1320 end
1321
1322 if t1 isa MNullType then
1323 self.mtype = t2
1324 return
1325 else if v.can_be_null(t1) then
1326 t1 = t1.as_notnull
1327 end
1328
1329 var t = v.merge_types(self, [t1, t2])
1330 if t == null then
1331 var c = v.get_mclass(self, "Object")
1332 if c == null then return # forward error
1333 t = c.mclass_type
1334 if v.can_be_null(t2) then
1335 t = t.as_nullable
1336 end
1337 #v.error(self, "Type Error: ambiguous type {t1} vs {t2}")
1338 end
1339 self.mtype = t
1340 end
1341
1342 redef fun accept_post_typing(v)
1343 do
1344 var t1 = n_expr.mtype
1345 if t1 == null then
1346 return
1347 else
1348 v.check_can_be_null(n_expr, t1)
1349 end
1350 end
1351 end
1352
1353 redef class ATrueExpr
1354 redef fun accept_typing(v)
1355 do
1356 self.mtype = v.type_bool(self)
1357 end
1358 end
1359
1360 redef class AFalseExpr
1361 redef fun accept_typing(v)
1362 do
1363 self.mtype = v.type_bool(self)
1364 end
1365 end
1366
1367 redef class AIntExpr
1368 redef fun accept_typing(v)
1369 do
1370 var mclass = v.get_mclass(self, "Int")
1371 if mclass == null then return # Forward error
1372 self.mtype = mclass.mclass_type
1373 end
1374 end
1375
1376 redef class AByteExpr
1377 redef fun accept_typing(v)
1378 do
1379 var mclass = v.get_mclass(self, "Byte")
1380 if mclass == null then return # Forward error
1381 self.mtype = mclass.mclass_type
1382 end
1383 end
1384
1385 redef class AFloatExpr
1386 redef fun accept_typing(v)
1387 do
1388 var mclass = v.get_mclass(self, "Float")
1389 if mclass == null then return # Forward error
1390 self.mtype = mclass.mclass_type
1391 end
1392 end
1393
1394 redef class ACharExpr
1395 redef fun accept_typing(v)
1396 do
1397 var mclass = v.get_mclass(self, "Char")
1398 if mclass == null then return # Forward error
1399 self.mtype = mclass.mclass_type
1400 end
1401 end
1402
1403 redef class AStringFormExpr
1404 redef fun accept_typing(v)
1405 do
1406 var mclass = v.get_mclass(self, "String")
1407 if mclass == null then return # Forward error
1408 self.mtype = mclass.mclass_type
1409 end
1410 end
1411
1412 redef class ASuperstringExpr
1413 redef fun accept_typing(v)
1414 do
1415 var mclass = v.get_mclass(self, "String")
1416 if mclass == null then return # Forward error
1417 self.mtype = mclass.mclass_type
1418 var objclass = v.get_mclass(self, "Object")
1419 if objclass == null then return # Forward error
1420 var objtype = objclass.mclass_type
1421 for nexpr in self.n_exprs do
1422 v.visit_expr_subtype(nexpr, objtype)
1423 end
1424 end
1425 end
1426
1427 redef class AArrayExpr
1428 # The `with_capacity` method on Array
1429 var with_capacity_callsite: nullable CallSite
1430
1431 # The `push` method on arrays
1432 var push_callsite: nullable CallSite
1433
1434 # The element of each type
1435 var element_mtype: nullable MType
1436
1437 # Set that `self` is a part of comprehension array `na`
1438 # If `self` is a `for`, or a `if`, then `set_comprehension` is recursively applied.
1439 private fun set_comprehension(n: nullable AExpr)
1440 do
1441 if n == null then
1442 return
1443 else if n isa AForExpr then
1444 set_comprehension(n.n_block)
1445 else if n isa AIfExpr then
1446 set_comprehension(n.n_then)
1447 set_comprehension(n.n_else)
1448 else
1449 # is a leave
1450 n.comprehension = self
1451 end
1452 end
1453 redef fun accept_typing(v)
1454 do
1455 var mtype: nullable MType = null
1456 var ntype = self.n_type
1457 if ntype != null then
1458 mtype = v.resolve_mtype(ntype)
1459 if mtype == null then return # Skip error
1460 end
1461 var mtypes = new Array[nullable MType]
1462 var useless = false
1463 for e in self.n_exprs do
1464 var t = v.visit_expr(e)
1465 if t == null then
1466 return # Skip error
1467 end
1468 set_comprehension(e)
1469 if mtype != null then
1470 if v.check_subtype(e, t, mtype, false) == null then return # Forward error
1471 if t == mtype then useless = true
1472 else
1473 mtypes.add(t)
1474 end
1475 end
1476 if mtype == null then
1477 # Ensure monotony for type adaptation on loops
1478 if self.element_mtype != null then mtypes.add self.element_mtype
1479 mtype = v.merge_types(self, mtypes)
1480 end
1481 if mtype == null or mtype isa MNullType then
1482 v.error(self, "Type Error: ambiguous array type {mtypes.join(" ")}")
1483 return
1484 end
1485 if useless then
1486 assert ntype != null
1487 v.modelbuilder.warning(ntype, "useless-type", "Warning: useless type declaration `{mtype}` in literal Array since it can be inferred from the elements type.")
1488 end
1489
1490 self.element_mtype = mtype
1491
1492 var mclass = v.get_mclass(self, "Array")
1493 if mclass == null then return # Forward error
1494 var array_mtype = mclass.get_mtype([mtype])
1495
1496 with_capacity_callsite = v.get_method(self, array_mtype, "with_capacity", false)
1497 push_callsite = v.get_method(self, array_mtype, "push", false)
1498
1499 self.mtype = array_mtype
1500 end
1501 end
1502
1503 redef class ARangeExpr
1504 var init_callsite: nullable CallSite
1505
1506 redef fun accept_typing(v)
1507 do
1508 var discrete_class = v.get_mclass(self, "Discrete")
1509 if discrete_class == null then return # Forward error
1510 var discrete_type = discrete_class.intro.bound_mtype
1511 var t1 = v.visit_expr_subtype(self.n_expr, discrete_type)
1512 var t2 = v.visit_expr_subtype(self.n_expr2, discrete_type)
1513 if t1 == null or t2 == null then return
1514 var mclass = v.get_mclass(self, "Range")
1515 if mclass == null then return # Forward error
1516 var mtype
1517 if v.is_subtype(t1, t2) then
1518 mtype = mclass.get_mtype([t2])
1519 else if v.is_subtype(t2, t1) then
1520 mtype = mclass.get_mtype([t1])
1521 else
1522 v.error(self, "Type Error: cannot create range: `{t1}` vs `{t2}`.")
1523 return
1524 end
1525
1526 self.mtype = mtype
1527
1528 # get the constructor
1529 var callsite
1530 if self isa ACrangeExpr then
1531 callsite = v.get_method(self, mtype, "init", false)
1532 else if self isa AOrangeExpr then
1533 callsite = v.get_method(self, mtype, "without_last", false)
1534 else
1535 abort
1536 end
1537 init_callsite = callsite
1538 end
1539 end
1540
1541 redef class ANullExpr
1542 redef fun accept_typing(v)
1543 do
1544 self.mtype = v.mmodule.model.null_type
1545 end
1546 end
1547
1548 redef class AIsaExpr
1549 # The static type to cast to.
1550 # (different from the static type of the expression that is `Bool`).
1551 var cast_type: nullable MType
1552 redef fun accept_typing(v)
1553 do
1554 v.visit_expr(n_expr)
1555
1556 var mtype = v.resolve_mtype(n_type)
1557
1558 self.cast_type = mtype
1559
1560 var variable = self.n_expr.its_variable
1561 if variable != null then
1562 #var orig = self.n_expr.mtype
1563 #var from = if orig != null then orig.to_s else "invalid"
1564 #var to = if mtype != null then mtype.to_s else "invalid"
1565 #debug("adapt {variable}: {from} -> {to}")
1566 self.after_flow_context.when_true.set_var(v, variable, mtype)
1567 end
1568
1569 self.mtype = v.type_bool(self)
1570 end
1571
1572 redef fun accept_post_typing(v)
1573 do
1574 v.check_expr_cast(self, self.n_expr, self.n_type)
1575 end
1576 end
1577
1578 redef class AAsCastExpr
1579 redef fun accept_typing(v)
1580 do
1581 v.visit_expr(n_expr)
1582
1583 self.mtype = v.resolve_mtype(n_type)
1584 end
1585
1586 redef fun accept_post_typing(v)
1587 do
1588 v.check_expr_cast(self, self.n_expr, self.n_type)
1589 end
1590 end
1591
1592 redef class AAsNotnullExpr
1593 redef fun accept_typing(v)
1594 do
1595 var mtype = v.visit_expr(self.n_expr)
1596 if mtype == null then return # Forward error
1597
1598 if mtype isa MNullType then
1599 v.error(self, "Type Error: `as(not null)` on `null`.")
1600 return
1601 end
1602
1603 if v.can_be_null(mtype) then
1604 mtype = mtype.as_notnull
1605 end
1606
1607 self.mtype = mtype
1608 end
1609
1610 redef fun accept_post_typing(v)
1611 do
1612 var mtype = n_expr.mtype
1613 if mtype == null then return
1614 v.check_can_be_null(n_expr, mtype)
1615 end
1616 end
1617
1618 redef class AParExpr
1619 redef fun accept_typing(v)
1620 do
1621 self.mtype = v.visit_expr(self.n_expr)
1622 end
1623 end
1624
1625 redef class AOnceExpr
1626 redef fun accept_typing(v)
1627 do
1628 self.mtype = v.visit_expr(self.n_expr)
1629 end
1630 end
1631
1632 redef class ASelfExpr
1633 redef var its_variable: nullable Variable
1634 redef fun accept_typing(v)
1635 do
1636 if v.is_toplevel_context and not self isa AImplicitSelfExpr then
1637 v.error(self, "Error: `self` cannot be used in top-level method.")
1638 end
1639 var variable = v.selfvariable
1640 self.its_variable = variable
1641 self.mtype = v.get_variable(self, variable)
1642 end
1643 end
1644
1645 redef class AImplicitSelfExpr
1646 # Is the implicit receiver `sys`?
1647 #
1648 # By default, the implicit receiver is `self`.
1649 # But when there is not method for `self`, `sys` is used as a fall-back.
1650 # Is this case this flag is set to `true`.
1651 var is_sys = false
1652 end
1653
1654 ## MESSAGE SENDING AND PROPERTY
1655
1656 redef class ASendExpr
1657 # The property invoked by the send.
1658 var callsite: nullable CallSite
1659
1660 redef fun accept_typing(v)
1661 do
1662 var nrecv = self.n_expr
1663 var recvtype = v.visit_expr(nrecv)
1664 var name = self.property_name
1665 var node = self.property_node
1666
1667 if recvtype == null then return # Forward error
1668
1669 var callsite = null
1670 var unsafe_type = v.anchor_to(recvtype)
1671 var mproperty = v.try_get_mproperty_by_name2(node, unsafe_type, name)
1672 if mproperty == null and nrecv isa AImplicitSelfExpr then
1673 # Special fall-back search in `sys` when noting found in the implicit receiver.
1674 var sysclass = v.try_get_mclass(node, "Sys")
1675 if sysclass != null then
1676 var systype = sysclass.mclass_type
1677 mproperty = v.try_get_mproperty_by_name2(node, systype, name)
1678 if mproperty != null then
1679 callsite = v.get_method(node, systype, name, false)
1680 if callsite == null then return # Forward error
1681 # Update information, we are looking at `sys` now, not `self`
1682 nrecv.is_sys = true
1683 nrecv.its_variable = null
1684 nrecv.mtype = systype
1685 recvtype = systype
1686 end
1687 end
1688 end
1689 if callsite == null then
1690 # If still nothing, just exit
1691 callsite = v.get_method(node, recvtype, name, nrecv isa ASelfExpr)
1692 if callsite == null then return
1693 end
1694
1695 self.callsite = callsite
1696 var msignature = callsite.msignature
1697
1698 var args = compute_raw_arguments
1699
1700 callsite.check_signature(v, args)
1701
1702 if callsite.mproperty.is_init then
1703 var vmpropdef = v.mpropdef
1704 if not (vmpropdef isa MMethodDef and vmpropdef.mproperty.is_init) then
1705 v.error(node, "Error: an `init` can only be called from another `init`.")
1706 end
1707 if vmpropdef isa MMethodDef and vmpropdef.mproperty.is_root_init and not callsite.mproperty.is_root_init then
1708 v.error(node, "Error: `{vmpropdef}` cannot call a factory `{callsite.mproperty}`.")
1709 end
1710 end
1711
1712 var ret = msignature.return_mtype
1713 if ret != null then
1714 self.mtype = ret
1715 else
1716 self.is_typed = true
1717 end
1718 end
1719
1720 # The name of the property
1721 # Each subclass simply provide the correct name.
1722 private fun property_name: String is abstract
1723
1724 # The node identifying the name (id, operator, etc) for messages.
1725 #
1726 # Is `self` by default
1727 private fun property_node: ANode do return self
1728
1729 # An array of all arguments (excluding self)
1730 fun raw_arguments: Array[AExpr] do return compute_raw_arguments
1731
1732 private fun compute_raw_arguments: Array[AExpr] is abstract
1733 end
1734
1735 redef class ABinopExpr
1736 redef fun compute_raw_arguments do return [n_expr2]
1737 redef fun property_name do return operator
1738 redef fun property_node do return n_op
1739 end
1740
1741 redef class AEqFormExpr
1742 redef fun accept_typing(v)
1743 do
1744 super
1745 v.null_test(self)
1746 end
1747
1748 redef fun accept_post_typing(v)
1749 do
1750 var mtype = n_expr.mtype
1751 var mtype2 = n_expr2.mtype
1752
1753 if mtype == null or mtype2 == null then return
1754
1755 if not mtype2 isa MNullType then return
1756
1757 v.check_can_be_null(n_expr, mtype)
1758 end
1759 end
1760
1761 redef class AUnaryopExpr
1762 redef fun property_name do return "unary {operator}"
1763 redef fun compute_raw_arguments do return new Array[AExpr]
1764 end
1765
1766
1767 redef class ACallExpr
1768 redef fun property_name do return n_id.text
1769 redef fun property_node do return n_id
1770 redef fun compute_raw_arguments do return n_args.to_a
1771 end
1772
1773 redef class ACallAssignExpr
1774 redef fun property_name do return n_id.text + "="
1775 redef fun property_node do return n_id
1776 redef fun compute_raw_arguments
1777 do
1778 var res = n_args.to_a
1779 res.add(n_value)
1780 return res
1781 end
1782 end
1783
1784 redef class ABraExpr
1785 redef fun property_name do return "[]"
1786 redef fun compute_raw_arguments do return n_args.to_a
1787 end
1788
1789 redef class ABraAssignExpr
1790 redef fun property_name do return "[]="
1791 redef fun compute_raw_arguments
1792 do
1793 var res = n_args.to_a
1794 res.add(n_value)
1795 return res
1796 end
1797 end
1798
1799 redef class ASendReassignFormExpr
1800 # The property invoked for the writing
1801 var write_callsite: nullable CallSite
1802
1803 redef fun accept_typing(v)
1804 do
1805 var recvtype = v.visit_expr(self.n_expr)
1806 var name = self.property_name
1807 var node = self.property_node
1808
1809 if recvtype == null then return # Forward error
1810
1811 var for_self = self.n_expr isa ASelfExpr
1812 var callsite = v.get_method(node, recvtype, name, for_self)
1813
1814 if callsite == null then return
1815 self.callsite = callsite
1816
1817 var args = compute_raw_arguments
1818
1819 callsite.check_signature(v, args)
1820
1821 var readtype = callsite.msignature.return_mtype
1822 if readtype == null then
1823 v.error(node, "Error: `{name}` is not a function.")
1824 return
1825 end
1826
1827 var wcallsite = v.get_method(node, recvtype, name + "=", self.n_expr isa ASelfExpr)
1828 if wcallsite == null then return
1829 self.write_callsite = wcallsite
1830
1831 var wtype = self.resolve_reassignment(v, readtype, wcallsite.msignature.mparameters.last.mtype)
1832 if wtype == null then return
1833
1834 args = args.to_a # duplicate so raw_arguments keeps only the getter args
1835 args.add(self.n_value)
1836 wcallsite.check_signature(v, args)
1837
1838 self.is_typed = true
1839 end
1840 end
1841
1842 redef class ACallReassignExpr
1843 redef fun property_name do return n_id.text
1844 redef fun property_node do return n_id
1845 redef fun compute_raw_arguments do return n_args.to_a
1846 end
1847
1848 redef class ABraReassignExpr
1849 redef fun property_name do return "[]"
1850 redef fun compute_raw_arguments do return n_args.to_a
1851 end
1852
1853 redef class AInitExpr
1854 redef fun property_name do return "init"
1855 redef fun property_node do return n_kwinit
1856 redef fun compute_raw_arguments do return n_args.to_a
1857 end
1858
1859 redef class AExprs
1860 fun to_a: Array[AExpr] do return self.n_exprs.to_a
1861 end
1862
1863 ###
1864
1865 redef class ASuperExpr
1866 # The method to call if the super is in fact a 'super init call'
1867 # Note: if the super is a normal call-next-method, then this attribute is null
1868 var callsite: nullable CallSite
1869
1870 # The method to call is the super is a standard `call-next-method` super-call
1871 # Note: if the super is a special super-init-call, then this attribute is null
1872 var mpropdef: nullable MMethodDef
1873
1874 redef fun accept_typing(v)
1875 do
1876 var anchor = v.anchor
1877 assert anchor != null
1878 var recvtype = v.get_variable(self, v.selfvariable)
1879 assert recvtype != null
1880 var mproperty = v.mpropdef.mproperty
1881 if not mproperty isa MMethod then
1882 v.error(self, "Error: `super` only usable in a `method`.")
1883 return
1884 end
1885 var superprops = mproperty.lookup_super_definitions(v.mmodule, anchor)
1886 if superprops.length == 0 then
1887 if mproperty.is_init and v.mpropdef.is_intro then
1888 process_superinit(v)
1889 return
1890 end
1891 v.error(self, "Error: no super method to call for `{mproperty}`.")
1892 return
1893 end
1894 # FIXME: covariance of return type in linear extension?
1895 var superprop = superprops.first
1896
1897 var msignature = superprop.msignature.as(not null)
1898 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
1899 var args = self.n_args.to_a
1900 if args.length > 0 then
1901 signaturemap = v.check_signature(self, args, mproperty, msignature)
1902 end
1903 self.mtype = msignature.return_mtype
1904 self.is_typed = true
1905 v.mpropdef.has_supercall = true
1906 mpropdef = v.mpropdef.as(MMethodDef)
1907 end
1908
1909 # The mapping used on the call to associate arguments to parameters.
1910 # If null then no specific association is required.
1911 var signaturemap: nullable SignatureMap
1912
1913 private fun process_superinit(v: TypeVisitor)
1914 do
1915 var anchor = v.anchor
1916 assert anchor != null
1917 var recvtype = v.get_variable(self, v.selfvariable)
1918 assert recvtype != null
1919 var mpropdef = v.mpropdef
1920 assert mpropdef isa MMethodDef
1921 var mproperty = mpropdef.mproperty
1922 var superprop: nullable MMethodDef = null
1923 for msupertype in mpropdef.mclassdef.supertypes do
1924 msupertype = msupertype.anchor_to(v.mmodule, anchor)
1925 var errcount = v.modelbuilder.toolcontext.error_count
1926 var candidate = v.try_get_mproperty_by_name2(self, msupertype, mproperty.name).as(nullable MMethod)
1927 if candidate == null then
1928 if v.modelbuilder.toolcontext.error_count > errcount then return # Forward error
1929 continue # Try next super-class
1930 end
1931 if superprop != null and candidate.is_root_init then
1932 continue
1933 end
1934 if superprop != null and superprop.mproperty != candidate and not superprop.mproperty.is_root_init then
1935 v.error(self, "Error: conflicting super constructor to call for `{mproperty}`: `{candidate.full_name}`, `{superprop.mproperty.full_name}`")
1936 return
1937 end
1938 var candidatedefs = candidate.lookup_definitions(v.mmodule, anchor)
1939 if superprop != null and superprop.mproperty == candidate then
1940 if superprop == candidatedefs.first then continue
1941 candidatedefs.add(superprop)
1942 end
1943 if candidatedefs.length > 1 then
1944 v.error(self, "Error: conflicting property definitions for property `{mproperty}` in `{recvtype}`: {candidatedefs.join(", ")}")
1945 return
1946 end
1947 superprop = candidatedefs.first
1948 end
1949 if superprop == null then
1950 v.error(self, "Error: no super method to call for `{mproperty}`.")
1951 return
1952 end
1953
1954 var msignature = superprop.new_msignature or else superprop.msignature.as(not null)
1955 msignature = v.resolve_for(msignature, recvtype, true).as(MSignature)
1956
1957 var callsite = new CallSite(self, recvtype, v.mmodule, v.anchor, true, superprop.mproperty, superprop, msignature, false)
1958 self.callsite = callsite
1959
1960 var args = self.n_args.to_a
1961 if args.length > 0 then
1962 callsite.check_signature(v, args)
1963 else
1964 # Check there is at least enough parameters
1965 if mpropdef.msignature.arity < msignature.arity then
1966 v.error(self, "Error: not enough implicit arguments to pass. Got `{mpropdef.msignature.arity}`, expected at least `{msignature.arity}`. Signature is `{msignature}`.")
1967 return
1968 end
1969 # Check that each needed parameter is conform
1970 var i = 0
1971 for sp in msignature.mparameters do
1972 var p = mpropdef.msignature.mparameters[i]
1973 if not v.is_subtype(p.mtype, sp.mtype) then
1974 v.error(self, "Type Error: expected argument #{i} of type `{sp.mtype}`, got implicit argument `{p.name}` of type `{p.mtype}`. Signature is {msignature}")
1975 return
1976 end
1977 i += 1
1978 end
1979 end
1980
1981 self.is_typed = true
1982 end
1983 end
1984
1985 ####
1986
1987 redef class ANewExpr
1988 # The constructor invoked by the new.
1989 var callsite: nullable CallSite
1990
1991 # The designated type
1992 var recvtype: nullable MClassType
1993
1994 redef fun accept_typing(v)
1995 do
1996 var recvtype = v.resolve_mtype(self.n_type)
1997 if recvtype == null then return
1998
1999 if not recvtype isa MClassType then
2000 if recvtype isa MNullableType then
2001 v.error(self, "Type Error: cannot instantiate the nullable type `{recvtype}`.")
2002 return
2003 else if recvtype isa MFormalType then
2004 v.error(self, "Type Error: cannot instantiate the formal type `{recvtype}`.")
2005 return
2006 else
2007 v.error(self, "Type Error: cannot instantiate the type `{recvtype}`.")
2008 return
2009 end
2010 end
2011
2012 self.recvtype = recvtype
2013 var kind = recvtype.mclass.kind
2014
2015 var name: String
2016 var nid = self.n_id
2017 var node: ANode
2018 if nid != null then
2019 name = nid.text
2020 node = nid
2021 else
2022 name = "new"
2023 node = self.n_kwnew
2024 end
2025 if name == "intern" then
2026 if kind != concrete_kind then
2027 v.error(self, "Type Error: cannot instantiate {kind} {recvtype}.")
2028 return
2029 end
2030 if n_args.n_exprs.not_empty then
2031 v.error(n_args, "Type Error: the intern constructor expects no arguments.")
2032 return
2033 end
2034 # Our job is done
2035 self.mtype = recvtype
2036 return
2037 end
2038
2039 var callsite = v.get_method(node, recvtype, name, false)
2040 if callsite == null then return
2041
2042 if not callsite.mproperty.is_new then
2043 if kind != concrete_kind then
2044 v.error(self, "Type Error: cannot instantiate {kind} `{recvtype}`.")
2045 return
2046 end
2047 self.mtype = recvtype
2048 else
2049 self.mtype = callsite.msignature.return_mtype
2050 assert self.mtype != null
2051 end
2052
2053 self.callsite = callsite
2054
2055 if not callsite.mproperty.is_init_for(recvtype.mclass) then
2056 v.error(self, "Error: `{name}` is not a constructor.")
2057 return
2058 end
2059
2060 var args = n_args.to_a
2061 callsite.check_signature(v, args)
2062 end
2063 end
2064
2065 ####
2066
2067 redef class AAttrFormExpr
2068 # The attribute accessed.
2069 var mproperty: nullable MAttribute
2070
2071 # The static type of the attribute.
2072 var attr_type: nullable MType
2073
2074 # Resolve the attribute accessed.
2075 private fun resolve_property(v: TypeVisitor)
2076 do
2077 var recvtype = v.visit_expr(self.n_expr)
2078 if recvtype == null then return # Skip error
2079 var node = self.n_id
2080 var name = node.text
2081 if recvtype isa MNullType then
2082 v.error(node, "Error: attribute `{name}` access on `null`.")
2083 return
2084 end
2085
2086 var unsafe_type = v.anchor_to(recvtype)
2087 var mproperty = v.try_get_mproperty_by_name2(node, unsafe_type, name)
2088 if mproperty == null then
2089 v.modelbuilder.error(node, "Error: attribute `{name}` does not exist in `{recvtype}`.")
2090 return
2091 end
2092 assert mproperty isa MAttribute
2093 self.mproperty = mproperty
2094
2095 var mpropdefs = mproperty.lookup_definitions(v.mmodule, unsafe_type)
2096 assert mpropdefs.length == 1
2097 var mpropdef = mpropdefs.first
2098 var attr_type = mpropdef.static_mtype
2099 if attr_type == null then return # skip error
2100 attr_type = v.resolve_for(attr_type, recvtype, self.n_expr isa ASelfExpr)
2101 self.attr_type = attr_type
2102 end
2103 end
2104
2105 redef class AAttrExpr
2106 redef fun accept_typing(v)
2107 do
2108 self.resolve_property(v)
2109 self.mtype = self.attr_type
2110 end
2111 end
2112
2113
2114 redef class AAttrAssignExpr
2115 redef fun accept_typing(v)
2116 do
2117 self.resolve_property(v)
2118 var mtype = self.attr_type
2119
2120 v.visit_expr_subtype(self.n_value, mtype)
2121 self.is_typed = mtype != null
2122 end
2123 end
2124
2125 redef class AAttrReassignExpr
2126 redef fun accept_typing(v)
2127 do
2128 self.resolve_property(v)
2129 var mtype = self.attr_type
2130 if mtype == null then return # Skip error
2131
2132 var rettype = self.resolve_reassignment(v, mtype, mtype)
2133
2134 self.is_typed = rettype != null
2135 end
2136 end
2137
2138 redef class AIssetAttrExpr
2139 redef fun accept_typing(v)
2140 do
2141 self.resolve_property(v)
2142 var mtype = self.attr_type
2143 if mtype == null then return # Skip error
2144
2145 var recvtype = self.n_expr.mtype.as(not null)
2146 var bound = v.resolve_for(mtype, recvtype, false)
2147 if bound isa MNullableType then
2148 v.error(n_id, "Type Error: `isset` on a nullable attribute.")
2149 end
2150 self.mtype = v.type_bool(self)
2151 end
2152 end
2153
2154 redef class AVarargExpr
2155 redef fun accept_typing(v)
2156 do
2157 # This kind of pseudo-expression can be only processed trough a signature
2158 # See `check_signature`
2159 # Other cases are a syntax error.
2160 v.error(self, "Syntax Error: unexpected `...`.")
2161 end
2162 end
2163
2164 ###
2165
2166 redef class ADebugTypeExpr
2167 redef fun accept_typing(v)
2168 do
2169 var expr = v.visit_expr(self.n_expr)
2170 if expr == null then return
2171 var unsafe = v.anchor_to(expr)
2172 var ntype = self.n_type
2173 var mtype = v.resolve_mtype(ntype)
2174 if mtype != null and mtype != expr then
2175 var umtype = v.anchor_to(mtype)
2176 v.modelbuilder.warning(self, "debug", "Found type {expr} (-> {unsafe}), expected {mtype} (-> {umtype})")
2177 end
2178 self.is_typed = true
2179 end
2180 end