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