modelize: rely on `AAttrPropdef::mreadpropdef` to be the main property
[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 # Performs a rapid-type-analysis on the program associated with `mainmodule`.
35 fun do_rapid_type_analysis(mainmodule: MModule): RapidTypeAnalysis
36 do
37 var analysis = new RapidTypeAnalysis(self, mainmodule)
38 analysis.run_analysis
39
40 if toolcontext.opt_log.value then
41 var basename = toolcontext.log_directory / mainmodule.name
42 analysis.live_methods_to_tree.write_to_file(basename + ".rta_methods.txt")
43 analysis.live_types_to_csv.write_to_file(basename + ".rta_types.csv")
44 end
45
46 return analysis
47 end
48 end
49
50 # RapidTypeAnalysis looks for alive rapid types in application.
51 # The entry point of the analysis is the mainmodule of the application.
52 class RapidTypeAnalysis
53 # The modelbuilder used to get the AST.
54 var modelbuilder: ModelBuilder
55
56 # The main module of the analysis.
57 # Used to perform types operations.
58 var mainmodule: MModule
59
60 # The pool to live types.
61 # During the analysis, new types are added and combined with
62 # live_methods to determine new methoddefs to visit
63 var live_types = new HashSet[MClassType]
64
65 # The pool of undesolved live types
66 # They are globally resolved at the end of the analaysis
67 var live_open_types = new HashSet[MClassType]
68
69 # Live (instantiated) classes.
70 var live_classes = new HashSet[MClass]
71
72 # The pool of types used to perform type checks (isa and as).
73 var live_cast_types = new HashSet[MType]
74
75 # The pool of undesolved types used to perform type checks (isa and as).
76 # They are globally resolved at the end of the analaysis
77 var live_open_cast_types = new HashSet[MType]
78
79 # Live method definitions.
80 var live_methoddefs = new HashSet[MMethodDef]
81
82 # Live methods.
83 var live_methods = new HashSet[MMethod]
84
85 # Live callsites.
86 var live_callsites = new HashSet[CallSite]
87
88 private var live_targets_cache = new HashMap2[MType, MProperty, Set[MMethodDef]]
89
90 # The live targets of a specific callsite.
91 fun live_targets(callsite: CallSite): Set[MMethodDef]
92 do
93 var mtype = callsite.recv
94 var anchor = callsite.anchor
95 if anchor != null then mtype = mtype.anchor_to(callsite.mmodule, anchor)
96 mtype = mtype.undecorate
97 if mtype isa MClassType then mtype = mtype.mclass.intro.bound_mtype
98 var mproperty = callsite.mproperty
99 var res = live_targets_cache[mtype, mproperty]
100 if res != null then return res
101 res = new ArraySet[MMethodDef]
102 live_targets_cache[mtype, mproperty] = res
103
104 for c in live_classes do
105 var tc = c.intro.bound_mtype
106 if not tc.is_subtype(mainmodule, null, mtype) then continue
107 var d = mproperty.lookup_first_definition(mainmodule, tc)
108 res.add d
109 end
110
111 return res
112 end
113
114 # Live call-to-super.
115 var live_super_sends = new HashSet[MMethodDef]
116
117 # Return a ready-to-save CSV document objet that agregates informations about live types.
118 # Each discovered type is listed in a line, with its status: resolution, liveness, cast-liveness.
119 # Note: types are listed in an alphanumeric order to improve human reading.
120 fun live_types_to_csv: CsvDocument
121 do
122 # Gather all kind of type
123 var typeset = new HashSet[MType]
124 typeset.add_all(live_types)
125 typeset.add_all(live_open_types)
126 typeset.add_all(live_cast_types)
127 typeset.add_all(live_open_cast_types)
128 var types = typeset.to_a
129 (new CachedAlphaComparator).sort(types)
130 var res = new CsvDocument
131 res.format = new CsvFormat('"', ';', "\n")
132 res.header = ["Type", "Resolution", "Liveness", "Cast-liveness"]
133 for t in types do
134 var reso
135 if t.need_anchor then reso = "OPEN " else reso = "CLOSED"
136 var live
137 if t isa MClassType and (live_types.has(t) or live_open_types.has(t)) then live = "LIVE" else live = "DEAD"
138 var cast
139 if live_cast_types.has(t) or live_open_cast_types.has(t) then cast = "CAST LIVE" else cast = "CAST DEAD"
140 res.add_record(t, reso, live, cast)
141 end
142 return res
143 end
144
145 # Return a ready-to-save OrderedTree object that agregates infomration about live methods.
146 # Note: methods are listed in an alphanumeric order to improve human reading.
147 fun live_methods_to_tree: OrderedTree[Object]
148 do
149 var tree = new OrderedTree[Object]
150 for x in live_methods do
151 var xn = x.full_name
152 tree.add(null, xn)
153 for z in x.mpropdefs do
154 var zn = z.to_s
155 if live_methoddefs.has(z) then
156 tree.add(xn, zn)
157 if live_super_sends.has(z) then
158 tree.add(zn, zn + "(super)")
159 end
160 else if live_super_sends.has(z) then
161 tree.add(xn, zn + "(super)")
162 end
163 end
164 end
165 tree.sort_with(alpha_comparator)
166 return tree
167 end
168
169 # Methods that are still candidate to the try_send
170 private var totry_methods = new HashSet[MMethod]
171
172 # Methods that are are no more candidate to the try_send
173 private var totry_methods_to_remove = new Array[MMethod]
174
175 # Methods that are or were candidate to the try_send
176 # Used to ensure that try_send is only used once
177 private var try_methods = new HashSet[MMethod]
178
179 # The method definitions that remain to visit
180 private var todo = new List[MMethodDef]
181
182 private fun force_alive(classname: String)
183 do
184 var classes = self.modelbuilder.model.get_mclasses_by_name(classname)
185 if classes != null then for c in classes do self.add_new(c.mclass_type, c.mclass_type)
186 end
187
188 # Run the analysis until all visitable method definitions are visited.
189 fun run_analysis
190 do
191 var maintype = mainmodule.sys_type
192 if maintype == null then return # No entry point
193 add_new(maintype, maintype)
194 var initprop = mainmodule.try_get_primitive_method("init", maintype.mclass)
195 if initprop != null then
196 add_send(maintype, initprop)
197 end
198 var mainprop = mainmodule.try_get_primitive_method("run", maintype.mclass) or else
199 mainmodule.try_get_primitive_method("main", maintype.mclass)
200 if mainprop != null then
201 add_send(maintype, mainprop)
202 end
203
204 var finalizable_type = mainmodule.finalizable_type
205 if finalizable_type != null then
206 var finalize_meth = mainmodule.try_get_primitive_method("finalize", finalizable_type.mclass)
207 if finalize_meth != null then add_send(finalizable_type, finalize_meth)
208 end
209
210 # Force primitive types
211 force_alive("Bool")
212 force_alive("Int")
213 force_alive("Float")
214 force_alive("Char")
215 force_alive("Pointer")
216 force_alive("Byte")
217
218 while not todo.is_empty do
219 var mmethoddef = todo.shift
220 var mmeth = mmethoddef.mproperty
221 #print "# visit {mmethoddef}"
222 var v = new RapidTypeVisitor(self, mmethoddef.mclassdef.bound_mtype, mmethoddef)
223
224 var vararg_rank = mmethoddef.msignature.vararg_rank
225 if vararg_rank > -1 then
226 var node = self.modelbuilder.mpropdef2node(mmethoddef)
227 var elttype = mmethoddef.msignature.mparameters[vararg_rank].mtype
228 #elttype = elttype.anchor_to(self.mainmodule, v.receiver)
229 var vararg = self.mainmodule.array_type(elttype)
230 v.add_type(vararg)
231 var native = self.mainmodule.native_array_type(elttype)
232 v.add_type(native)
233 v.add_monomorphic_send(vararg, self.modelbuilder.force_get_primitive_method(node, "with_native", vararg.mclass, self.mainmodule))
234 end
235
236 # TODO? new_msignature
237 var sig = mmethoddef.msignature.as(not null)
238 var osig = mmeth.intro.msignature.as(not null)
239 for i in [0..sig.arity[ do
240 var origtype = osig.mparameters[i].mtype
241 if not origtype.need_anchor then continue # skip non covariant stuff
242 var paramtype = sig.mparameters[i].mtype
243 add_cast(paramtype)
244 end
245
246 var npropdef = modelbuilder.mpropdef2node(mmethoddef)
247
248 if npropdef isa AClassdef then
249 # It is an init for a class
250 assert mmethoddef == npropdef.mfree_init
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 continue
256 else if mmethoddef.constant_value != null then
257 # Make the return type live
258 v.add_type(mmethoddef.msignature.return_mtype.as(MClassType))
259 continue
260 else if npropdef == null then
261 abort
262 end
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 mmethoddef.is_intern or mmethoddef.is_extern then
277 # UGLY: We force the "instantation" of the concrete return type if any
278 var ret = mmethoddef.msignature.return_mtype
279 if ret != null and ret isa MClassType and ret.mclass.kind != abstract_kind and ret.mclass.kind != interface_kind then
280 v.add_type(ret)
281 end
282 end
283
284 v.enter_visit(npropdef)
285 end
286
287 #print "MMethod {live_methods.length}: {live_methods.join(", ")}"
288 #print "MMethodDef {live_methoddefs.length}: {live_methoddefs.join(", ")}"
289
290 #print "open MType {live_open_types.length}: {live_open_types.join(", ")}"
291 var todo_types = new List[MClassType]
292 todo_types.add_all(live_types)
293 while not todo_types.is_empty do
294 var t = todo_types.shift
295 for ot in live_open_types do
296 #print "{ot}/{t} ?"
297 if not ot.can_resolve_for(t, t, mainmodule) then continue
298 var rt = ot.anchor_to(mainmodule, t)
299 if live_types.has(rt) then continue
300 #print "{ot}/{t} -> {rt}"
301 live_types.add(rt)
302 todo_types.add(rt)
303 check_depth(rt)
304 end
305 end
306 #print "MType {live_types.length}: {live_types.join(", ")}"
307
308 #print "open cast MType {live_open_cast_types.length}: {live_open_cast_types.join(", ")}"
309 for ot in live_open_cast_types do
310 #print "live_open_cast_type: {ot}"
311 for t in live_types do
312 if not ot.can_resolve_for(t, t, mainmodule) then continue
313 var rt = ot.anchor_to(mainmodule, t)
314 live_cast_types.add(rt)
315 #print " {ot}/{t} -> {rt}"
316 end
317 end
318 #print "cast MType {live_cast_types.length}: {live_cast_types.join(", ")}"
319 end
320
321 private fun check_depth(mtype: MClassType)
322 do
323 var d = mtype.length
324 if d > 255 then
325 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}`.")
326 end
327 end
328
329 fun add_new(recv: MClassType, mtype: MClassType)
330 do
331 assert not recv.need_anchor
332 if mtype.need_anchor then
333 if live_open_types.has(mtype) then return
334 live_open_types.add(mtype)
335 else
336 if live_types.has(mtype) then return
337 live_types.add(mtype)
338 end
339
340 var mclass = mtype.mclass
341 if live_classes.has(mclass) then return
342 live_classes.add(mclass)
343
344 for p in totry_methods do try_send(mtype, p)
345 for p in live_super_sends do try_super_send(mtype, p)
346
347 # Remove cleared ones
348 for p in totry_methods_to_remove do totry_methods.remove(p)
349 totry_methods_to_remove.clear
350
351 var bound_mtype = mtype.anchor_to(mainmodule, recv)
352 for cd in bound_mtype.collect_mclassdefs(mainmodule)
353 do
354 for npropdef in modelbuilder.collect_attr_propdef(cd) do
355 if not npropdef.has_value then continue
356
357 var mpropdef = npropdef.mreadpropdef.as(not null)
358 var v = new RapidTypeVisitor(self, bound_mtype, mpropdef)
359 v.enter_visit(npropdef.n_expr)
360 v.enter_visit(npropdef.n_block)
361 end
362 end
363
364 end
365
366 fun add_cast(mtype: MType)
367 do
368 if mtype.need_anchor then
369 live_open_cast_types.add(mtype)
370 else
371 live_cast_types.add(mtype)
372 end
373 end
374
375 fun try_send(recv: MClassType, mproperty: MMethod)
376 do
377 recv = recv.mclass.intro.bound_mtype
378 if not recv.has_mproperty(mainmodule, mproperty) then return
379 var d = mproperty.lookup_first_definition(mainmodule, recv)
380 add_call(d)
381 end
382
383 fun add_call(mpropdef: MMethodDef)
384 do
385 if live_methoddefs.has(mpropdef) then return
386 live_methoddefs.add(mpropdef)
387 todo.add(mpropdef)
388
389 var mproperty = mpropdef.mproperty
390 if mproperty.mpropdefs.length <= 1 then return
391 # If all definitions of a method are live, we can remove the definition of the totry set
392 for d in mproperty.mpropdefs do
393 if not live_methoddefs.has(d) then return
394 end
395 #print "full property: {mpropdef.mproperty} for {mpropdef.mproperty.mpropdefs.length} definitions"
396 totry_methods_to_remove.add(mpropdef.mproperty)
397 end
398
399 fun add_send(recv: MType, mproperty: MMethod)
400 do
401 if try_methods.has(mproperty) then return
402 #print "new prop: {mproperty}"
403 live_methods.add(mproperty)
404 try_methods.add(mproperty)
405 if mproperty.mpropdefs.length == 1 then
406 # If there is only one definition, just add the definition and do not try again the property
407 var d = mproperty.mpropdefs.first
408 add_call(d)
409 return
410 end
411 # Else, the property is potentially called with various reciever
412 # So just try the methods with existing receiver and register it for future receiver
413 totry_methods.add(mproperty)
414 for c in live_classes do
415 try_send(c.intro.bound_mtype, mproperty)
416 end
417 end
418
419 fun try_super_send(recv: MClassType, mpropdef: MMethodDef)
420 do
421 recv = recv.mclass.intro.bound_mtype
422 if not recv.collect_mclassdefs(mainmodule).has(mpropdef.mclassdef) then return
423 var d = mpropdef.lookup_next_definition(mainmodule, recv)
424 add_call(d)
425 end
426
427 fun add_super_send(recv: MType, mpropdef: MMethodDef)
428 do
429 assert mpropdef.has_supercall
430 if live_super_sends.has(mpropdef) then return
431 #print "new super prop: {mpropdef}"
432 live_super_sends.add(mpropdef)
433 for c in live_classes do
434 try_super_send(c.intro.bound_mtype, mpropdef)
435 end
436 end
437 end
438
439 class RapidTypeVisitor
440 super Visitor
441
442 var analysis: RapidTypeAnalysis
443 var receiver: MClassType
444 var mpropdef: MPropDef
445
446 init
447 do
448 assert not receiver.need_anchor
449 end
450
451 redef fun visit(n)
452 do
453 n.accept_rapid_type_visitor(self)
454 if n isa AExpr then
455 var implicit_cast_to = n.implicit_cast_to
456 if implicit_cast_to != null then self.add_cast_type(implicit_cast_to)
457 end
458
459 # RTA does not enter in AAnnotations
460 if not n isa AAnnotations then
461 n.visit_all(self)
462 end
463 end
464
465 fun cleanup_type(mtype: MType): nullable MClassType
466 do
467 mtype = mtype.anchor_to(self.analysis.mainmodule, self.receiver)
468 if mtype isa MNullType then return null
469 mtype = mtype.undecorate
470 assert mtype isa MClassType
471 assert not mtype.need_anchor
472 return mtype
473 end
474
475 fun get_method(recv: MType, name: String): MMethod
476 do
477 var mtype = cleanup_type(recv)
478 assert mtype != null
479 return self.analysis.modelbuilder.force_get_primitive_method(self.current_node.as(not null), name, mtype.mclass, self.analysis.mainmodule)
480 end
481
482 fun add_type(mtype: MClassType) do analysis.add_new(receiver, mtype)
483
484 fun add_monomorphic_send(mtype: MType, mproperty: MMethod)
485 do
486 analysis.live_methods.add(mproperty)
487 analysis.try_send(mtype.as(MClassType), mproperty)
488 end
489
490 fun add_send(mtype: MType, mproperty: MMethod) do analysis.add_send(mtype, mproperty)
491
492 fun add_cast_type(mtype: MType) do analysis.add_cast(mtype)
493
494 fun add_callsite(callsite: nullable CallSite) do if callsite != null then
495 for m in callsite.mpropdef.initializers do
496 if m isa MMethod then
497 analysis.add_send(callsite.recv, m)
498 end
499 end
500 analysis.add_send(callsite.recv, callsite.mproperty)
501 analysis.live_callsites.add(callsite)
502 end
503 end
504
505 ###
506
507 redef class ANode
508 private fun accept_rapid_type_visitor(v: RapidTypeVisitor)
509 do
510 end
511 end
512
513 redef class AIntExpr
514 redef fun accept_rapid_type_visitor(v)
515 do
516 v.add_type(self.mtype.as(MClassType))
517 end
518 end
519
520 redef class AByteExpr
521 redef fun accept_rapid_type_visitor(v)
522 do
523 v.add_type(self.mtype.as(MClassType))
524 end
525 end
526
527 redef class AFloatExpr
528 redef fun accept_rapid_type_visitor(v)
529 do
530 v.add_type(self.mtype.as(MClassType))
531 end
532 end
533
534 redef class ACharExpr
535 redef fun accept_rapid_type_visitor(v)
536 do
537 v.add_type(self.mtype.as(MClassType))
538 end
539 end
540
541 redef class AArrayExpr
542 redef fun accept_rapid_type_visitor(v)
543 do
544 var mtype = self.mtype.as(MClassType)
545 v.add_type(mtype)
546 var native = v.analysis.mainmodule.native_array_type(mtype.arguments.first)
547 v.add_type(native)
548 mtype = v.cleanup_type(mtype).as(not null)
549 var prop = v.get_method(mtype, "with_native")
550 v.add_monomorphic_send(mtype, prop)
551 v.add_callsite(with_capacity_callsite)
552 v.add_callsite(push_callsite)
553 end
554 end
555
556 redef class AStringFormExpr
557 redef fun accept_rapid_type_visitor(v)
558 do
559 var native = v.analysis.mainmodule.native_string_type
560 v.add_type(native)
561 var prop = v.get_method(native, "to_s_with_length")
562 v.add_monomorphic_send(native, prop)
563 end
564 end
565
566 redef class ASuperstringExpr
567 redef fun accept_rapid_type_visitor(v)
568 do
569 var mmodule = v.analysis.mainmodule
570 var object_type = mmodule.string_type
571 var arraytype = mmodule.array_type(object_type)
572 v.add_type(arraytype)
573 var nattype = mmodule.native_array_type(object_type)
574 v.add_type(nattype)
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 v.add_monomorphic_send(nattype, v.get_method(nattype, "native_to_s"))
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 var mf = self.method_finish
688 if mf != null then v.add_callsite(mf)
689 end
690 end
691
692 redef class ANewExpr
693 redef fun accept_rapid_type_visitor(v)
694 do
695 var mtype = self.recvtype.as(not null)
696 v.add_type(mtype)
697 v.add_callsite(callsite)
698 end
699 end