Merge branch 'master' into polymorphic_extern_classes
[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 fun do_rapid_type_analysis(mainmodule: MModule): RapidTypeAnalysis
35 do
36 var analysis = new RapidTypeAnalysis(self, mainmodule)
37 analysis.run_analysis
38 return analysis
39 end
40 end
41
42 # RapidTypeAnalysis looks for alive rapid types in application.
43 # The entry point of the analysis is the mainmodule of the application.
44 class RapidTypeAnalysis
45 # The modelbuilder used to get the AST.
46 var modelbuilder: ModelBuilder
47
48 # The main module of the analysis.
49 # Used to perform types operations.
50 var mainmodule: MModule
51
52 # The pool to live types.
53 # During the analysis, new types are added and combined with
54 # live_methods to determine new methoddefs to visit
55 var live_types = new HashSet[MClassType]
56
57 # The pool of undesolved live types
58 # They are globally resolved at the end of the analaysis
59 var live_open_types = new HashSet[MClassType]
60
61 # Live (instantiated) classes.
62 var live_classes = new HashSet[MClass]
63
64 # The pool of types used to perform type checks (isa and as).
65 var live_cast_types = new HashSet[MType]
66
67 # The pool of undesolved types used to perform type checks (isa and as).
68 # They are globally resolved at the end of the analaysis
69 var live_open_cast_types = new HashSet[MType]
70
71 # Live method definitions.
72 var live_methoddefs = new HashSet[MMethodDef]
73
74 # Live methods.
75 var live_methods = new HashSet[MMethod]
76
77 # Live callsites.
78 var live_callsites = new HashSet[CallSite]
79
80 private var live_targets_cache = new HashMap2[MType, MProperty, Set[MMethodDef]]
81
82 # The live targets of a specific callsite.
83 fun live_targets(callsite: CallSite): Set[MMethodDef]
84 do
85 var mtype = callsite.recv
86 var anchor = callsite.anchor
87 if anchor != null then mtype = mtype.anchor_to(callsite.mmodule, anchor)
88 mtype = mtype.as_notnullable
89 assert mtype isa MClassType
90 mtype = mtype.mclass.intro.bound_mtype
91 var mproperty = callsite.mproperty
92 var res = live_targets_cache[mtype, mproperty]
93 if res != null then return res
94 res = new ArraySet[MMethodDef]
95 live_targets_cache[mtype, mproperty] = res
96
97 for c in live_classes do
98 var tc = c.intro.bound_mtype
99 if not tc.is_subtype(mainmodule, null, mtype) then continue
100 var d = mproperty.lookup_first_definition(mainmodule, tc)
101 res.add d
102 end
103
104 return res
105 end
106
107 # Live call-to-super.
108 var live_super_sends = new HashSet[MMethodDef]
109
110 # Return a ready-to-save CSV document objet that agregates informations about live types.
111 # Each discovered type is listed in a line, with its status: resolution, liveness, cast-liveness.
112 # Note: types are listed in an alphanumeric order to improve human reading.
113 fun live_types_to_csv: CSVDocument
114 do
115 # Gather all kind of type
116 var typeset = new HashSet[MType]
117 typeset.add_all(live_types)
118 typeset.add_all(live_open_types)
119 typeset.add_all(live_cast_types)
120 typeset.add_all(live_open_cast_types)
121 var types = typeset.to_a
122 (new CachedAlphaComparator).sort(types)
123 var res = new CSVDocument
124 res.header = ["Type", "Resolution", "Liveness", "Cast-liveness"]
125 for t in types do
126 var reso
127 if t.need_anchor then reso = "OPEN " else reso = "CLOSED"
128 var live
129 if t isa MClassType and (live_types.has(t) or live_open_types.has(t)) then live = "LIVE" else live = "DEAD"
130 var cast
131 if live_cast_types.has(t) or live_open_cast_types.has(t) then cast = "CAST LIVE" else cast = "CAST DEAD"
132 res.add_line(t, reso, live, cast)
133 end
134 return res
135 end
136
137 # Return a ready-to-save OrderedTree object that agregates infomration about live methods.
138 # Note: methods are listed in an alphanumeric order to improve human reading.
139 fun live_methods_to_tree: OrderedTree[Object]
140 do
141 var tree = new OrderedTree[Object]
142 for x in live_methods do
143 var xn = x.full_name
144 tree.add(null, xn)
145 for z in x.mpropdefs do
146 var zn = z.to_s
147 if live_methoddefs.has(z) then
148 tree.add(xn, zn)
149 if live_super_sends.has(z) then
150 tree.add(zn, zn + "(super)")
151 end
152 else if live_super_sends.has(z) then
153 tree.add(xn, zn + "(super)")
154 end
155 end
156 end
157 tree.sort_with(alpha_comparator)
158 return tree
159 end
160
161 # Methods that are still candidate to the try_send
162 private var totry_methods = new HashSet[MMethod]
163
164 # Methods that are are no more candidate to the try_send
165 private var totry_methods_to_remove = new Array[MMethod]
166
167 # Methods that are or were candidate to the try_send
168 # Used to ensure that try_send is only used once
169 private var try_methods = new HashSet[MMethod]
170
171 # The method definitions that remain to visit
172 private var todo = new List[MMethodDef]
173
174 private fun force_alive(classname: String)
175 do
176 var classes = self.modelbuilder.model.get_mclasses_by_name(classname)
177 if classes != null then for c in classes do self.add_new(c.mclass_type, c.mclass_type)
178 end
179
180 # Run the analysis until all visitable method definitions are visited.
181 fun run_analysis
182 do
183 var maintype = mainmodule.sys_type
184 if maintype == null then return # No entry point
185 add_new(maintype, maintype)
186 var initprop = mainmodule.try_get_primitive_method("init", maintype.mclass)
187 if initprop != null then
188 add_send(maintype, initprop)
189 end
190 var mainprop = mainmodule.try_get_primitive_method("run", maintype.mclass) or else
191 mainmodule.try_get_primitive_method("main", maintype.mclass)
192 if mainprop != null then
193 add_send(maintype, mainprop)
194 end
195
196 var finalizable_type = mainmodule.finalizable_type
197 if finalizable_type != null then
198 var finalize_meth = mainmodule.try_get_primitive_method("finalize", finalizable_type.mclass)
199 if finalize_meth != null then add_send(finalizable_type, finalize_meth)
200 end
201
202 # Force primitive types
203 force_alive("Bool")
204 force_alive("Int")
205 force_alive("Float")
206 force_alive("Char")
207 force_alive("Pointer")
208
209 while not todo.is_empty do
210 var mmethoddef = todo.shift
211 var mmeth = mmethoddef.mproperty
212 #print "# visit {mmethoddef}"
213 var v = new RapidTypeVisitor(self, mmethoddef.mclassdef.bound_mtype, mmethoddef)
214
215 var vararg_rank = mmethoddef.msignature.vararg_rank
216 if vararg_rank > -1 then
217 var node = self.modelbuilder.mpropdef2npropdef[mmethoddef]
218 var elttype = mmethoddef.msignature.mparameters[vararg_rank].mtype
219 #elttype = elttype.anchor_to(self.mainmodule, v.receiver)
220 var vararg = self.mainmodule.get_primitive_class("Array").get_mtype([elttype])
221 v.add_type(vararg)
222 var native = self.mainmodule.get_primitive_class("NativeArray").get_mtype([elttype])
223 v.add_type(native)
224 v.add_monomorphic_send(vararg, self.modelbuilder.force_get_primitive_method(node, "with_native", vararg.mclass, self.mainmodule))
225 end
226
227 # TODO? new_msignature
228 var sig = mmethoddef.msignature.as(not null)
229 var osig = mmeth.intro.msignature.as(not null)
230 for i in [0..sig.arity[ do
231 var origtype = osig.mparameters[i].mtype
232 if not origtype.need_anchor then continue # skip non covariant stuff
233 var paramtype = sig.mparameters[i].mtype
234 add_cast(paramtype)
235 end
236
237 if not modelbuilder.mpropdef2npropdef.has_key(mmethoddef) then
238 # It is an init for a class?
239 if mmeth.name == "init" then
240 var nclassdef = self.modelbuilder.mclassdef2nclassdef[mmethoddef.mclassdef]
241 assert mmethoddef == nclassdef.mfree_init
242 var super_inits = nclassdef.super_inits
243 if super_inits != null then
244 #assert args.length == 1
245 for su in super_inits do
246 v.add_monomorphic_send(v.receiver, su)
247 end
248 end
249
250 if mmethoddef.mproperty.is_root_init and not mmethoddef.is_intro then
251 self.add_super_send(v.receiver, mmethoddef)
252 end
253 else
254 abort
255 end
256 continue
257 end
258
259 var npropdef = modelbuilder.mpropdef2npropdef[mmethoddef]
260
261 if npropdef isa AMethPropdef then
262 var auto_super_inits = npropdef.auto_super_inits
263 if auto_super_inits != null then
264 for auto_super_init in auto_super_inits do
265 v.add_callsite(auto_super_init)
266 end
267 end
268 if npropdef.auto_super_call then
269 self.add_super_send(v.receiver, mmethoddef)
270 end
271 end
272
273 if mmeth.is_new then
274 v.add_type(v.receiver)
275 else 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 if not self.modelbuilder.mclassdef2nclassdef.has_key(cd) then continue
354 var nclassdef = self.modelbuilder.mclassdef2nclassdef[cd]
355 for npropdef in nclassdef.n_propdefs do
356 if not npropdef isa AAttrPropdef then continue
357 var nexpr = npropdef.n_expr
358 if nexpr == null then continue
359 var mpropdef = npropdef.mpropdef.as(not null)
360 var v = new RapidTypeVisitor(self, bound_mtype, mpropdef)
361 v.enter_visit(nexpr)
362 end
363 end
364
365 end
366
367 fun add_cast(mtype: MType)
368 do
369 if mtype.need_anchor then
370 live_open_cast_types.add(mtype)
371 else
372 live_cast_types.add(mtype)
373 end
374 end
375
376 fun try_send(recv: MClassType, mproperty: MMethod)
377 do
378 recv = recv.mclass.intro.bound_mtype
379 if not recv.has_mproperty(mainmodule, mproperty) then return
380 var d = mproperty.lookup_first_definition(mainmodule, recv)
381 add_call(d)
382 end
383
384 fun add_call(mpropdef: MMethodDef)
385 do
386 if live_methoddefs.has(mpropdef) then return
387 live_methoddefs.add(mpropdef)
388 todo.add(mpropdef)
389
390 var mproperty = mpropdef.mproperty
391 if mproperty.mpropdefs.length <= 1 then return
392 # If all definitions of a method are live, we can remove the definition of the totry set
393 for d in mproperty.mpropdefs do
394 if d.is_abstract then continue
395 if not live_methoddefs.has(d) then return
396 end
397 #print "full property: {mpropdef.mproperty} for {mpropdef.mproperty.mpropdefs.length} definitions"
398 totry_methods_to_remove.add(mpropdef.mproperty)
399 end
400
401 fun add_send(recv: MType, mproperty: MMethod)
402 do
403 if try_methods.has(mproperty) then return
404 #print "new prop: {mproperty}"
405 live_methods.add(mproperty)
406 try_methods.add(mproperty)
407 if mproperty.mpropdefs.length == 1 then
408 # If there is only one definition, just add the definition and do not try again the property
409 var d = mproperty.mpropdefs.first
410 add_call(d)
411 return
412 end
413 # Else, the property is potentially called with various reciever
414 # So just try the methods with existing receiver and register it for future receiver
415 totry_methods.add(mproperty)
416 for c in live_classes do
417 try_send(c.intro.bound_mtype, mproperty)
418 end
419 end
420
421 fun try_super_send(recv: MClassType, mpropdef: MMethodDef)
422 do
423 recv = recv.mclass.intro.bound_mtype
424 if not recv.collect_mclassdefs(mainmodule).has(mpropdef.mclassdef) then return
425 var d = mpropdef.lookup_next_definition(mainmodule, recv)
426 add_call(d)
427 end
428
429 fun add_super_send(recv: MType, mpropdef: MMethodDef)
430 do
431 assert mpropdef.has_supercall
432 if live_super_sends.has(mpropdef) then return
433 #print "new super prop: {mpropdef}"
434 live_super_sends.add(mpropdef)
435 for c in live_classes do
436 try_super_send(c.intro.bound_mtype, mpropdef)
437 end
438 end
439 end
440
441 class RapidTypeVisitor
442 super Visitor
443
444 var analysis: RapidTypeAnalysis
445 var receiver: MClassType
446 var mpropdef: MPropDef
447
448 init(analysis: RapidTypeAnalysis, receiver: MClassType, mpropdef: MPropDef)
449 do
450 self.analysis = analysis
451 self.receiver = receiver
452 self.mpropdef = mpropdef
453 assert not receiver.need_anchor
454 end
455
456 redef fun visit(n)
457 do
458 n.accept_rapid_type_visitor(self)
459 if n isa AExpr then
460 var implicit_cast_to = n.implicit_cast_to
461 if implicit_cast_to != null then self.add_cast_type(implicit_cast_to)
462 end
463
464 # RTA does not enter in AAnnotations
465 if not n isa AAnnotations then
466 n.visit_all(self)
467 end
468 end
469
470 fun cleanup_type(mtype: MType): nullable MClassType
471 do
472 mtype = mtype.anchor_to(self.analysis.mainmodule, self.receiver)
473 if mtype isa MNullType then return null
474 mtype = mtype.as_notnullable
475 assert mtype isa MClassType
476 assert not mtype.need_anchor
477 return mtype
478 end
479
480 fun get_class(name: String): MClass
481 do
482 return analysis.mainmodule.get_primitive_class(name)
483 end
484
485 fun get_method(recv: MType, name: String): MMethod
486 do
487 var mtype = cleanup_type(recv)
488 assert mtype != null
489 return self.analysis.modelbuilder.force_get_primitive_method(self.current_node.as(not null), name, mtype.mclass, self.analysis.mainmodule)
490 end
491
492 fun add_type(mtype: MClassType) do analysis.add_new(receiver, mtype)
493
494 fun add_monomorphic_send(mtype: MType, mproperty: MMethod)
495 do
496 analysis.live_methods.add(mproperty)
497 analysis.try_send(mtype.as(MClassType), mproperty)
498 end
499
500 fun add_send(mtype: MType, mproperty: MMethod) do analysis.add_send(mtype, mproperty)
501
502 fun add_cast_type(mtype: MType) do analysis.add_cast(mtype)
503
504 fun add_callsite(callsite: nullable CallSite) do if callsite != null then
505 for m in callsite.mpropdef.initializers do
506 if m isa MMethod then
507 analysis.add_send(callsite.recv, m)
508 end
509 end
510 analysis.add_send(callsite.recv, callsite.mproperty)
511 analysis.live_callsites.add(callsite)
512 end
513 end
514
515 ###
516
517 redef class ANode
518 private fun accept_rapid_type_visitor(v: RapidTypeVisitor)
519 do
520 end
521 end
522
523 redef class AIntExpr
524 redef fun accept_rapid_type_visitor(v)
525 do
526 v.add_type(self.mtype.as(MClassType))
527 end
528 end
529
530 redef class AFloatExpr
531 redef fun accept_rapid_type_visitor(v)
532 do
533 v.add_type(self.mtype.as(MClassType))
534 end
535 end
536
537 redef class ACharExpr
538 redef fun accept_rapid_type_visitor(v)
539 do
540 v.add_type(self.mtype.as(MClassType))
541 end
542 end
543
544 redef class AArrayExpr
545 redef fun accept_rapid_type_visitor(v)
546 do
547 var mtype = self.mtype.as(MClassType)
548 v.add_type(mtype)
549 var native = v.analysis.mainmodule.get_primitive_class("NativeArray").get_mtype([mtype.arguments.first])
550 v.add_type(native)
551 mtype = v.cleanup_type(mtype).as(not null)
552 var prop = v.get_method(mtype, "with_native")
553 v.add_monomorphic_send(mtype, prop)
554 end
555 end
556
557 redef class AStringFormExpr
558 redef fun accept_rapid_type_visitor(v)
559 do
560 var native = v.get_class("NativeString").mclass_type
561 v.add_type(native)
562 var prop = v.get_method(native, "to_s_with_length")
563 v.add_monomorphic_send(native, prop)
564 end
565 end
566
567 redef class ASuperstringExpr
568 redef fun accept_rapid_type_visitor(v)
569 do
570 var arraytype = v.get_class("Array").get_mtype([v.get_class("Object").mclass_type])
571 v.add_type(arraytype)
572 v.add_type(v.get_class("NativeArray").get_mtype([v.get_class("Object").mclass_type]))
573 var prop = v.get_method(arraytype, "join")
574 v.add_monomorphic_send(arraytype, prop)
575 var prop2 = v.get_method(arraytype, "with_native")
576 v.add_monomorphic_send(arraytype, prop2)
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 end
685 end
686
687 redef class ANewExpr
688 redef fun accept_rapid_type_visitor(v)
689 do
690 var mtype = self.mtype.as(MClassType)
691 v.add_type(mtype)
692 v.add_callsite(callsite)
693 end
694 end