Merge: engines: no more `super_inits` method used in old-style automatic 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 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 return analysis
40 end
41 end
42
43 # RapidTypeAnalysis looks for alive rapid types in application.
44 # The entry point of the analysis is the mainmodule of the application.
45 class RapidTypeAnalysis
46 # The modelbuilder used to get the AST.
47 var modelbuilder: ModelBuilder
48
49 # The main module of the analysis.
50 # Used to perform types operations.
51 var mainmodule: MModule
52
53 # The pool to live types.
54 # During the analysis, new types are added and combined with
55 # live_methods to determine new methoddefs to visit
56 var live_types = new HashSet[MClassType]
57
58 # The pool of undesolved live types
59 # They are globally resolved at the end of the analaysis
60 var live_open_types = new HashSet[MClassType]
61
62 # Live (instantiated) classes.
63 var live_classes = new HashSet[MClass]
64
65 # The pool of types used to perform type checks (isa and as).
66 var live_cast_types = new HashSet[MType]
67
68 # The pool of undesolved types used to perform type checks (isa and as).
69 # They are globally resolved at the end of the analaysis
70 var live_open_cast_types = new HashSet[MType]
71
72 # Live method definitions.
73 var live_methoddefs = new HashSet[MMethodDef]
74
75 # Live methods.
76 var live_methods = new HashSet[MMethod]
77
78 # Live callsites.
79 var live_callsites = new HashSet[CallSite]
80
81 private var live_targets_cache = new HashMap2[MType, MProperty, Set[MMethodDef]]
82
83 # The live targets of a specific callsite.
84 fun live_targets(callsite: CallSite): Set[MMethodDef]
85 do
86 var mtype = callsite.recv
87 var anchor = callsite.anchor
88 if anchor != null then mtype = mtype.anchor_to(callsite.mmodule, anchor)
89 mtype = mtype.as_notnullable
90 assert mtype isa MClassType
91 mtype = mtype.mclass.intro.bound_mtype
92 var mproperty = callsite.mproperty
93 var res = live_targets_cache[mtype, mproperty]
94 if res != null then return res
95 res = new ArraySet[MMethodDef]
96 live_targets_cache[mtype, mproperty] = res
97
98 for c in live_classes do
99 var tc = c.intro.bound_mtype
100 if not tc.is_subtype(mainmodule, null, mtype) then continue
101 var d = mproperty.lookup_first_definition(mainmodule, tc)
102 res.add d
103 end
104
105 return res
106 end
107
108 # Live call-to-super.
109 var live_super_sends = new HashSet[MMethodDef]
110
111 # Return a ready-to-save CSV document objet that agregates informations about live types.
112 # Each discovered type is listed in a line, with its status: resolution, liveness, cast-liveness.
113 # Note: types are listed in an alphanumeric order to improve human reading.
114 fun live_types_to_csv: CSVDocument
115 do
116 # Gather all kind of type
117 var typeset = new HashSet[MType]
118 typeset.add_all(live_types)
119 typeset.add_all(live_open_types)
120 typeset.add_all(live_cast_types)
121 typeset.add_all(live_open_cast_types)
122 var types = typeset.to_a
123 (new CachedAlphaComparator).sort(types)
124 var res = new CSVDocument
125 res.header = ["Type", "Resolution", "Liveness", "Cast-liveness"]
126 for t in types do
127 var reso
128 if t.need_anchor then reso = "OPEN " else reso = "CLOSED"
129 var live
130 if t isa MClassType and (live_types.has(t) or live_open_types.has(t)) then live = "LIVE" else live = "DEAD"
131 var cast
132 if live_cast_types.has(t) or live_open_cast_types.has(t) then cast = "CAST LIVE" else cast = "CAST DEAD"
133 res.add_line(t, reso, live, cast)
134 end
135 return res
136 end
137
138 # Return a ready-to-save OrderedTree object that agregates infomration about live methods.
139 # Note: methods are listed in an alphanumeric order to improve human reading.
140 fun live_methods_to_tree: OrderedTree[Object]
141 do
142 var tree = new OrderedTree[Object]
143 for x in live_methods do
144 var xn = x.full_name
145 tree.add(null, xn)
146 for z in x.mpropdefs do
147 var zn = z.to_s
148 if live_methoddefs.has(z) then
149 tree.add(xn, zn)
150 if live_super_sends.has(z) then
151 tree.add(zn, zn + "(super)")
152 end
153 else if live_super_sends.has(z) then
154 tree.add(xn, zn + "(super)")
155 end
156 end
157 end
158 tree.sort_with(alpha_comparator)
159 return tree
160 end
161
162 # Methods that are still candidate to the try_send
163 private var totry_methods = new HashSet[MMethod]
164
165 # Methods that are are no more candidate to the try_send
166 private var totry_methods_to_remove = new Array[MMethod]
167
168 # Methods that are or were candidate to the try_send
169 # Used to ensure that try_send is only used once
170 private var try_methods = new HashSet[MMethod]
171
172 # The method definitions that remain to visit
173 private var todo = new List[MMethodDef]
174
175 private fun force_alive(classname: String)
176 do
177 var classes = self.modelbuilder.model.get_mclasses_by_name(classname)
178 if classes != null then for c in classes do self.add_new(c.mclass_type, c.mclass_type)
179 end
180
181 # Run the analysis until all visitable method definitions are visited.
182 fun run_analysis
183 do
184 var maintype = mainmodule.sys_type
185 if maintype == null then return # No entry point
186 add_new(maintype, maintype)
187 var initprop = mainmodule.try_get_primitive_method("init", maintype.mclass)
188 if initprop != null then
189 add_send(maintype, initprop)
190 end
191 var mainprop = mainmodule.try_get_primitive_method("run", maintype.mclass) or else
192 mainmodule.try_get_primitive_method("main", maintype.mclass)
193 if mainprop != null then
194 add_send(maintype, mainprop)
195 end
196
197 var finalizable_type = mainmodule.finalizable_type
198 if finalizable_type != null then
199 var finalize_meth = mainmodule.try_get_primitive_method("finalize", finalizable_type.mclass)
200 if finalize_meth != null then add_send(finalizable_type, finalize_meth)
201 end
202
203 # Force primitive types
204 force_alive("Bool")
205 force_alive("Int")
206 force_alive("Float")
207 force_alive("Char")
208 force_alive("Pointer")
209
210 while not todo.is_empty do
211 var mmethoddef = todo.shift
212 var mmeth = mmethoddef.mproperty
213 #print "# visit {mmethoddef}"
214 var v = new RapidTypeVisitor(self, mmethoddef.mclassdef.bound_mtype, mmethoddef)
215
216 var vararg_rank = mmethoddef.msignature.vararg_rank
217 if vararg_rank > -1 then
218 var node = self.modelbuilder.mpropdef2npropdef[mmethoddef]
219 var elttype = mmethoddef.msignature.mparameters[vararg_rank].mtype
220 #elttype = elttype.anchor_to(self.mainmodule, v.receiver)
221 var vararg = self.mainmodule.get_primitive_class("Array").get_mtype([elttype])
222 v.add_type(vararg)
223 var native = self.mainmodule.get_primitive_class("NativeArray").get_mtype([elttype])
224 v.add_type(native)
225 v.add_monomorphic_send(vararg, self.modelbuilder.force_get_primitive_method(node, "with_native", vararg.mclass, self.mainmodule))
226 end
227
228 # TODO? new_msignature
229 var sig = mmethoddef.msignature.as(not null)
230 var osig = mmeth.intro.msignature.as(not null)
231 for i in [0..sig.arity[ do
232 var origtype = osig.mparameters[i].mtype
233 if not origtype.need_anchor then continue # skip non covariant stuff
234 var paramtype = sig.mparameters[i].mtype
235 add_cast(paramtype)
236 end
237
238 if not modelbuilder.mpropdef2npropdef.has_key(mmethoddef) then
239 # It is an init for a class?
240 if mmeth.name == "init" then
241 var nclassdef = self.modelbuilder.mclassdef2nclassdef[mmethoddef.mclassdef]
242 assert mmethoddef == nclassdef.mfree_init
243
244 if mmethoddef.mproperty.is_root_init and not mmethoddef.is_intro then
245 self.add_super_send(v.receiver, mmethoddef)
246 end
247 else
248 abort
249 end
250 continue
251 end
252
253 var npropdef = modelbuilder.mpropdef2npropdef[mmethoddef]
254
255 if npropdef isa AMethPropdef then
256 var auto_super_inits = npropdef.auto_super_inits
257 if auto_super_inits != null then
258 for auto_super_init in auto_super_inits do
259 v.add_callsite(auto_super_init)
260 end
261 end
262 if npropdef.auto_super_call then
263 self.add_super_send(v.receiver, mmethoddef)
264 end
265 end
266
267 if mmeth.is_new then
268 v.add_type(v.receiver)
269 else if mmethoddef.is_intern or mmethoddef.is_extern then
270 # UGLY: We force the "instantation" of the concrete return type if any
271 var ret = mmethoddef.msignature.return_mtype
272 if ret != null and ret isa MClassType and ret.mclass.kind != abstract_kind and ret.mclass.kind != interface_kind then
273 v.add_type(ret)
274 end
275 end
276
277 v.enter_visit(npropdef)
278 end
279
280 #print "MMethod {live_methods.length}: {live_methods.join(", ")}"
281 #print "MMethodDef {live_methoddefs.length}: {live_methoddefs.join(", ")}"
282
283 #print "open MType {live_open_types.length}: {live_open_types.join(", ")}"
284 var todo_types = new List[MClassType]
285 todo_types.add_all(live_types)
286 while not todo_types.is_empty do
287 var t = todo_types.shift
288 for ot in live_open_types do
289 #print "{ot}/{t} ?"
290 if not ot.can_resolve_for(t, t, mainmodule) then continue
291 var rt = ot.anchor_to(mainmodule, t)
292 if live_types.has(rt) then continue
293 #print "{ot}/{t} -> {rt}"
294 live_types.add(rt)
295 todo_types.add(rt)
296 check_depth(rt)
297 end
298 end
299 #print "MType {live_types.length}: {live_types.join(", ")}"
300
301 #print "open cast MType {live_open_cast_types.length}: {live_open_cast_types.join(", ")}"
302 for ot in live_open_cast_types do
303 #print "live_open_cast_type: {ot}"
304 for t in live_types do
305 if not ot.can_resolve_for(t, t, mainmodule) then continue
306 var rt = ot.anchor_to(mainmodule, t)
307 live_cast_types.add(rt)
308 #print " {ot}/{t} -> {rt}"
309 end
310 end
311 #print "cast MType {live_cast_types.length}: {live_cast_types.join(", ")}"
312 end
313
314 private fun check_depth(mtype: MClassType)
315 do
316 var d = mtype.length
317 if d > 255 then
318 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}.")
319 end
320 end
321
322 fun add_new(recv: MClassType, mtype: MClassType)
323 do
324 assert not recv.need_anchor
325 if mtype.need_anchor then
326 if live_open_types.has(mtype) then return
327 live_open_types.add(mtype)
328 else
329 if live_types.has(mtype) then return
330 live_types.add(mtype)
331 end
332
333 var mclass = mtype.mclass
334 if live_classes.has(mclass) then return
335 live_classes.add(mclass)
336
337 for p in totry_methods do try_send(mtype, p)
338 for p in live_super_sends do try_super_send(mtype, p)
339
340 # Remove cleared ones
341 for p in totry_methods_to_remove do totry_methods.remove(p)
342 totry_methods_to_remove.clear
343
344 var bound_mtype = mtype.anchor_to(mainmodule, recv)
345 for cd in bound_mtype.collect_mclassdefs(mainmodule)
346 do
347 if not self.modelbuilder.mclassdef2nclassdef.has_key(cd) then continue
348 var nclassdef = self.modelbuilder.mclassdef2nclassdef[cd]
349 for npropdef in nclassdef.n_propdefs do
350 if not npropdef isa AAttrPropdef then continue
351 var nexpr = npropdef.n_expr
352 if nexpr == null then continue
353 var mpropdef = npropdef.mpropdef.as(not null)
354 var v = new RapidTypeVisitor(self, bound_mtype, mpropdef)
355 v.enter_visit(nexpr)
356 end
357 end
358
359 end
360
361 fun add_cast(mtype: MType)
362 do
363 if mtype.need_anchor then
364 live_open_cast_types.add(mtype)
365 else
366 live_cast_types.add(mtype)
367 end
368 end
369
370 fun try_send(recv: MClassType, mproperty: MMethod)
371 do
372 recv = recv.mclass.intro.bound_mtype
373 if not recv.has_mproperty(mainmodule, mproperty) then return
374 var d = mproperty.lookup_first_definition(mainmodule, recv)
375 add_call(d)
376 end
377
378 fun add_call(mpropdef: MMethodDef)
379 do
380 if live_methoddefs.has(mpropdef) then return
381 live_methoddefs.add(mpropdef)
382 todo.add(mpropdef)
383
384 var mproperty = mpropdef.mproperty
385 if mproperty.mpropdefs.length <= 1 then return
386 # If all definitions of a method are live, we can remove the definition of the totry set
387 for d in mproperty.mpropdefs do
388 if d.is_abstract then continue
389 if not live_methoddefs.has(d) then return
390 end
391 #print "full property: {mpropdef.mproperty} for {mpropdef.mproperty.mpropdefs.length} definitions"
392 totry_methods_to_remove.add(mpropdef.mproperty)
393 end
394
395 fun add_send(recv: MType, mproperty: MMethod)
396 do
397 if try_methods.has(mproperty) then return
398 #print "new prop: {mproperty}"
399 live_methods.add(mproperty)
400 try_methods.add(mproperty)
401 if mproperty.mpropdefs.length == 1 then
402 # If there is only one definition, just add the definition and do not try again the property
403 var d = mproperty.mpropdefs.first
404 add_call(d)
405 return
406 end
407 # Else, the property is potentially called with various reciever
408 # So just try the methods with existing receiver and register it for future receiver
409 totry_methods.add(mproperty)
410 for c in live_classes do
411 try_send(c.intro.bound_mtype, mproperty)
412 end
413 end
414
415 fun try_super_send(recv: MClassType, mpropdef: MMethodDef)
416 do
417 recv = recv.mclass.intro.bound_mtype
418 if not recv.collect_mclassdefs(mainmodule).has(mpropdef.mclassdef) then return
419 var d = mpropdef.lookup_next_definition(mainmodule, recv)
420 add_call(d)
421 end
422
423 fun add_super_send(recv: MType, mpropdef: MMethodDef)
424 do
425 assert mpropdef.has_supercall
426 if live_super_sends.has(mpropdef) then return
427 #print "new super prop: {mpropdef}"
428 live_super_sends.add(mpropdef)
429 for c in live_classes do
430 try_super_send(c.intro.bound_mtype, mpropdef)
431 end
432 end
433 end
434
435 class RapidTypeVisitor
436 super Visitor
437
438 var analysis: RapidTypeAnalysis
439 var receiver: MClassType
440 var mpropdef: MPropDef
441
442 init(analysis: RapidTypeAnalysis, receiver: MClassType, mpropdef: MPropDef)
443 do
444 self.analysis = analysis
445 self.receiver = receiver
446 self.mpropdef = mpropdef
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.as_notnullable
469 assert mtype isa MClassType
470 assert not mtype.need_anchor
471 return mtype
472 end
473
474 fun get_class(name: String): MClass
475 do
476 return analysis.mainmodule.get_primitive_class(name)
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.get_primitive_class("NativeArray").get_mtype([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 end
549 end
550
551 redef class AStringFormExpr
552 redef fun accept_rapid_type_visitor(v)
553 do
554 var native = v.get_class("NativeString").mclass_type
555 v.add_type(native)
556 var prop = v.get_method(native, "to_s_with_length")
557 v.add_monomorphic_send(native, prop)
558 end
559 end
560
561 redef class ASuperstringExpr
562 redef fun accept_rapid_type_visitor(v)
563 do
564 var arraytype = v.get_class("Array").get_mtype([v.get_class("Object").mclass_type])
565 v.add_type(arraytype)
566 v.add_type(v.get_class("NativeArray").get_mtype([v.get_class("Object").mclass_type]))
567 var prop = v.get_method(arraytype, "join")
568 v.add_monomorphic_send(arraytype, prop)
569 var prop2 = v.get_method(arraytype, "with_native")
570 v.add_monomorphic_send(arraytype, prop2)
571 end
572 end
573
574 redef class ACrangeExpr
575 redef fun accept_rapid_type_visitor(v)
576 do
577 var mtype = self.mtype.as(MClassType)
578 v.add_type(mtype)
579 v.add_callsite(init_callsite)
580 end
581 end
582
583 redef class AOrangeExpr
584 redef fun accept_rapid_type_visitor(v)
585 do
586 var mtype = self.mtype.as(MClassType)
587 v.add_type(mtype)
588 v.add_callsite(init_callsite)
589 end
590 end
591
592 redef class ATrueExpr
593 redef fun accept_rapid_type_visitor(v)
594 do
595 v.add_type(self.mtype.as(MClassType))
596 end
597 end
598
599 redef class AFalseExpr
600 redef fun accept_rapid_type_visitor(v)
601 do
602 v.add_type(self.mtype.as(MClassType))
603 end
604 end
605
606 redef class AIsaExpr
607 redef fun accept_rapid_type_visitor(v)
608 do
609 v.add_cast_type(self.cast_type.as(not null))
610 end
611 end
612
613 redef class AAsCastExpr
614 redef fun accept_rapid_type_visitor(v)
615 do
616 v.add_cast_type(self.mtype.as(not null))
617 end
618 end
619
620 redef class ASendExpr
621 redef fun accept_rapid_type_visitor(v)
622 do
623 v.add_callsite(callsite)
624 end
625 end
626
627
628 redef class ASendReassignFormExpr
629 redef fun accept_rapid_type_visitor(v)
630 do
631 v.add_callsite(callsite)
632 v.add_callsite(reassign_callsite)
633 v.add_callsite(write_callsite)
634 end
635 end
636
637 redef class AVarReassignExpr
638 redef fun accept_rapid_type_visitor(v)
639 do
640 v.add_callsite(reassign_callsite)
641 end
642 end
643
644 redef class AAttrReassignExpr
645 redef fun accept_rapid_type_visitor(v)
646 do
647 v.add_callsite(reassign_callsite)
648 end
649 end
650
651 redef class ASuperExpr
652 redef fun accept_rapid_type_visitor(v)
653 do
654 var callsite = self.callsite
655 if callsite != null then
656 v.add_callsite(callsite)
657 return
658 end
659
660 v.analysis.add_super_send(v.receiver, mpropdef.as(not null))
661 end
662 end
663
664 redef class AForExpr
665 redef fun accept_rapid_type_visitor(v)
666 do
667 v.add_callsite(self.method_iterator)
668 v.add_callsite(self.method_is_ok)
669 if self.variables.length == 1 then
670 v.add_callsite(self.method_item)
671 else if self.variables.length == 2 then
672 v.add_callsite(self.method_key)
673 v.add_callsite(self.method_item)
674 else
675 abort
676 end
677 v.add_callsite(self.method_next)
678 end
679 end
680
681 redef class ANewExpr
682 redef fun accept_rapid_type_visitor(v)
683 do
684 var mtype = self.mtype.as(MClassType)
685 v.add_type(mtype)
686 v.add_callsite(callsite)
687 end
688 end