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