csv: Allow output customization.
[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 return analysis
40 end
41 end
42
43 # RapidTypeAnalysis looks for alive rapid types in application.
44 # The entry point of the analysis is the mainmodule of the application.
45 class RapidTypeAnalysis
46 # The modelbuilder used to get the AST.
47 var modelbuilder: ModelBuilder
48
49 # The main module of the analysis.
50 # Used to perform types operations.
51 var mainmodule: MModule
52
53 # The pool to live types.
54 # During the analysis, new types are added and combined with
55 # live_methods to determine new methoddefs to visit
56 var live_types = new HashSet[MClassType]
57
58 # The pool of undesolved live types
59 # They are globally resolved at the end of the analaysis
60 var live_open_types = new HashSet[MClassType]
61
62 # Live (instantiated) classes.
63 var live_classes = new HashSet[MClass]
64
65 # The pool of types used to perform type checks (isa and as).
66 var live_cast_types = new HashSet[MType]
67
68 # The pool of undesolved types used to perform type checks (isa and as).
69 # They are globally resolved at the end of the analaysis
70 var live_open_cast_types = new HashSet[MType]
71
72 # Live method definitions.
73 var live_methoddefs = new HashSet[MMethodDef]
74
75 # Live methods.
76 var live_methods = new HashSet[MMethod]
77
78 # Live callsites.
79 var live_callsites = new HashSet[CallSite]
80
81 private var live_targets_cache = new HashMap2[MType, MProperty, Set[MMethodDef]]
82
83 # The live targets of a specific callsite.
84 fun live_targets(callsite: CallSite): Set[MMethodDef]
85 do
86 var mtype = callsite.recv
87 var anchor = callsite.anchor
88 if anchor != null then mtype = mtype.anchor_to(callsite.mmodule, anchor)
89 mtype = mtype.as_notnullable
90 assert mtype isa MClassType
91 mtype = mtype.mclass.intro.bound_mtype
92 var mproperty = callsite.mproperty
93 var res = live_targets_cache[mtype, mproperty]
94 if res != null then return res
95 res = new ArraySet[MMethodDef]
96 live_targets_cache[mtype, mproperty] = res
97
98 for c in live_classes do
99 var tc = c.intro.bound_mtype
100 if not tc.is_subtype(mainmodule, null, mtype) then continue
101 var d = mproperty.lookup_first_definition(mainmodule, tc)
102 res.add d
103 end
104
105 return res
106 end
107
108 # Live call-to-super.
109 var live_super_sends = new HashSet[MMethodDef]
110
111 # Return a ready-to-save CSV document objet that agregates informations about live types.
112 # Each discovered type is listed in a line, with its status: resolution, liveness, cast-liveness.
113 # Note: types are listed in an alphanumeric order to improve human reading.
114 fun live_types_to_csv: CsvDocument
115 do
116 # Gather all kind of type
117 var typeset = new HashSet[MType]
118 typeset.add_all(live_types)
119 typeset.add_all(live_open_types)
120 typeset.add_all(live_cast_types)
121 typeset.add_all(live_open_cast_types)
122 var types = typeset.to_a
123 (new CachedAlphaComparator).sort(types)
124 var res = new CsvDocument
125 res.format = new CsvFormat('"', ';', "\n")
126 res.header = ["Type", "Resolution", "Liveness", "Cast-liveness"]
127 for t in types do
128 var reso
129 if t.need_anchor then reso = "OPEN " else reso = "CLOSED"
130 var live
131 if t isa MClassType and (live_types.has(t) or live_open_types.has(t)) then live = "LIVE" else live = "DEAD"
132 var cast
133 if live_cast_types.has(t) or live_open_cast_types.has(t) then cast = "CAST LIVE" else cast = "CAST DEAD"
134 res.add_record(t, reso, live, cast)
135 end
136 return res
137 end
138
139 # Return a ready-to-save OrderedTree object that agregates infomration about live methods.
140 # Note: methods are listed in an alphanumeric order to improve human reading.
141 fun live_methods_to_tree: OrderedTree[Object]
142 do
143 var tree = new OrderedTree[Object]
144 for x in live_methods do
145 var xn = x.full_name
146 tree.add(null, xn)
147 for z in x.mpropdefs do
148 var zn = z.to_s
149 if live_methoddefs.has(z) then
150 tree.add(xn, zn)
151 if live_super_sends.has(z) then
152 tree.add(zn, zn + "(super)")
153 end
154 else if live_super_sends.has(z) then
155 tree.add(xn, zn + "(super)")
156 end
157 end
158 end
159 tree.sort_with(alpha_comparator)
160 return tree
161 end
162
163 # Methods that are still candidate to the try_send
164 private var totry_methods = new HashSet[MMethod]
165
166 # Methods that are are no more candidate to the try_send
167 private var totry_methods_to_remove = new Array[MMethod]
168
169 # Methods that are or were candidate to the try_send
170 # Used to ensure that try_send is only used once
171 private var try_methods = new HashSet[MMethod]
172
173 # The method definitions that remain to visit
174 private var todo = new List[MMethodDef]
175
176 private fun force_alive(classname: String)
177 do
178 var classes = self.modelbuilder.model.get_mclasses_by_name(classname)
179 if classes != null then for c in classes do self.add_new(c.mclass_type, c.mclass_type)
180 end
181
182 # Run the analysis until all visitable method definitions are visited.
183 fun run_analysis
184 do
185 var maintype = mainmodule.sys_type
186 if maintype == null then return # No entry point
187 add_new(maintype, maintype)
188 var initprop = mainmodule.try_get_primitive_method("init", maintype.mclass)
189 if initprop != null then
190 add_send(maintype, initprop)
191 end
192 var mainprop = mainmodule.try_get_primitive_method("run", maintype.mclass) or else
193 mainmodule.try_get_primitive_method("main", maintype.mclass)
194 if mainprop != null then
195 add_send(maintype, mainprop)
196 end
197
198 var finalizable_type = mainmodule.finalizable_type
199 if finalizable_type != null then
200 var finalize_meth = mainmodule.try_get_primitive_method("finalize", finalizable_type.mclass)
201 if finalize_meth != null then add_send(finalizable_type, finalize_meth)
202 end
203
204 # Force primitive types
205 force_alive("Bool")
206 force_alive("Int")
207 force_alive("Float")
208 force_alive("Char")
209 force_alive("Pointer")
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.mpropdef2node(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 var npropdef = modelbuilder.mpropdef2node(mmethoddef)
240
241 if npropdef isa AClassdef then
242 # It is an init for a class
243 assert mmethoddef == npropdef.mfree_init
244
245 if mmethoddef.mproperty.is_root_init and not mmethoddef.is_intro then
246 self.add_super_send(v.receiver, mmethoddef)
247 end
248 continue
249 else if mmethoddef.constant_value != null then
250 # Make the return type live
251 v.add_type(mmethoddef.msignature.return_mtype.as(MClassType))
252 continue
253 else if npropdef == null then
254 abort
255 end
256
257 if npropdef isa AMethPropdef then
258 var auto_super_inits = npropdef.auto_super_inits
259 if auto_super_inits != null then
260 for auto_super_init in auto_super_inits do
261 v.add_callsite(auto_super_init)
262 end
263 end
264 if npropdef.auto_super_call then
265 self.add_super_send(v.receiver, mmethoddef)
266 end
267 end
268
269 if mmethoddef.is_intern or mmethoddef.is_extern then
270 # UGLY: We force the "instantation" of the concrete return type if any
271 var ret = mmethoddef.msignature.return_mtype
272 if ret != null and ret isa MClassType and ret.mclass.kind != abstract_kind and ret.mclass.kind != interface_kind then
273 v.add_type(ret)
274 end
275 end
276
277 v.enter_visit(npropdef)
278 end
279
280 #print "MMethod {live_methods.length}: {live_methods.join(", ")}"
281 #print "MMethodDef {live_methoddefs.length}: {live_methoddefs.join(", ")}"
282
283 #print "open MType {live_open_types.length}: {live_open_types.join(", ")}"
284 var todo_types = new List[MClassType]
285 todo_types.add_all(live_types)
286 while not todo_types.is_empty do
287 var t = todo_types.shift
288 for ot in live_open_types do
289 #print "{ot}/{t} ?"
290 if not ot.can_resolve_for(t, t, mainmodule) then continue
291 var rt = ot.anchor_to(mainmodule, t)
292 if live_types.has(rt) then continue
293 #print "{ot}/{t} -> {rt}"
294 live_types.add(rt)
295 todo_types.add(rt)
296 check_depth(rt)
297 end
298 end
299 #print "MType {live_types.length}: {live_types.join(", ")}"
300
301 #print "open cast MType {live_open_cast_types.length}: {live_open_cast_types.join(", ")}"
302 for ot in live_open_cast_types do
303 #print "live_open_cast_type: {ot}"
304 for t in live_types do
305 if not ot.can_resolve_for(t, t, mainmodule) then continue
306 var rt = ot.anchor_to(mainmodule, t)
307 live_cast_types.add(rt)
308 #print " {ot}/{t} -> {rt}"
309 end
310 end
311 #print "cast MType {live_cast_types.length}: {live_cast_types.join(", ")}"
312 end
313
314 private fun check_depth(mtype: MClassType)
315 do
316 var d = mtype.length
317 if d > 255 then
318 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}.")
319 end
320 end
321
322 fun add_new(recv: MClassType, mtype: MClassType)
323 do
324 assert not recv.need_anchor
325 if mtype.need_anchor then
326 if live_open_types.has(mtype) then return
327 live_open_types.add(mtype)
328 else
329 if live_types.has(mtype) then return
330 live_types.add(mtype)
331 end
332
333 var mclass = mtype.mclass
334 if live_classes.has(mclass) then return
335 live_classes.add(mclass)
336
337 for p in totry_methods do try_send(mtype, p)
338 for p in live_super_sends do try_super_send(mtype, p)
339
340 # Remove cleared ones
341 for p in totry_methods_to_remove do totry_methods.remove(p)
342 totry_methods_to_remove.clear
343
344 var bound_mtype = mtype.anchor_to(mainmodule, recv)
345 for cd in bound_mtype.collect_mclassdefs(mainmodule)
346 do
347 for npropdef in modelbuilder.collect_attr_propdef(cd) do
348 if not npropdef.has_value then continue
349
350 var mpropdef = npropdef.mpropdef.as(not null)
351 var v = new RapidTypeVisitor(self, bound_mtype, mpropdef)
352 v.enter_visit(npropdef.n_expr)
353 v.enter_visit(npropdef.n_block)
354 end
355 end
356
357 end
358
359 fun add_cast(mtype: MType)
360 do
361 if mtype.need_anchor then
362 live_open_cast_types.add(mtype)
363 else
364 live_cast_types.add(mtype)
365 end
366 end
367
368 fun try_send(recv: MClassType, mproperty: MMethod)
369 do
370 recv = recv.mclass.intro.bound_mtype
371 if not recv.has_mproperty(mainmodule, mproperty) then return
372 var d = mproperty.lookup_first_definition(mainmodule, recv)
373 add_call(d)
374 end
375
376 fun add_call(mpropdef: MMethodDef)
377 do
378 if live_methoddefs.has(mpropdef) then return
379 live_methoddefs.add(mpropdef)
380 todo.add(mpropdef)
381
382 var mproperty = mpropdef.mproperty
383 if mproperty.mpropdefs.length <= 1 then return
384 # If all definitions of a method are live, we can remove the definition of the totry set
385 for d in mproperty.mpropdefs do
386 if d.is_abstract then continue
387 if not live_methoddefs.has(d) then return
388 end
389 #print "full property: {mpropdef.mproperty} for {mpropdef.mproperty.mpropdefs.length} definitions"
390 totry_methods_to_remove.add(mpropdef.mproperty)
391 end
392
393 fun add_send(recv: MType, mproperty: MMethod)
394 do
395 if try_methods.has(mproperty) then return
396 #print "new prop: {mproperty}"
397 live_methods.add(mproperty)
398 try_methods.add(mproperty)
399 if mproperty.mpropdefs.length == 1 then
400 # If there is only one definition, just add the definition and do not try again the property
401 var d = mproperty.mpropdefs.first
402 add_call(d)
403 return
404 end
405 # Else, the property is potentially called with various reciever
406 # So just try the methods with existing receiver and register it for future receiver
407 totry_methods.add(mproperty)
408 for c in live_classes do
409 try_send(c.intro.bound_mtype, mproperty)
410 end
411 end
412
413 fun try_super_send(recv: MClassType, mpropdef: MMethodDef)
414 do
415 recv = recv.mclass.intro.bound_mtype
416 if not recv.collect_mclassdefs(mainmodule).has(mpropdef.mclassdef) then return
417 var d = mpropdef.lookup_next_definition(mainmodule, recv)
418 add_call(d)
419 end
420
421 fun add_super_send(recv: MType, mpropdef: MMethodDef)
422 do
423 assert mpropdef.has_supercall
424 if live_super_sends.has(mpropdef) then return
425 #print "new super prop: {mpropdef}"
426 live_super_sends.add(mpropdef)
427 for c in live_classes do
428 try_super_send(c.intro.bound_mtype, mpropdef)
429 end
430 end
431 end
432
433 class RapidTypeVisitor
434 super Visitor
435
436 var analysis: RapidTypeAnalysis
437 var receiver: MClassType
438 var mpropdef: MPropDef
439
440 init
441 do
442 assert not receiver.need_anchor
443 end
444
445 redef fun visit(n)
446 do
447 n.accept_rapid_type_visitor(self)
448 if n isa AExpr then
449 var implicit_cast_to = n.implicit_cast_to
450 if implicit_cast_to != null then self.add_cast_type(implicit_cast_to)
451 end
452
453 # RTA does not enter in AAnnotations
454 if not n isa AAnnotations then
455 n.visit_all(self)
456 end
457 end
458
459 fun cleanup_type(mtype: MType): nullable MClassType
460 do
461 mtype = mtype.anchor_to(self.analysis.mainmodule, self.receiver)
462 if mtype isa MNullType then return null
463 mtype = mtype.as_notnullable
464 assert mtype isa MClassType
465 assert not mtype.need_anchor
466 return mtype
467 end
468
469 fun get_class(name: String): MClass
470 do
471 return analysis.mainmodule.get_primitive_class(name)
472 end
473
474 fun get_method(recv: MType, name: String): MMethod
475 do
476 var mtype = cleanup_type(recv)
477 assert mtype != null
478 return self.analysis.modelbuilder.force_get_primitive_method(self.current_node.as(not null), name, mtype.mclass, self.analysis.mainmodule)
479 end
480
481 fun add_type(mtype: MClassType) do analysis.add_new(receiver, mtype)
482
483 fun add_monomorphic_send(mtype: MType, mproperty: MMethod)
484 do
485 analysis.live_methods.add(mproperty)
486 analysis.try_send(mtype.as(MClassType), mproperty)
487 end
488
489 fun add_send(mtype: MType, mproperty: MMethod) do analysis.add_send(mtype, mproperty)
490
491 fun add_cast_type(mtype: MType) do analysis.add_cast(mtype)
492
493 fun add_callsite(callsite: nullable CallSite) do if callsite != null then
494 for m in callsite.mpropdef.initializers do
495 if m isa MMethod then
496 analysis.add_send(callsite.recv, m)
497 end
498 end
499 analysis.add_send(callsite.recv, callsite.mproperty)
500 analysis.live_callsites.add(callsite)
501 end
502 end
503
504 ###
505
506 redef class ANode
507 private fun accept_rapid_type_visitor(v: RapidTypeVisitor)
508 do
509 end
510 end
511
512 redef class AIntExpr
513 redef fun accept_rapid_type_visitor(v)
514 do
515 v.add_type(self.mtype.as(MClassType))
516 end
517 end
518
519 redef class AFloatExpr
520 redef fun accept_rapid_type_visitor(v)
521 do
522 v.add_type(self.mtype.as(MClassType))
523 end
524 end
525
526 redef class ACharExpr
527 redef fun accept_rapid_type_visitor(v)
528 do
529 v.add_type(self.mtype.as(MClassType))
530 end
531 end
532
533 redef class AArrayExpr
534 redef fun accept_rapid_type_visitor(v)
535 do
536 var mtype = self.mtype.as(MClassType)
537 v.add_type(mtype)
538 var native = v.analysis.mainmodule.get_primitive_class("NativeArray").get_mtype([mtype.arguments.first])
539 v.add_type(native)
540 mtype = v.cleanup_type(mtype).as(not null)
541 var prop = v.get_method(mtype, "with_native")
542 v.add_monomorphic_send(mtype, prop)
543 end
544 end
545
546 redef class AStringFormExpr
547 redef fun accept_rapid_type_visitor(v)
548 do
549 var native = v.get_class("NativeString").mclass_type
550 v.add_type(native)
551 var prop = v.get_method(native, "to_s_with_length")
552 v.add_monomorphic_send(native, prop)
553 end
554 end
555
556 redef class ASuperstringExpr
557 redef fun accept_rapid_type_visitor(v)
558 do
559 var arraytype = v.get_class("Array").get_mtype([v.get_class("Object").mclass_type])
560 v.add_type(arraytype)
561 v.add_type(v.get_class("NativeArray").get_mtype([v.get_class("Object").mclass_type]))
562 var prop = v.get_method(arraytype, "join")
563 v.add_monomorphic_send(arraytype, prop)
564 var prop2 = v.get_method(arraytype, "with_native")
565 v.add_monomorphic_send(arraytype, prop2)
566 end
567 end
568
569 redef class ACrangeExpr
570 redef fun accept_rapid_type_visitor(v)
571 do
572 var mtype = self.mtype.as(MClassType)
573 v.add_type(mtype)
574 v.add_callsite(init_callsite)
575 end
576 end
577
578 redef class AOrangeExpr
579 redef fun accept_rapid_type_visitor(v)
580 do
581 var mtype = self.mtype.as(MClassType)
582 v.add_type(mtype)
583 v.add_callsite(init_callsite)
584 end
585 end
586
587 redef class ATrueExpr
588 redef fun accept_rapid_type_visitor(v)
589 do
590 v.add_type(self.mtype.as(MClassType))
591 end
592 end
593
594 redef class AFalseExpr
595 redef fun accept_rapid_type_visitor(v)
596 do
597 v.add_type(self.mtype.as(MClassType))
598 end
599 end
600
601 redef class AIsaExpr
602 redef fun accept_rapid_type_visitor(v)
603 do
604 v.add_cast_type(self.cast_type.as(not null))
605 end
606 end
607
608 redef class AAsCastExpr
609 redef fun accept_rapid_type_visitor(v)
610 do
611 v.add_cast_type(self.mtype.as(not null))
612 end
613 end
614
615 redef class ASendExpr
616 redef fun accept_rapid_type_visitor(v)
617 do
618 v.add_callsite(callsite)
619 end
620 end
621
622
623 redef class ASendReassignFormExpr
624 redef fun accept_rapid_type_visitor(v)
625 do
626 v.add_callsite(callsite)
627 v.add_callsite(reassign_callsite)
628 v.add_callsite(write_callsite)
629 end
630 end
631
632 redef class AVarReassignExpr
633 redef fun accept_rapid_type_visitor(v)
634 do
635 v.add_callsite(reassign_callsite)
636 end
637 end
638
639 redef class AAttrReassignExpr
640 redef fun accept_rapid_type_visitor(v)
641 do
642 v.add_callsite(reassign_callsite)
643 end
644 end
645
646 redef class ASuperExpr
647 redef fun accept_rapid_type_visitor(v)
648 do
649 var callsite = self.callsite
650 if callsite != null then
651 v.add_callsite(callsite)
652 return
653 end
654
655 v.analysis.add_super_send(v.receiver, mpropdef.as(not null))
656 end
657 end
658
659 redef class AForExpr
660 redef fun accept_rapid_type_visitor(v)
661 do
662 v.add_callsite(self.method_iterator)
663 v.add_callsite(self.method_is_ok)
664 if self.variables.length == 1 then
665 v.add_callsite(self.method_item)
666 else if self.variables.length == 2 then
667 v.add_callsite(self.method_key)
668 v.add_callsite(self.method_item)
669 else
670 abort
671 end
672 v.add_callsite(self.method_next)
673 var mf = self.method_finish
674 if mf != null then v.add_callsite(mf)
675 end
676 end
677
678 redef class ANewExpr
679 redef fun accept_rapid_type_visitor(v)
680 do
681 var mtype = self.recvtype.as(not null)
682 v.add_type(mtype)
683 v.add_callsite(callsite)
684 end
685 end