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