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