rta: do no visit borken method
[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 var msignature = mmethoddef.msignature
221 if msignature == null then continue # Skip broken method
222
223 #print "# visit {mmethoddef}"
224 var v = new RapidTypeVisitor(self, mmethoddef.mclassdef.bound_mtype, mmethoddef)
225
226 var vararg_rank = msignature.vararg_rank
227 if vararg_rank > -1 then
228 var node = self.modelbuilder.mpropdef2node(mmethoddef)
229 var elttype = msignature.mparameters[vararg_rank].mtype
230 #elttype = elttype.anchor_to(self.mainmodule, v.receiver)
231 var vararg = self.mainmodule.array_type(elttype)
232 v.add_type(vararg)
233 var native = self.mainmodule.native_array_type(elttype)
234 v.add_type(native)
235 v.add_monomorphic_send(vararg, self.modelbuilder.force_get_primitive_method(node, "with_native", vararg.mclass, self.mainmodule))
236 end
237
238 # TODO? new_msignature
239 var sig = msignature
240 var osig = mmeth.intro.msignature.as(not null)
241 for i in [0..sig.arity[ do
242 var origtype = osig.mparameters[i].mtype
243 if not origtype.need_anchor then continue # skip non covariant stuff
244 var paramtype = sig.mparameters[i].mtype
245 add_cast(paramtype)
246 end
247
248 var npropdef = modelbuilder.mpropdef2node(mmethoddef)
249
250 if npropdef isa AClassdef then
251 # It is an init for a class
252 assert mmethoddef == npropdef.mfree_init
253
254 if mmethoddef.mproperty.is_root_init and not mmethoddef.is_intro then
255 self.add_super_send(v.receiver, mmethoddef)
256 end
257 continue
258 else if mmethoddef.constant_value != null then
259 # Make the return type live
260 v.add_type(msignature.return_mtype.as(MClassType))
261 continue
262 else if npropdef == null then
263 abort
264 end
265
266 if npropdef isa AMethPropdef then
267 var auto_super_inits = npropdef.auto_super_inits
268 if auto_super_inits != null then
269 for auto_super_init in auto_super_inits do
270 v.add_callsite(auto_super_init)
271 end
272 end
273 if npropdef.auto_super_call then
274 self.add_super_send(v.receiver, mmethoddef)
275 end
276 end
277
278 if mmethoddef.is_intern or mmethoddef.is_extern then
279 # UGLY: We force the "instantation" of the concrete return type if any
280 var ret = msignature.return_mtype
281 if ret != null and ret isa MClassType and ret.mclass.kind != abstract_kind and ret.mclass.kind != interface_kind then
282 v.add_type(ret)
283 end
284 end
285
286 v.enter_visit(npropdef)
287 end
288
289 #print "MMethod {live_methods.length}: {live_methods.join(", ")}"
290 #print "MMethodDef {live_methoddefs.length}: {live_methoddefs.join(", ")}"
291
292 #print "open MType {live_open_types.length}: {live_open_types.join(", ")}"
293 var todo_types = new List[MClassType]
294 todo_types.add_all(live_types)
295 while not todo_types.is_empty do
296 var t = todo_types.shift
297 for ot in live_open_types do
298 #print "{ot}/{t} ?"
299 if not ot.can_resolve_for(t, t, mainmodule) then continue
300 var rt = ot.anchor_to(mainmodule, t)
301 if live_types.has(rt) then continue
302 if not check_depth(rt) then continue
303 #print "{ot}/{t} -> {rt}"
304 live_types.add(rt)
305 todo_types.add(rt)
306 end
307 end
308 #print "MType {live_types.length}: {live_types.join(", ")}"
309
310 #print "open cast MType {live_open_cast_types.length}: {live_open_cast_types.join(", ")}"
311 for ot in live_open_cast_types do
312 #print "live_open_cast_type: {ot}"
313 for t in live_types do
314 if not ot.can_resolve_for(t, t, mainmodule) then continue
315 var rt = ot.anchor_to(mainmodule, t)
316 live_cast_types.add(rt)
317 #print " {ot}/{t} -> {rt}"
318 end
319 end
320 #print "cast MType {live_cast_types.length}: {live_cast_types.join(", ")}"
321 end
322
323 private fun check_depth(mtype: MClassType): Bool
324 do
325 var d = mtype.length
326 if d > 255 then
327 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}`.")
328 return false
329 end
330 return true
331 end
332
333 fun add_new(recv: MClassType, mtype: MClassType)
334 do
335 assert not recv.need_anchor
336 if mtype.need_anchor then
337 if live_open_types.has(mtype) then return
338 live_open_types.add(mtype)
339 else
340 if live_types.has(mtype) then return
341 live_types.add(mtype)
342 end
343
344 var mclass = mtype.mclass
345 if live_classes.has(mclass) then return
346 live_classes.add(mclass)
347
348 for p in totry_methods do try_send(mtype, p)
349 for p in live_super_sends do try_super_send(mtype, p)
350
351 # Remove cleared ones
352 for p in totry_methods_to_remove do totry_methods.remove(p)
353 totry_methods_to_remove.clear
354
355 var bound_mtype = mtype.anchor_to(mainmodule, recv)
356 for cd in bound_mtype.collect_mclassdefs(mainmodule)
357 do
358 for npropdef in modelbuilder.collect_attr_propdef(cd) do
359 if not npropdef.has_value then continue
360
361 var mpropdef = npropdef.mpropdef.as(not null)
362 var v = new RapidTypeVisitor(self, bound_mtype, mpropdef)
363 v.enter_visit(npropdef.n_expr)
364 v.enter_visit(npropdef.n_block)
365 end
366 end
367
368 end
369
370 fun add_cast(mtype: MType)
371 do
372 if mtype.need_anchor then
373 live_open_cast_types.add(mtype)
374 else
375 live_cast_types.add(mtype)
376 end
377 end
378
379 fun try_send(recv: MClassType, mproperty: MMethod)
380 do
381 recv = recv.mclass.intro.bound_mtype
382 if not recv.has_mproperty(mainmodule, mproperty) then return
383 var d = mproperty.lookup_first_definition(mainmodule, recv)
384 add_call(d)
385 end
386
387 fun add_call(mpropdef: MMethodDef)
388 do
389 if live_methoddefs.has(mpropdef) then return
390 live_methoddefs.add(mpropdef)
391 todo.add(mpropdef)
392
393 var mproperty = mpropdef.mproperty
394 if mproperty.mpropdefs.length <= 1 then return
395 # If all definitions of a method are live, we can remove the definition of the totry set
396 for d in mproperty.mpropdefs do
397 if not live_methoddefs.has(d) then return
398 end
399 #print "full property: {mpropdef.mproperty} for {mpropdef.mproperty.mpropdefs.length} definitions"
400 totry_methods_to_remove.add(mpropdef.mproperty)
401 end
402
403 fun add_send(recv: MType, mproperty: MMethod)
404 do
405 if try_methods.has(mproperty) then return
406 #print "new prop: {mproperty}"
407 live_methods.add(mproperty)
408 try_methods.add(mproperty)
409 if mproperty.mpropdefs.length == 1 then
410 # If there is only one definition, just add the definition and do not try again the property
411 var d = mproperty.mpropdefs.first
412 add_call(d)
413 return
414 end
415 # Else, the property is potentially called with various reciever
416 # So just try the methods with existing receiver and register it for future receiver
417 totry_methods.add(mproperty)
418 for c in live_classes do
419 try_send(c.intro.bound_mtype, mproperty)
420 end
421 end
422
423 fun try_super_send(recv: MClassType, mpropdef: MMethodDef)
424 do
425 recv = recv.mclass.intro.bound_mtype
426 if not recv.collect_mclassdefs(mainmodule).has(mpropdef.mclassdef) then return
427 var d = mpropdef.lookup_next_definition(mainmodule, recv)
428 add_call(d)
429 end
430
431 fun add_super_send(recv: MType, mpropdef: MMethodDef)
432 do
433 assert mpropdef.has_supercall
434 if live_super_sends.has(mpropdef) then return
435 #print "new super prop: {mpropdef}"
436 live_super_sends.add(mpropdef)
437 for c in live_classes do
438 try_super_send(c.intro.bound_mtype, mpropdef)
439 end
440 end
441 end
442
443 class RapidTypeVisitor
444 super Visitor
445
446 var analysis: RapidTypeAnalysis
447 var receiver: MClassType
448 var mpropdef: MPropDef
449
450 init
451 do
452 assert not receiver.need_anchor
453 end
454
455 redef fun visit(n)
456 do
457 n.accept_rapid_type_visitor(self)
458 if n isa AExpr then
459 var implicit_cast_to = n.implicit_cast_to
460 if implicit_cast_to != null then self.add_cast_type(implicit_cast_to)
461 end
462
463 # RTA does not enter in AAnnotations
464 if not n isa AAnnotations then
465 n.visit_all(self)
466 end
467 end
468
469 fun cleanup_type(mtype: MType): nullable MClassType
470 do
471 mtype = mtype.anchor_to(self.analysis.mainmodule, self.receiver)
472 if mtype isa MNullType then return null
473 mtype = mtype.undecorate
474 assert mtype isa MClassType
475 assert not mtype.need_anchor
476 return mtype
477 end
478
479 fun get_method(recv: MType, name: String): MMethod
480 do
481 var mtype = cleanup_type(recv)
482 assert mtype != null
483 return self.analysis.modelbuilder.force_get_primitive_method(self.current_node.as(not null), name, mtype.mclass, self.analysis.mainmodule)
484 end
485
486 fun add_type(mtype: MClassType) do analysis.add_new(receiver, mtype)
487
488 fun add_monomorphic_send(mtype: MType, mproperty: MMethod)
489 do
490 analysis.live_methods.add(mproperty)
491 analysis.try_send(mtype.as(MClassType), mproperty)
492 end
493
494 fun add_send(mtype: MType, mproperty: MMethod) do analysis.add_send(mtype, mproperty)
495
496 fun add_cast_type(mtype: MType) do analysis.add_cast(mtype)
497
498 fun add_callsite(callsite: nullable CallSite) do if callsite != null then
499 for m in callsite.mpropdef.initializers do
500 if m isa MMethod then
501 analysis.add_send(callsite.recv, m)
502 end
503 end
504 analysis.add_send(callsite.recv, callsite.mproperty)
505 analysis.live_callsites.add(callsite)
506 end
507 end
508
509 ###
510
511 redef class ANode
512 private fun accept_rapid_type_visitor(v: RapidTypeVisitor)
513 do
514 end
515 end
516
517 redef class AIntExpr
518 redef fun accept_rapid_type_visitor(v)
519 do
520 v.add_type(self.mtype.as(MClassType))
521 end
522 end
523
524 redef class AFloatExpr
525 redef fun accept_rapid_type_visitor(v)
526 do
527 v.add_type(self.mtype.as(MClassType))
528 end
529 end
530
531 redef class ACharExpr
532 redef fun accept_rapid_type_visitor(v)
533 do
534 v.add_type(self.mtype.as(MClassType))
535 end
536 end
537
538 redef class AArrayExpr
539 redef fun accept_rapid_type_visitor(v)
540 do
541 var mtype = self.mtype.as(MClassType)
542 v.add_type(mtype)
543 var native = v.analysis.mainmodule.native_array_type(mtype.arguments.first)
544 v.add_type(native)
545 mtype = v.cleanup_type(mtype).as(not null)
546 var prop = v.get_method(mtype, "with_native")
547 v.add_monomorphic_send(mtype, prop)
548 v.add_callsite(with_capacity_callsite)
549 v.add_callsite(push_callsite)
550 end
551 end
552
553 redef class AStringFormExpr
554 redef fun accept_rapid_type_visitor(v)
555 do
556 var native = v.analysis.mainmodule.native_string_type
557 v.add_type(native)
558 var prop = v.get_method(native, "to_s_with_length")
559 v.add_monomorphic_send(native, prop)
560 end
561 end
562
563 redef class ASuperstringExpr
564 redef fun accept_rapid_type_visitor(v)
565 do
566 var mmodule = v.analysis.mainmodule
567 var object_type = mmodule.object_type
568 var arraytype = mmodule.array_type(object_type)
569 v.add_type(arraytype)
570 var nattype = mmodule.native_array_type(object_type)
571 v.add_type(nattype)
572 var prop = v.get_method(arraytype, "join")
573 v.add_monomorphic_send(arraytype, prop)
574 var prop2 = v.get_method(arraytype, "with_native")
575 v.add_monomorphic_send(arraytype, prop2)
576 v.add_monomorphic_send(nattype, v.get_method(nattype, "native_to_s"))
577 end
578 end
579
580 redef class ACrangeExpr
581 redef fun accept_rapid_type_visitor(v)
582 do
583 var mtype = self.mtype.as(MClassType)
584 v.add_type(mtype)
585 v.add_callsite(init_callsite)
586 end
587 end
588
589 redef class AOrangeExpr
590 redef fun accept_rapid_type_visitor(v)
591 do
592 var mtype = self.mtype.as(MClassType)
593 v.add_type(mtype)
594 v.add_callsite(init_callsite)
595 end
596 end
597
598 redef class ATrueExpr
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 AFalseExpr
606 redef fun accept_rapid_type_visitor(v)
607 do
608 v.add_type(self.mtype.as(MClassType))
609 end
610 end
611
612 redef class AIsaExpr
613 redef fun accept_rapid_type_visitor(v)
614 do
615 v.add_cast_type(self.cast_type.as(not null))
616 end
617 end
618
619 redef class AAsCastExpr
620 redef fun accept_rapid_type_visitor(v)
621 do
622 v.add_cast_type(self.mtype.as(not null))
623 end
624 end
625
626 redef class ASendExpr
627 redef fun accept_rapid_type_visitor(v)
628 do
629 v.add_callsite(callsite)
630 end
631 end
632
633
634 redef class ASendReassignFormExpr
635 redef fun accept_rapid_type_visitor(v)
636 do
637 v.add_callsite(callsite)
638 v.add_callsite(reassign_callsite)
639 v.add_callsite(write_callsite)
640 end
641 end
642
643 redef class AVarReassignExpr
644 redef fun accept_rapid_type_visitor(v)
645 do
646 v.add_callsite(reassign_callsite)
647 end
648 end
649
650 redef class AAttrReassignExpr
651 redef fun accept_rapid_type_visitor(v)
652 do
653 v.add_callsite(reassign_callsite)
654 end
655 end
656
657 redef class ASuperExpr
658 redef fun accept_rapid_type_visitor(v)
659 do
660 var callsite = self.callsite
661 if callsite != null then
662 v.add_callsite(callsite)
663 return
664 end
665
666 v.analysis.add_super_send(v.receiver, mpropdef.as(not null))
667 end
668 end
669
670 redef class AForExpr
671 redef fun accept_rapid_type_visitor(v)
672 do
673 v.add_callsite(self.method_iterator)
674 v.add_callsite(self.method_is_ok)
675 if self.variables.length == 1 then
676 v.add_callsite(self.method_item)
677 else if self.variables.length == 2 then
678 v.add_callsite(self.method_key)
679 v.add_callsite(self.method_item)
680 else
681 abort
682 end
683 v.add_callsite(self.method_next)
684 var mf = self.method_finish
685 if mf != null then v.add_callsite(mf)
686 end
687 end
688
689 redef class ANewExpr
690 redef fun accept_rapid_type_visitor(v)
691 do
692 var mtype = self.recvtype.as(not null)
693 v.add_type(mtype)
694 v.add_callsite(callsite)
695 end
696 end