nitg*: extern classes a polymorph in Nit, and unboxed only for extern methods
[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 force_alive("Pointer")
211
212 while not todo.is_empty do
213 var mmethoddef = todo.shift
214 var mmeth = mmethoddef.mproperty
215 #print "# visit {mmethoddef}"
216 var v = new RapidTypeVisitor(self, mmethoddef.mclassdef.bound_mtype, mmethoddef)
217
218 var vararg_rank = mmethoddef.msignature.vararg_rank
219 if vararg_rank > -1 then
220 var node = self.modelbuilder.mpropdef2npropdef[mmethoddef]
221 var elttype = mmethoddef.msignature.mparameters[vararg_rank].mtype
222 #elttype = elttype.anchor_to(self.mainmodule, v.receiver)
223 var vararg = self.mainmodule.get_primitive_class("Array").get_mtype([elttype])
224 v.add_type(vararg)
225 var native = self.mainmodule.get_primitive_class("NativeArray").get_mtype([elttype])
226 v.add_type(native)
227 v.add_monomorphic_send(vararg, self.modelbuilder.force_get_primitive_method(node, "with_native", vararg.mclass, self.mainmodule))
228 end
229
230 # TODO? new_msignature
231 var sig = mmethoddef.msignature.as(not null)
232 var osig = mmeth.intro.msignature.as(not null)
233 for i in [0..sig.arity[ do
234 var origtype = osig.mparameters[i].mtype
235 if not origtype.need_anchor then continue # skip non covariant stuff
236 var paramtype = sig.mparameters[i].mtype
237 add_cast(paramtype)
238 end
239
240 if not modelbuilder.mpropdef2npropdef.has_key(mmethoddef) then
241 # It is an init for a class?
242 if mmeth.name == "init" then
243 var nclassdef = self.modelbuilder.mclassdef2nclassdef[mmethoddef.mclassdef]
244 assert mmethoddef == nclassdef.mfree_init
245 var super_inits = nclassdef.super_inits
246 if super_inits != null then
247 #assert args.length == 1
248 for su in super_inits do
249 v.add_monomorphic_send(v.receiver, su)
250 end
251 end
252
253 if mmethoddef.mproperty.is_root_init and not mmethoddef.is_intro then
254 self.add_super_send(v.receiver, mmethoddef)
255 end
256 else
257 abort
258 end
259 continue
260 end
261
262 var npropdef = modelbuilder.mpropdef2npropdef[mmethoddef]
263
264 if npropdef isa AMethPropdef then
265 var auto_super_inits = npropdef.auto_super_inits
266 if auto_super_inits != null then
267 for auto_super_init in auto_super_inits do
268 v.add_callsite(auto_super_init)
269 end
270 end
271 if npropdef.auto_super_call then
272 self.add_super_send(v.receiver, mmethoddef)
273 end
274 end
275
276 if mmeth.is_new then
277 v.add_type(v.receiver)
278 else 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 = mmethoddef.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 #print "{ot}/{t} -> {rt}"
303 live_types.add(rt)
304 todo_types.add(rt)
305 check_depth(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)
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 end
329 end
330
331 fun add_new(recv: MClassType, mtype: MClassType)
332 do
333 assert not recv.need_anchor
334 if mtype.need_anchor then
335 if live_open_types.has(mtype) then return
336 live_open_types.add(mtype)
337 else
338 if live_types.has(mtype) then return
339 live_types.add(mtype)
340 end
341
342 var mclass = mtype.mclass
343 if live_classes.has(mclass) then return
344 live_classes.add(mclass)
345
346 for p in totry_methods do try_send(mtype, p)
347 for p in live_super_sends do try_super_send(mtype, p)
348
349 # Remove cleared ones
350 for p in totry_methods_to_remove do totry_methods.remove(p)
351 totry_methods_to_remove.clear
352
353 var bound_mtype = mtype.anchor_to(mainmodule, recv)
354 for cd in bound_mtype.collect_mclassdefs(mainmodule)
355 do
356 if not self.modelbuilder.mclassdef2nclassdef.has_key(cd) then continue
357 var nclassdef = self.modelbuilder.mclassdef2nclassdef[cd]
358 for npropdef in nclassdef.n_propdefs do
359 if not npropdef isa AAttrPropdef then continue
360 var nexpr = npropdef.n_expr
361 if nexpr == null then continue
362 var mpropdef = npropdef.mpropdef.as(not null)
363 var v = new RapidTypeVisitor(self, bound_mtype, mpropdef)
364 v.enter_visit(nexpr)
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 d.is_abstract then continue
398 if not live_methoddefs.has(d) then return
399 end
400 #print "full property: {mpropdef.mproperty} for {mpropdef.mproperty.mpropdefs.length} definitions"
401 totry_methods_to_remove.add(mpropdef.mproperty)
402 end
403
404 fun add_send(recv: MType, mproperty: MMethod)
405 do
406 if try_methods.has(mproperty) then return
407 #print "new prop: {mproperty}"
408 live_methods.add(mproperty)
409 try_methods.add(mproperty)
410 if mproperty.mpropdefs.length == 1 then
411 # If there is only one definition, just add the definition and do not try again the property
412 var d = mproperty.mpropdefs.first
413 add_call(d)
414 return
415 end
416 # Else, the property is potentially called with various reciever
417 # So just try the methods with existing receiver and register it for future receiver
418 totry_methods.add(mproperty)
419 for c in live_classes do
420 try_send(c.intro.bound_mtype, mproperty)
421 end
422 end
423
424 fun try_super_send(recv: MClassType, mpropdef: MMethodDef)
425 do
426 recv = recv.mclass.intro.bound_mtype
427 if not recv.collect_mclassdefs(mainmodule).has(mpropdef.mclassdef) then return
428 var d = mpropdef.lookup_next_definition(mainmodule, recv)
429 add_call(d)
430 end
431
432 fun add_super_send(recv: MType, mpropdef: MMethodDef)
433 do
434 assert mpropdef.has_supercall
435 if live_super_sends.has(mpropdef) then return
436 #print "new super prop: {mpropdef}"
437 live_super_sends.add(mpropdef)
438 for c in live_classes do
439 try_super_send(c.intro.bound_mtype, mpropdef)
440 end
441 end
442 end
443
444 class RapidTypeVisitor
445 super Visitor
446
447 var analysis: RapidTypeAnalysis
448 var receiver: MClassType
449 var mpropdef: MPropDef
450
451 init(analysis: RapidTypeAnalysis, receiver: MClassType, mpropdef: MPropDef)
452 do
453 self.analysis = analysis
454 self.receiver = receiver
455 self.mpropdef = mpropdef
456 assert not receiver.need_anchor
457 end
458
459 redef fun visit(n)
460 do
461 n.accept_rapid_type_visitor(self)
462 if n isa AExpr then
463 var implicit_cast_to = n.implicit_cast_to
464 if implicit_cast_to != null then self.add_cast_type(implicit_cast_to)
465 end
466
467 # RTA does not enter in AAnnotations
468 if not n isa AAnnotations then
469 n.visit_all(self)
470 end
471 end
472
473 fun cleanup_type(mtype: MType): nullable MClassType
474 do
475 mtype = mtype.anchor_to(self.analysis.mainmodule, self.receiver)
476 if mtype isa MNullType then return null
477 mtype = mtype.as_notnullable
478 assert mtype isa MClassType
479 assert not mtype.need_anchor
480 return mtype
481 end
482
483 fun get_class(name: String): MClass
484 do
485 return analysis.mainmodule.get_primitive_class(name)
486 end
487
488 fun get_method(recv: MType, name: String): MMethod
489 do
490 var mtype = cleanup_type(recv)
491 assert mtype != null
492 return self.analysis.modelbuilder.force_get_primitive_method(self.current_node.as(not null), name, mtype.mclass, self.analysis.mainmodule)
493 end
494
495 fun add_type(mtype: MClassType) do analysis.add_new(receiver, mtype)
496
497 fun add_monomorphic_send(mtype: MType, mproperty: MMethod)
498 do
499 analysis.live_methods.add(mproperty)
500 analysis.try_send(mtype.as(MClassType), mproperty)
501 end
502
503 fun add_send(mtype: MType, mproperty: MMethod) do analysis.add_send(mtype, mproperty)
504
505 fun add_cast_type(mtype: MType) do analysis.add_cast(mtype)
506
507 fun add_callsite(callsite: nullable CallSite) do if callsite != null then
508 for m in callsite.mpropdef.initializers do
509 if m isa MMethod then
510 analysis.add_send(callsite.recv, m)
511 end
512 end
513 analysis.add_send(callsite.recv, callsite.mproperty)
514 analysis.live_callsites.add(callsite)
515 end
516 end
517
518 ###
519
520 redef class ANode
521 private fun accept_rapid_type_visitor(v: RapidTypeVisitor)
522 do
523 end
524 end
525
526 redef class AIntExpr
527 redef fun accept_rapid_type_visitor(v)
528 do
529 v.add_type(self.mtype.as(MClassType))
530 end
531 end
532
533 redef class AFloatExpr
534 redef fun accept_rapid_type_visitor(v)
535 do
536 v.add_type(self.mtype.as(MClassType))
537 end
538 end
539
540 redef class ACharExpr
541 redef fun accept_rapid_type_visitor(v)
542 do
543 v.add_type(self.mtype.as(MClassType))
544 end
545 end
546
547 redef class AArrayExpr
548 redef fun accept_rapid_type_visitor(v)
549 do
550 var mtype = self.mtype.as(MClassType)
551 v.add_type(mtype)
552 var native = v.analysis.mainmodule.get_primitive_class("NativeArray").get_mtype([mtype.arguments.first])
553 v.add_type(native)
554 mtype = v.cleanup_type(mtype).as(not null)
555 var prop = v.get_method(mtype, "with_native")
556 v.add_monomorphic_send(mtype, prop)
557 end
558 end
559
560 redef class AStringFormExpr
561 redef fun accept_rapid_type_visitor(v)
562 do
563 var native = v.get_class("NativeString").mclass_type
564 v.add_type(native)
565 var prop = v.get_method(native, "to_s_with_length")
566 v.add_monomorphic_send(native, prop)
567 end
568 end
569
570 redef class ASuperstringExpr
571 redef fun accept_rapid_type_visitor(v)
572 do
573 var arraytype = v.get_class("Array").get_mtype([v.get_class("Object").mclass_type])
574 v.add_type(arraytype)
575 v.add_type(v.get_class("NativeArray").get_mtype([v.get_class("Object").mclass_type]))
576 var prop = v.get_method(arraytype, "join")
577 v.add_monomorphic_send(arraytype, prop)
578 var prop2 = v.get_method(arraytype, "with_native")
579 v.add_monomorphic_send(arraytype, prop2)
580 end
581 end
582
583 redef class ACrangeExpr
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 AOrangeExpr
593 redef fun accept_rapid_type_visitor(v)
594 do
595 var mtype = self.mtype.as(MClassType)
596 v.add_type(mtype)
597 v.add_callsite(init_callsite)
598 end
599 end
600
601 redef class ATrueExpr
602 redef fun accept_rapid_type_visitor(v)
603 do
604 v.add_type(self.mtype.as(MClassType))
605 end
606 end
607
608 redef class AFalseExpr
609 redef fun accept_rapid_type_visitor(v)
610 do
611 v.add_type(self.mtype.as(MClassType))
612 end
613 end
614
615 redef class AIsaExpr
616 redef fun accept_rapid_type_visitor(v)
617 do
618 v.add_cast_type(self.cast_type.as(not null))
619 end
620 end
621
622 redef class AAsCastExpr
623 redef fun accept_rapid_type_visitor(v)
624 do
625 v.add_cast_type(self.mtype.as(not null))
626 end
627 end
628
629 redef class ASendExpr
630 redef fun accept_rapid_type_visitor(v)
631 do
632 v.add_callsite(callsite)
633 end
634 end
635
636
637 redef class ASendReassignFormExpr
638 redef fun accept_rapid_type_visitor(v)
639 do
640 v.add_callsite(callsite)
641 v.add_callsite(reassign_callsite)
642 v.add_callsite(write_callsite)
643 end
644 end
645
646 redef class AVarReassignExpr
647 redef fun accept_rapid_type_visitor(v)
648 do
649 v.add_callsite(reassign_callsite)
650 end
651 end
652
653 redef class AAttrReassignExpr
654 redef fun accept_rapid_type_visitor(v)
655 do
656 v.add_callsite(reassign_callsite)
657 end
658 end
659
660 redef class ASuperExpr
661 redef fun accept_rapid_type_visitor(v)
662 do
663 var callsite = self.callsite
664 if callsite != null then
665 v.add_callsite(callsite)
666 return
667 end
668
669 v.analysis.add_super_send(v.receiver, mpropdef.as(not null))
670 end
671 end
672
673 redef class AForExpr
674 redef fun accept_rapid_type_visitor(v)
675 do
676 v.add_callsite(self.method_iterator)
677 v.add_callsite(self.method_is_ok)
678 if self.variables.length == 1 then
679 v.add_callsite(self.method_item)
680 else if self.variables.length == 2 then
681 v.add_callsite(self.method_key)
682 v.add_callsite(self.method_item)
683 else
684 abort
685 end
686 v.add_callsite(self.method_next)
687 end
688 end
689
690 redef class ANewExpr
691 redef fun accept_rapid_type_visitor(v)
692 do
693 var mtype = self.mtype.as(MClassType)
694 v.add_type(mtype)
695 v.add_callsite(callsite)
696 end
697 end