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