src: improve messages (and sometime location) of errors and warnings
[nit.git] / src / rapid_type_analysis.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
18 # Rapid type analysis on the AST
19 #
20 # Rapid type analysis is an analyse that aproximates the set of live classes
21 # and the set of live methods starting from the entry point of the program.
22 # These two sets are interdependant and computed together.
23 # It is quite efficient but the type set is global and pollutes each call site.
24 module rapid_type_analysis
25
26 import semantize
27
28 private import csv # for live_types_to_csv
29 private import ordered_tree # for live_methods_to_tree
30
31 private import more_collections
32
33 redef class ModelBuilder
34 # Performs a rapid-type-analysis on the program associated with `mainmodule`.
35 fun do_rapid_type_analysis(mainmodule: MModule): RapidTypeAnalysis
36 do
37 var analysis = new RapidTypeAnalysis(self, mainmodule)
38 analysis.run_analysis
39
40 if toolcontext.opt_log.value then
41 var basename = toolcontext.log_directory / mainmodule.name
42 analysis.live_methods_to_tree.write_to_file(basename + ".rta_methods.txt")
43 analysis.live_types_to_csv.write_to_file(basename + ".rta_types.csv")
44 end
45
46 return analysis
47 end
48 end
49
50 # RapidTypeAnalysis looks for alive rapid types in application.
51 # The entry point of the analysis is the mainmodule of the application.
52 class RapidTypeAnalysis
53 # The modelbuilder used to get the AST.
54 var modelbuilder: ModelBuilder
55
56 # The main module of the analysis.
57 # Used to perform types operations.
58 var mainmodule: MModule
59
60 # The pool to live types.
61 # During the analysis, new types are added and combined with
62 # live_methods to determine new methoddefs to visit
63 var live_types = new HashSet[MClassType]
64
65 # The pool of undesolved live types
66 # They are globally resolved at the end of the analaysis
67 var live_open_types = new HashSet[MClassType]
68
69 # Live (instantiated) classes.
70 var live_classes = new HashSet[MClass]
71
72 # The pool of types used to perform type checks (isa and as).
73 var live_cast_types = new HashSet[MType]
74
75 # The pool of undesolved types used to perform type checks (isa and as).
76 # They are globally resolved at the end of the analaysis
77 var live_open_cast_types = new HashSet[MType]
78
79 # Live method definitions.
80 var live_methoddefs = new HashSet[MMethodDef]
81
82 # Live methods.
83 var live_methods = new HashSet[MMethod]
84
85 # Live callsites.
86 var live_callsites = new HashSet[CallSite]
87
88 private var live_targets_cache = new HashMap2[MType, MProperty, Set[MMethodDef]]
89
90 # The live targets of a specific callsite.
91 fun live_targets(callsite: CallSite): Set[MMethodDef]
92 do
93 var mtype = callsite.recv
94 var anchor = callsite.anchor
95 if anchor != null then mtype = mtype.anchor_to(callsite.mmodule, anchor)
96 mtype = mtype.undecorate
97 if mtype isa MClassType then mtype = mtype.mclass.intro.bound_mtype
98 var mproperty = callsite.mproperty
99 var res = live_targets_cache[mtype, mproperty]
100 if res != null then return res
101 res = new ArraySet[MMethodDef]
102 live_targets_cache[mtype, mproperty] = res
103
104 for c in live_classes do
105 var tc = c.intro.bound_mtype
106 if not tc.is_subtype(mainmodule, null, mtype) then continue
107 var d = mproperty.lookup_first_definition(mainmodule, tc)
108 res.add d
109 end
110
111 return res
112 end
113
114 # Live call-to-super.
115 var live_super_sends = new HashSet[MMethodDef]
116
117 # Return a ready-to-save CSV document objet that agregates informations about live types.
118 # Each discovered type is listed in a line, with its status: resolution, liveness, cast-liveness.
119 # Note: types are listed in an alphanumeric order to improve human reading.
120 fun live_types_to_csv: CsvDocument
121 do
122 # Gather all kind of type
123 var typeset = new HashSet[MType]
124 typeset.add_all(live_types)
125 typeset.add_all(live_open_types)
126 typeset.add_all(live_cast_types)
127 typeset.add_all(live_open_cast_types)
128 var types = typeset.to_a
129 (new CachedAlphaComparator).sort(types)
130 var res = new CsvDocument
131 res.format = new CsvFormat('"', ';', "\n")
132 res.header = ["Type", "Resolution", "Liveness", "Cast-liveness"]
133 for t in types do
134 var reso
135 if t.need_anchor then reso = "OPEN " else reso = "CLOSED"
136 var live
137 if t isa MClassType and (live_types.has(t) or live_open_types.has(t)) then live = "LIVE" else live = "DEAD"
138 var cast
139 if live_cast_types.has(t) or live_open_cast_types.has(t) then cast = "CAST LIVE" else cast = "CAST DEAD"
140 res.add_record(t, reso, live, cast)
141 end
142 return res
143 end
144
145 # Return a ready-to-save OrderedTree object that agregates infomration about live methods.
146 # Note: methods are listed in an alphanumeric order to improve human reading.
147 fun live_methods_to_tree: OrderedTree[Object]
148 do
149 var tree = new OrderedTree[Object]
150 for x in live_methods do
151 var xn = x.full_name
152 tree.add(null, xn)
153 for z in x.mpropdefs do
154 var zn = z.to_s
155 if live_methoddefs.has(z) then
156 tree.add(xn, zn)
157 if live_super_sends.has(z) then
158 tree.add(zn, zn + "(super)")
159 end
160 else if live_super_sends.has(z) then
161 tree.add(xn, zn + "(super)")
162 end
163 end
164 end
165 tree.sort_with(alpha_comparator)
166 return tree
167 end
168
169 # Methods that are still candidate to the try_send
170 private var totry_methods = new HashSet[MMethod]
171
172 # Methods that are are no more candidate to the try_send
173 private var totry_methods_to_remove = new Array[MMethod]
174
175 # Methods that are or were candidate to the try_send
176 # Used to ensure that try_send is only used once
177 private var try_methods = new HashSet[MMethod]
178
179 # The method definitions that remain to visit
180 private var todo = new List[MMethodDef]
181
182 private fun force_alive(classname: String)
183 do
184 var classes = self.modelbuilder.model.get_mclasses_by_name(classname)
185 if classes != null then for c in classes do self.add_new(c.mclass_type, c.mclass_type)
186 end
187
188 # Run the analysis until all visitable method definitions are visited.
189 fun run_analysis
190 do
191 var maintype = mainmodule.sys_type
192 if maintype == null then return # No entry point
193 add_new(maintype, maintype)
194 var initprop = mainmodule.try_get_primitive_method("init", maintype.mclass)
195 if initprop != null then
196 add_send(maintype, initprop)
197 end
198 var mainprop = mainmodule.try_get_primitive_method("run", maintype.mclass) or else
199 mainmodule.try_get_primitive_method("main", maintype.mclass)
200 if mainprop != null then
201 add_send(maintype, mainprop)
202 end
203
204 var finalizable_type = mainmodule.finalizable_type
205 if finalizable_type != null then
206 var finalize_meth = mainmodule.try_get_primitive_method("finalize", finalizable_type.mclass)
207 if finalize_meth != null then add_send(finalizable_type, finalize_meth)
208 end
209
210 # Force primitive types
211 force_alive("Bool")
212 force_alive("Int")
213 force_alive("Float")
214 force_alive("Char")
215 force_alive("Pointer")
216
217 while not todo.is_empty do
218 var mmethoddef = todo.shift
219 var mmeth = mmethoddef.mproperty
220 #print "# visit {mmethoddef}"
221 var v = new RapidTypeVisitor(self, mmethoddef.mclassdef.bound_mtype, mmethoddef)
222
223 var vararg_rank = mmethoddef.msignature.vararg_rank
224 if vararg_rank > -1 then
225 var node = self.modelbuilder.mpropdef2node(mmethoddef)
226 var elttype = mmethoddef.msignature.mparameters[vararg_rank].mtype
227 #elttype = elttype.anchor_to(self.mainmodule, v.receiver)
228 var vararg = self.mainmodule.array_type(elttype)
229 v.add_type(vararg)
230 var native = self.mainmodule.native_array_type(elttype)
231 v.add_type(native)
232 v.add_monomorphic_send(vararg, self.modelbuilder.force_get_primitive_method(node, "with_native", vararg.mclass, self.mainmodule))
233 end
234
235 # TODO? new_msignature
236 var sig = mmethoddef.msignature.as(not null)
237 var osig = mmeth.intro.msignature.as(not null)
238 for i in [0..sig.arity[ do
239 var origtype = osig.mparameters[i].mtype
240 if not origtype.need_anchor then continue # skip non covariant stuff
241 var paramtype = sig.mparameters[i].mtype
242 add_cast(paramtype)
243 end
244
245 var npropdef = modelbuilder.mpropdef2node(mmethoddef)
246
247 if npropdef isa AClassdef then
248 # It is an init for a class
249 assert mmethoddef == npropdef.mfree_init
250
251 if mmethoddef.mproperty.is_root_init and not mmethoddef.is_intro then
252 self.add_super_send(v.receiver, mmethoddef)
253 end
254 continue
255 else if mmethoddef.constant_value != null then
256 # Make the return type live
257 v.add_type(mmethoddef.msignature.return_mtype.as(MClassType))
258 continue
259 else if npropdef == null then
260 abort
261 end
262
263 if npropdef isa AMethPropdef then
264 var auto_super_inits = npropdef.auto_super_inits
265 if auto_super_inits != null then
266 for auto_super_init in auto_super_inits do
267 v.add_callsite(auto_super_init)
268 end
269 end
270 if npropdef.auto_super_call then
271 self.add_super_send(v.receiver, mmethoddef)
272 end
273 end
274
275 if mmethoddef.is_intern or mmethoddef.is_extern then
276 # UGLY: We force the "instantation" of the concrete return type if any
277 var ret = mmethoddef.msignature.return_mtype
278 if ret != null and ret isa MClassType and ret.mclass.kind != abstract_kind and ret.mclass.kind != interface_kind then
279 v.add_type(ret)
280 end
281 end
282
283 v.enter_visit(npropdef)
284 end
285
286 #print "MMethod {live_methods.length}: {live_methods.join(", ")}"
287 #print "MMethodDef {live_methoddefs.length}: {live_methoddefs.join(", ")}"
288
289 #print "open MType {live_open_types.length}: {live_open_types.join(", ")}"
290 var todo_types = new List[MClassType]
291 todo_types.add_all(live_types)
292 while not todo_types.is_empty do
293 var t = todo_types.shift
294 for ot in live_open_types do
295 #print "{ot}/{t} ?"
296 if not ot.can_resolve_for(t, t, mainmodule) then continue
297 var rt = ot.anchor_to(mainmodule, t)
298 if live_types.has(rt) then continue
299 #print "{ot}/{t} -> {rt}"
300 live_types.add(rt)
301 todo_types.add(rt)
302 check_depth(rt)
303 end
304 end
305 #print "MType {live_types.length}: {live_types.join(", ")}"
306
307 #print "open cast MType {live_open_cast_types.length}: {live_open_cast_types.join(", ")}"
308 for ot in live_open_cast_types do
309 #print "live_open_cast_type: {ot}"
310 for t in live_types do
311 if not ot.can_resolve_for(t, t, mainmodule) then continue
312 var rt = ot.anchor_to(mainmodule, t)
313 live_cast_types.add(rt)
314 #print " {ot}/{t} -> {rt}"
315 end
316 end
317 #print "cast MType {live_cast_types.length}: {live_cast_types.join(", ")}"
318 end
319
320 private fun check_depth(mtype: MClassType)
321 do
322 var d = mtype.length
323 if d > 255 then
324 self.modelbuilder.toolcontext.fatal_error(null, "Fatal Error: limitation in the rapidtype analysis engine: a type depth of {d} is too important, the problematic type is `{mtype}`.")
325 end
326 end
327
328 fun add_new(recv: MClassType, mtype: MClassType)
329 do
330 assert not recv.need_anchor
331 if mtype.need_anchor then
332 if live_open_types.has(mtype) then return
333 live_open_types.add(mtype)
334 else
335 if live_types.has(mtype) then return
336 live_types.add(mtype)
337 end
338
339 var mclass = mtype.mclass
340 if live_classes.has(mclass) then return
341 live_classes.add(mclass)
342
343 for p in totry_methods do try_send(mtype, p)
344 for p in live_super_sends do try_super_send(mtype, p)
345
346 # Remove cleared ones
347 for p in totry_methods_to_remove do totry_methods.remove(p)
348 totry_methods_to_remove.clear
349
350 var bound_mtype = mtype.anchor_to(mainmodule, recv)
351 for cd in bound_mtype.collect_mclassdefs(mainmodule)
352 do
353 for npropdef in modelbuilder.collect_attr_propdef(cd) do
354 if not npropdef.has_value then continue
355
356 var mpropdef = npropdef.mpropdef.as(not null)
357 var v = new RapidTypeVisitor(self, bound_mtype, mpropdef)
358 v.enter_visit(npropdef.n_expr)
359 v.enter_visit(npropdef.n_block)
360 end
361 end
362
363 end
364
365 fun add_cast(mtype: MType)
366 do
367 if mtype.need_anchor then
368 live_open_cast_types.add(mtype)
369 else
370 live_cast_types.add(mtype)
371 end
372 end
373
374 fun try_send(recv: MClassType, mproperty: MMethod)
375 do
376 recv = recv.mclass.intro.bound_mtype
377 if not recv.has_mproperty(mainmodule, mproperty) then return
378 var d = mproperty.lookup_first_definition(mainmodule, recv)
379 add_call(d)
380 end
381
382 fun add_call(mpropdef: MMethodDef)
383 do
384 if live_methoddefs.has(mpropdef) then return
385 live_methoddefs.add(mpropdef)
386 todo.add(mpropdef)
387
388 var mproperty = mpropdef.mproperty
389 if mproperty.mpropdefs.length <= 1 then return
390 # If all definitions of a method are live, we can remove the definition of the totry set
391 for d in mproperty.mpropdefs do
392 if not live_methoddefs.has(d) then return
393 end
394 #print "full property: {mpropdef.mproperty} for {mpropdef.mproperty.mpropdefs.length} definitions"
395 totry_methods_to_remove.add(mpropdef.mproperty)
396 end
397
398 fun add_send(recv: MType, mproperty: MMethod)
399 do
400 if try_methods.has(mproperty) then return
401 #print "new prop: {mproperty}"
402 live_methods.add(mproperty)
403 try_methods.add(mproperty)
404 if mproperty.mpropdefs.length == 1 then
405 # If there is only one definition, just add the definition and do not try again the property
406 var d = mproperty.mpropdefs.first
407 add_call(d)
408 return
409 end
410 # Else, the property is potentially called with various reciever
411 # So just try the methods with existing receiver and register it for future receiver
412 totry_methods.add(mproperty)
413 for c in live_classes do
414 try_send(c.intro.bound_mtype, mproperty)
415 end
416 end
417
418 fun try_super_send(recv: MClassType, mpropdef: MMethodDef)
419 do
420 recv = recv.mclass.intro.bound_mtype
421 if not recv.collect_mclassdefs(mainmodule).has(mpropdef.mclassdef) then return
422 var d = mpropdef.lookup_next_definition(mainmodule, recv)
423 add_call(d)
424 end
425
426 fun add_super_send(recv: MType, mpropdef: MMethodDef)
427 do
428 assert mpropdef.has_supercall
429 if live_super_sends.has(mpropdef) then return
430 #print "new super prop: {mpropdef}"
431 live_super_sends.add(mpropdef)
432 for c in live_classes do
433 try_super_send(c.intro.bound_mtype, mpropdef)
434 end
435 end
436 end
437
438 class RapidTypeVisitor
439 super Visitor
440
441 var analysis: RapidTypeAnalysis
442 var receiver: MClassType
443 var mpropdef: MPropDef
444
445 init
446 do
447 assert not receiver.need_anchor
448 end
449
450 redef fun visit(n)
451 do
452 n.accept_rapid_type_visitor(self)
453 if n isa AExpr then
454 var implicit_cast_to = n.implicit_cast_to
455 if implicit_cast_to != null then self.add_cast_type(implicit_cast_to)
456 end
457
458 # RTA does not enter in AAnnotations
459 if not n isa AAnnotations then
460 n.visit_all(self)
461 end
462 end
463
464 fun cleanup_type(mtype: MType): nullable MClassType
465 do
466 mtype = mtype.anchor_to(self.analysis.mainmodule, self.receiver)
467 if mtype isa MNullType then return null
468 mtype = mtype.undecorate
469 assert mtype isa MClassType
470 assert not mtype.need_anchor
471 return mtype
472 end
473
474 fun get_method(recv: MType, name: String): MMethod
475 do
476 var mtype = cleanup_type(recv)
477 assert mtype != null
478 return self.analysis.modelbuilder.force_get_primitive_method(self.current_node.as(not null), name, mtype.mclass, self.analysis.mainmodule)
479 end
480
481 fun add_type(mtype: MClassType) do analysis.add_new(receiver, mtype)
482
483 fun add_monomorphic_send(mtype: MType, mproperty: MMethod)
484 do
485 analysis.live_methods.add(mproperty)
486 analysis.try_send(mtype.as(MClassType), mproperty)
487 end
488
489 fun add_send(mtype: MType, mproperty: MMethod) do analysis.add_send(mtype, mproperty)
490
491 fun add_cast_type(mtype: MType) do analysis.add_cast(mtype)
492
493 fun add_callsite(callsite: nullable CallSite) do if callsite != null then
494 for m in callsite.mpropdef.initializers do
495 if m isa MMethod then
496 analysis.add_send(callsite.recv, m)
497 end
498 end
499 analysis.add_send(callsite.recv, callsite.mproperty)
500 analysis.live_callsites.add(callsite)
501 end
502 end
503
504 ###
505
506 redef class ANode
507 private fun accept_rapid_type_visitor(v: RapidTypeVisitor)
508 do
509 end
510 end
511
512 redef class AIntExpr
513 redef fun accept_rapid_type_visitor(v)
514 do
515 v.add_type(self.mtype.as(MClassType))
516 end
517 end
518
519 redef class AFloatExpr
520 redef fun accept_rapid_type_visitor(v)
521 do
522 v.add_type(self.mtype.as(MClassType))
523 end
524 end
525
526 redef class ACharExpr
527 redef fun accept_rapid_type_visitor(v)
528 do
529 v.add_type(self.mtype.as(MClassType))
530 end
531 end
532
533 redef class AArrayExpr
534 redef fun accept_rapid_type_visitor(v)
535 do
536 var mtype = self.mtype.as(MClassType)
537 v.add_type(mtype)
538 var native = v.analysis.mainmodule.native_array_type(mtype.arguments.first)
539 v.add_type(native)
540 mtype = v.cleanup_type(mtype).as(not null)
541 var prop = v.get_method(mtype, "with_native")
542 v.add_monomorphic_send(mtype, prop)
543 end
544 end
545
546 redef class AStringFormExpr
547 redef fun accept_rapid_type_visitor(v)
548 do
549 var native = v.analysis.mainmodule.native_string_type
550 v.add_type(native)
551 var prop = v.get_method(native, "to_s_with_length")
552 v.add_monomorphic_send(native, prop)
553 end
554 end
555
556 redef class ASuperstringExpr
557 redef fun accept_rapid_type_visitor(v)
558 do
559 var mmodule = v.analysis.mainmodule
560 var object_type = mmodule.object_type
561 var arraytype = mmodule.array_type(object_type)
562 v.add_type(arraytype)
563 var nattype = mmodule.native_array_type(object_type)
564 v.add_type(nattype)
565 var prop = v.get_method(arraytype, "join")
566 v.add_monomorphic_send(arraytype, prop)
567 var prop2 = v.get_method(arraytype, "with_native")
568 v.add_monomorphic_send(arraytype, prop2)
569 v.add_monomorphic_send(nattype, v.get_method(nattype, "native_to_s"))
570 end
571 end
572
573 redef class ACrangeExpr
574 redef fun accept_rapid_type_visitor(v)
575 do
576 var mtype = self.mtype.as(MClassType)
577 v.add_type(mtype)
578 v.add_callsite(init_callsite)
579 end
580 end
581
582 redef class AOrangeExpr
583 redef fun accept_rapid_type_visitor(v)
584 do
585 var mtype = self.mtype.as(MClassType)
586 v.add_type(mtype)
587 v.add_callsite(init_callsite)
588 end
589 end
590
591 redef class ATrueExpr
592 redef fun accept_rapid_type_visitor(v)
593 do
594 v.add_type(self.mtype.as(MClassType))
595 end
596 end
597
598 redef class AFalseExpr
599 redef fun accept_rapid_type_visitor(v)
600 do
601 v.add_type(self.mtype.as(MClassType))
602 end
603 end
604
605 redef class AIsaExpr
606 redef fun accept_rapid_type_visitor(v)
607 do
608 v.add_cast_type(self.cast_type.as(not null))
609 end
610 end
611
612 redef class AAsCastExpr
613 redef fun accept_rapid_type_visitor(v)
614 do
615 v.add_cast_type(self.mtype.as(not null))
616 end
617 end
618
619 redef class ASendExpr
620 redef fun accept_rapid_type_visitor(v)
621 do
622 v.add_callsite(callsite)
623 end
624 end
625
626
627 redef class ASendReassignFormExpr
628 redef fun accept_rapid_type_visitor(v)
629 do
630 v.add_callsite(callsite)
631 v.add_callsite(reassign_callsite)
632 v.add_callsite(write_callsite)
633 end
634 end
635
636 redef class AVarReassignExpr
637 redef fun accept_rapid_type_visitor(v)
638 do
639 v.add_callsite(reassign_callsite)
640 end
641 end
642
643 redef class AAttrReassignExpr
644 redef fun accept_rapid_type_visitor(v)
645 do
646 v.add_callsite(reassign_callsite)
647 end
648 end
649
650 redef class ASuperExpr
651 redef fun accept_rapid_type_visitor(v)
652 do
653 var callsite = self.callsite
654 if callsite != null then
655 v.add_callsite(callsite)
656 return
657 end
658
659 v.analysis.add_super_send(v.receiver, mpropdef.as(not null))
660 end
661 end
662
663 redef class AForExpr
664 redef fun accept_rapid_type_visitor(v)
665 do
666 v.add_callsite(self.method_iterator)
667 v.add_callsite(self.method_is_ok)
668 if self.variables.length == 1 then
669 v.add_callsite(self.method_item)
670 else if self.variables.length == 2 then
671 v.add_callsite(self.method_key)
672 v.add_callsite(self.method_item)
673 else
674 abort
675 end
676 v.add_callsite(self.method_next)
677 var mf = self.method_finish
678 if mf != null then v.add_callsite(mf)
679 end
680 end
681
682 redef class ANewExpr
683 redef fun accept_rapid_type_visitor(v)
684 do
685 var mtype = self.recvtype.as(not null)
686 v.add_type(mtype)
687 v.add_callsite(callsite)
688 end
689 end