rta: new method `allocate_mtype` to factorize some code
[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 var msignature = mmethoddef.msignature
222 if msignature == null then continue # Skip broken method
223
224 #print "# visit {mmethoddef}"
225 var v = new RapidTypeVisitor(self, mmethoddef.mclassdef.bound_mtype, mmethoddef)
226
227 var vararg_rank = msignature.vararg_rank
228 if vararg_rank > -1 then
229 var node = self.modelbuilder.mpropdef2node(mmethoddef)
230 var elttype = msignature.mparameters[vararg_rank].mtype
231 #elttype = elttype.anchor_to(self.mainmodule, v.receiver)
232 var vararg = self.mainmodule.array_type(elttype)
233 v.add_type(vararg)
234 var native = self.mainmodule.native_array_type(elttype)
235 v.add_type(native)
236 v.add_monomorphic_send(vararg, self.modelbuilder.force_get_primitive_method(node, "with_native", vararg.mclass, self.mainmodule))
237 end
238
239 # TODO? new_msignature
240 var sig = msignature
241 var osig = mmeth.intro.msignature.as(not null)
242 for i in [0..sig.arity[ do
243 var origtype = osig.mparameters[i].mtype
244 if not origtype.need_anchor then continue # skip non covariant stuff
245 var paramtype = sig.mparameters[i].mtype
246 add_cast(paramtype)
247 end
248
249 var npropdef = modelbuilder.mpropdef2node(mmethoddef)
250
251 if npropdef isa AClassdef then
252 # It is an init for a class
253 assert mmethoddef == npropdef.mfree_init
254
255 if mmethoddef.mproperty.is_root_init and not mmethoddef.is_intro then
256 self.add_super_send(v.receiver, mmethoddef)
257 end
258 continue
259 else if mmethoddef.constant_value != null then
260 # Make the return type live
261 v.add_type(msignature.return_mtype.as(MClassType))
262 continue
263 else if npropdef == null then
264 abort
265 end
266
267 if npropdef isa AMethPropdef then
268 var auto_super_inits = npropdef.auto_super_inits
269 if auto_super_inits != null then
270 for auto_super_init in auto_super_inits do
271 v.add_callsite(auto_super_init)
272 end
273 end
274 if npropdef.auto_super_call then
275 self.add_super_send(v.receiver, mmethoddef)
276 end
277 end
278
279 if mmethoddef.is_intern or mmethoddef.is_extern then
280 # UGLY: We force the "instantation" of the concrete return type if any
281 var ret = msignature.return_mtype
282 if ret != null and ret isa MClassType and ret.mclass.kind != abstract_kind and ret.mclass.kind != interface_kind then
283 v.add_type(ret)
284 end
285 end
286
287 v.enter_visit(npropdef)
288 end
289
290 #print "MMethod {live_methods.length}: {live_methods.join(", ")}"
291 #print "MMethodDef {live_methoddefs.length}: {live_methoddefs.join(", ")}"
292
293 #print "open MType {live_open_types.length}: {live_open_types.join(", ")}"
294 var todo_types = new List[MClassType]
295 todo_types.add_all(live_types)
296 while not todo_types.is_empty do
297 var t = todo_types.shift
298 for ot in live_open_types do
299 #print "{ot}/{t} ?"
300 if not ot.can_resolve_for(t, t, mainmodule) then continue
301 var rt = ot.anchor_to(mainmodule, t)
302 if live_types.has(rt) then continue
303 if not check_depth(rt) then continue
304 #print "{ot}/{t} -> {rt}"
305 live_types.add(rt)
306 todo_types.add(rt)
307 end
308 end
309 #print "MType {live_types.length}: {live_types.join(", ")}"
310
311 #print "open cast MType {live_open_cast_types.length}: {live_open_cast_types.join(", ")}"
312 for ot in live_open_cast_types do
313 #print "live_open_cast_type: {ot}"
314 for t in live_types do
315 if not ot.can_resolve_for(t, t, mainmodule) then continue
316 var rt = ot.anchor_to(mainmodule, t)
317 live_cast_types.add(rt)
318 #print " {ot}/{t} -> {rt}"
319 end
320 end
321 #print "cast MType {live_cast_types.length}: {live_cast_types.join(", ")}"
322 end
323
324 private fun check_depth(mtype: MClassType): Bool
325 do
326 var d = mtype.length
327 if d > 255 then
328 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}`.")
329 return false
330 end
331 return true
332 end
333
334 fun add_new(recv: MClassType, mtype: MClassType)
335 do
336 assert not recv.need_anchor
337 if mtype.need_anchor then
338 if live_open_types.has(mtype) then return
339 live_open_types.add(mtype)
340 else
341 if live_types.has(mtype) then return
342 live_types.add(mtype)
343 end
344
345 var mclass = mtype.mclass
346 if live_classes.has(mclass) then return
347 live_classes.add(mclass)
348
349 for p in totry_methods do try_send(mtype, p)
350 for p in live_super_sends do try_super_send(mtype, p)
351
352 # Remove cleared ones
353 for p in totry_methods_to_remove do totry_methods.remove(p)
354 totry_methods_to_remove.clear
355
356 var bound_mtype = mtype.anchor_to(mainmodule, recv)
357 for cd in bound_mtype.collect_mclassdefs(mainmodule)
358 do
359 for npropdef in modelbuilder.collect_attr_propdef(cd) do
360 if not npropdef.has_value then continue
361
362 var mpropdef = npropdef.mreadpropdef.as(not null)
363 var v = new RapidTypeVisitor(self, bound_mtype, mpropdef)
364 v.enter_visit(npropdef.n_expr)
365 v.enter_visit(npropdef.n_block)
366 end
367 end
368
369 end
370
371 fun add_cast(mtype: MType)
372 do
373 if mtype.need_anchor then
374 live_open_cast_types.add(mtype)
375 else
376 live_cast_types.add(mtype)
377 end
378 end
379
380 fun try_send(recv: MClassType, mproperty: MMethod)
381 do
382 recv = recv.mclass.intro.bound_mtype
383 if not recv.has_mproperty(mainmodule, mproperty) then return
384 var d = mproperty.lookup_first_definition(mainmodule, recv)
385 add_call(d)
386 end
387
388 fun add_call(mpropdef: MMethodDef)
389 do
390 if live_methoddefs.has(mpropdef) then return
391 live_methoddefs.add(mpropdef)
392 todo.add(mpropdef)
393
394 var mproperty = mpropdef.mproperty
395 if mproperty.mpropdefs.length <= 1 then return
396 # If all definitions of a method are live, we can remove the definition of the totry set
397 for d in mproperty.mpropdefs do
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
452 do
453 assert not receiver.need_anchor
454 end
455
456 redef fun visit(n)
457 do
458 if n isa AExpr then
459 if n.mtype != null or n.is_typed then
460 n.accept_rapid_type_visitor(self)
461 var implicit_cast_to = n.implicit_cast_to
462 if implicit_cast_to != null then self.add_cast_type(implicit_cast_to)
463 end
464 else
465 n.accept_rapid_type_visitor(self)
466 end
467
468 # RTA does not enter in AAnnotations
469 if not n isa AAnnotations then
470 n.visit_all(self)
471 end
472 end
473
474 fun cleanup_type(mtype: MType): nullable MClassType
475 do
476 mtype = mtype.anchor_to(self.analysis.mainmodule, self.receiver)
477 if mtype isa MNullType then return null
478 mtype = mtype.undecorate
479 assert mtype isa MClassType
480 assert not mtype.need_anchor
481 return mtype
482 end
483
484 fun get_method(recv: MType, name: String): MMethod
485 do
486 var mtype = cleanup_type(recv)
487 assert mtype != null
488 return self.analysis.modelbuilder.force_get_primitive_method(self.current_node.as(not null), name, mtype.mclass, self.analysis.mainmodule)
489 end
490
491 fun add_type(mtype: MClassType) do analysis.add_new(receiver, mtype)
492
493 fun add_monomorphic_send(mtype: MType, mproperty: MMethod)
494 do
495 analysis.live_methods.add(mproperty)
496 analysis.try_send(mtype.as(MClassType), mproperty)
497 end
498
499 fun add_send(mtype: MType, mproperty: MMethod) do analysis.add_send(mtype, mproperty)
500
501 fun add_cast_type(mtype: MType) do analysis.add_cast(mtype)
502
503 fun add_callsite(callsite: nullable CallSite) do if callsite != null then
504 for m in callsite.mpropdef.initializers do
505 if m isa MMethod then
506 analysis.add_send(callsite.recv, m)
507 end
508 end
509 analysis.add_send(callsite.recv, callsite.mproperty)
510 analysis.live_callsites.add(callsite)
511 end
512 end
513
514 ###
515
516 redef class ANode
517 private fun accept_rapid_type_visitor(v: RapidTypeVisitor)
518 do
519 end
520 end
521
522 redef class AExpr
523 # Make the `mtype` of the expression live
524 # Used by literals and instantiations
525 fun allocate_mtype(v: RapidTypeVisitor)
526 do
527 var mtype = self.mtype
528 if not mtype isa MClassType then return
529 v.add_type(self.mtype.as(MClassType))
530 end
531 end
532
533 redef class AIntExpr
534 redef fun accept_rapid_type_visitor(v)
535 do
536 allocate_mtype(v)
537 end
538 end
539
540 redef class AByteExpr
541 redef fun accept_rapid_type_visitor(v)
542 do
543 allocate_mtype(v)
544 end
545 end
546
547 redef class AFloatExpr
548 redef fun accept_rapid_type_visitor(v)
549 do
550 allocate_mtype(v)
551 end
552 end
553
554 redef class ACharExpr
555 redef fun accept_rapid_type_visitor(v)
556 do
557 allocate_mtype(v)
558 end
559 end
560
561 redef class AArrayExpr
562 redef fun accept_rapid_type_visitor(v)
563 do
564 var mtype = self.mtype.as(MClassType)
565 v.add_type(mtype)
566 var native = v.analysis.mainmodule.native_array_type(mtype.arguments.first)
567 v.add_type(native)
568 mtype = v.cleanup_type(mtype).as(not null)
569 var prop = v.get_method(mtype, "with_native")
570 v.add_monomorphic_send(mtype, prop)
571 v.add_callsite(with_capacity_callsite)
572 v.add_callsite(push_callsite)
573 end
574 end
575
576 redef class AStringFormExpr
577 redef fun accept_rapid_type_visitor(v)
578 do
579 var native = v.analysis.mainmodule.native_string_type
580 v.add_type(native)
581 var prop = v.get_method(native, "to_s_with_length")
582 v.add_monomorphic_send(native, prop)
583 end
584 end
585
586 redef class ASuperstringExpr
587 redef fun accept_rapid_type_visitor(v)
588 do
589 var mmodule = v.analysis.mainmodule
590 var object_type = mmodule.string_type
591 var arraytype = mmodule.array_type(object_type)
592 v.add_type(arraytype)
593 var nattype = mmodule.native_array_type(object_type)
594 v.add_type(nattype)
595 var prop = v.get_method(arraytype, "join")
596 v.add_monomorphic_send(arraytype, prop)
597 var prop2 = v.get_method(arraytype, "with_native")
598 v.add_monomorphic_send(arraytype, prop2)
599 v.add_monomorphic_send(nattype, v.get_method(nattype, "native_to_s"))
600 end
601 end
602
603 redef class ACrangeExpr
604 redef fun accept_rapid_type_visitor(v)
605 do
606 var mtype = self.mtype.as(MClassType)
607 v.add_type(mtype)
608 v.add_callsite(init_callsite)
609 end
610 end
611
612 redef class AOrangeExpr
613 redef fun accept_rapid_type_visitor(v)
614 do
615 var mtype = self.mtype.as(MClassType)
616 v.add_type(mtype)
617 v.add_callsite(init_callsite)
618 end
619 end
620
621 redef class ATrueExpr
622 redef fun accept_rapid_type_visitor(v)
623 do
624 allocate_mtype(v)
625 end
626 end
627
628 redef class AFalseExpr
629 redef fun accept_rapid_type_visitor(v)
630 do
631 allocate_mtype(v)
632 end
633 end
634
635 redef class AIsaExpr
636 redef fun accept_rapid_type_visitor(v)
637 do
638 v.add_cast_type(self.cast_type.as(not null))
639 end
640 end
641
642 redef class AAsCastExpr
643 redef fun accept_rapid_type_visitor(v)
644 do
645 v.add_cast_type(self.mtype.as(not null))
646 end
647 end
648
649 redef class ASendExpr
650 redef fun accept_rapid_type_visitor(v)
651 do
652 v.add_callsite(callsite)
653 end
654 end
655
656
657 redef class ASendReassignFormExpr
658 redef fun accept_rapid_type_visitor(v)
659 do
660 v.add_callsite(callsite)
661 v.add_callsite(reassign_callsite)
662 v.add_callsite(write_callsite)
663 end
664 end
665
666 redef class AVarReassignExpr
667 redef fun accept_rapid_type_visitor(v)
668 do
669 v.add_callsite(reassign_callsite)
670 end
671 end
672
673 redef class AAttrReassignExpr
674 redef fun accept_rapid_type_visitor(v)
675 do
676 v.add_callsite(reassign_callsite)
677 end
678 end
679
680 redef class ASuperExpr
681 redef fun accept_rapid_type_visitor(v)
682 do
683 var callsite = self.callsite
684 if callsite != null then
685 v.add_callsite(callsite)
686 return
687 end
688
689 v.analysis.add_super_send(v.receiver, mpropdef.as(not null))
690 end
691 end
692
693 redef class AForExpr
694 redef fun accept_rapid_type_visitor(v)
695 do
696 v.add_callsite(self.method_iterator)
697 v.add_callsite(self.method_is_ok)
698 if self.variables.length == 1 then
699 v.add_callsite(self.method_item)
700 else if self.variables.length == 2 then
701 v.add_callsite(self.method_key)
702 v.add_callsite(self.method_item)
703 else
704 abort
705 end
706 v.add_callsite(self.method_next)
707 var mf = self.method_finish
708 if mf != null then v.add_callsite(mf)
709 end
710 end
711
712 redef class ANewExpr
713 redef fun accept_rapid_type_visitor(v)
714 do
715 var mtype = self.recvtype.as(not null)
716 v.add_type(mtype)
717 v.add_callsite(callsite)
718 end
719 end