Merge: new option --define
[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.header = ["Type", "Resolution", "Liveness", "Cast-liveness"]
126 for t in types do
127 var reso
128 if t.need_anchor then reso = "OPEN " else reso = "CLOSED"
129 var live
130 if t isa MClassType and (live_types.has(t) or live_open_types.has(t)) then live = "LIVE" else live = "DEAD"
131 var cast
132 if live_cast_types.has(t) or live_open_cast_types.has(t) then cast = "CAST LIVE" else cast = "CAST DEAD"
133 res.add_line(t, reso, live, cast)
134 end
135 return res
136 end
137
138 # Return a ready-to-save OrderedTree object that agregates infomration about live methods.
139 # Note: methods are listed in an alphanumeric order to improve human reading.
140 fun live_methods_to_tree: OrderedTree[Object]
141 do
142 var tree = new OrderedTree[Object]
143 for x in live_methods do
144 var xn = x.full_name
145 tree.add(null, xn)
146 for z in x.mpropdefs do
147 var zn = z.to_s
148 if live_methoddefs.has(z) then
149 tree.add(xn, zn)
150 if live_super_sends.has(z) then
151 tree.add(zn, zn + "(super)")
152 end
153 else if live_super_sends.has(z) then
154 tree.add(xn, zn + "(super)")
155 end
156 end
157 end
158 tree.sort_with(alpha_comparator)
159 return tree
160 end
161
162 # Methods that are still candidate to the try_send
163 private var totry_methods = new HashSet[MMethod]
164
165 # Methods that are are no more candidate to the try_send
166 private var totry_methods_to_remove = new Array[MMethod]
167
168 # Methods that are or were candidate to the try_send
169 # Used to ensure that try_send is only used once
170 private var try_methods = new HashSet[MMethod]
171
172 # The method definitions that remain to visit
173 private var todo = new List[MMethodDef]
174
175 private fun force_alive(classname: String)
176 do
177 var classes = self.modelbuilder.model.get_mclasses_by_name(classname)
178 if classes != null then for c in classes do self.add_new(c.mclass_type, c.mclass_type)
179 end
180
181 # Run the analysis until all visitable method definitions are visited.
182 fun run_analysis
183 do
184 var maintype = mainmodule.sys_type
185 if maintype == null then return # No entry point
186 add_new(maintype, maintype)
187 var initprop = mainmodule.try_get_primitive_method("init", maintype.mclass)
188 if initprop != null then
189 add_send(maintype, initprop)
190 end
191 var mainprop = mainmodule.try_get_primitive_method("run", maintype.mclass) or else
192 mainmodule.try_get_primitive_method("main", maintype.mclass)
193 if mainprop != null then
194 add_send(maintype, mainprop)
195 end
196
197 var finalizable_type = mainmodule.finalizable_type
198 if finalizable_type != null then
199 var finalize_meth = mainmodule.try_get_primitive_method("finalize", finalizable_type.mclass)
200 if finalize_meth != null then add_send(finalizable_type, finalize_meth)
201 end
202
203 # Force primitive types
204 force_alive("Bool")
205 force_alive("Int")
206 force_alive("Float")
207 force_alive("Char")
208 force_alive("Pointer")
209
210 while not todo.is_empty do
211 var mmethoddef = todo.shift
212 var mmeth = mmethoddef.mproperty
213 #print "# visit {mmethoddef}"
214 var v = new RapidTypeVisitor(self, mmethoddef.mclassdef.bound_mtype, mmethoddef)
215
216 var vararg_rank = mmethoddef.msignature.vararg_rank
217 if vararg_rank > -1 then
218 var node = self.modelbuilder.mpropdef2npropdef[mmethoddef]
219 var elttype = mmethoddef.msignature.mparameters[vararg_rank].mtype
220 #elttype = elttype.anchor_to(self.mainmodule, v.receiver)
221 var vararg = self.mainmodule.get_primitive_class("Array").get_mtype([elttype])
222 v.add_type(vararg)
223 var native = self.mainmodule.get_primitive_class("NativeArray").get_mtype([elttype])
224 v.add_type(native)
225 v.add_monomorphic_send(vararg, self.modelbuilder.force_get_primitive_method(node, "with_native", vararg.mclass, self.mainmodule))
226 end
227
228 # TODO? new_msignature
229 var sig = mmethoddef.msignature.as(not null)
230 var osig = mmeth.intro.msignature.as(not null)
231 for i in [0..sig.arity[ do
232 var origtype = osig.mparameters[i].mtype
233 if not origtype.need_anchor then continue # skip non covariant stuff
234 var paramtype = sig.mparameters[i].mtype
235 add_cast(paramtype)
236 end
237
238 if not modelbuilder.mpropdef2npropdef.has_key(mmethoddef) then
239 # It is an init for a class?
240 if mmeth.name == "init" then
241 var nclassdef = self.modelbuilder.mclassdef2nclassdef[mmethoddef.mclassdef]
242 assert mmethoddef == nclassdef.mfree_init
243
244 if mmethoddef.mproperty.is_root_init and not mmethoddef.is_intro then
245 self.add_super_send(v.receiver, mmethoddef)
246 end
247 else if mmethoddef.constant_value != null then
248 # Make the return type live
249 v.add_type(mmethoddef.msignature.return_mtype.as(MClassType))
250 else
251 abort
252 end
253 continue
254 end
255
256 var npropdef = modelbuilder.mpropdef2npropdef[mmethoddef]
257
258 if npropdef isa AMethPropdef then
259 var auto_super_inits = npropdef.auto_super_inits
260 if auto_super_inits != null then
261 for auto_super_init in auto_super_inits do
262 v.add_callsite(auto_super_init)
263 end
264 end
265 if npropdef.auto_super_call then
266 self.add_super_send(v.receiver, mmethoddef)
267 end
268 end
269
270 if mmeth.is_new then
271 v.add_type(v.receiver)
272 else if mmethoddef.is_intern or mmethoddef.is_extern then
273 # UGLY: We force the "instantation" of the concrete return type if any
274 var ret = mmethoddef.msignature.return_mtype
275 if ret != null and ret isa MClassType and ret.mclass.kind != abstract_kind and ret.mclass.kind != interface_kind then
276 v.add_type(ret)
277 end
278 end
279
280 v.enter_visit(npropdef)
281 end
282
283 #print "MMethod {live_methods.length}: {live_methods.join(", ")}"
284 #print "MMethodDef {live_methoddefs.length}: {live_methoddefs.join(", ")}"
285
286 #print "open MType {live_open_types.length}: {live_open_types.join(", ")}"
287 var todo_types = new List[MClassType]
288 todo_types.add_all(live_types)
289 while not todo_types.is_empty do
290 var t = todo_types.shift
291 for ot in live_open_types do
292 #print "{ot}/{t} ?"
293 if not ot.can_resolve_for(t, t, mainmodule) then continue
294 var rt = ot.anchor_to(mainmodule, t)
295 if live_types.has(rt) then continue
296 #print "{ot}/{t} -> {rt}"
297 live_types.add(rt)
298 todo_types.add(rt)
299 check_depth(rt)
300 end
301 end
302 #print "MType {live_types.length}: {live_types.join(", ")}"
303
304 #print "open cast MType {live_open_cast_types.length}: {live_open_cast_types.join(", ")}"
305 for ot in live_open_cast_types do
306 #print "live_open_cast_type: {ot}"
307 for t in live_types do
308 if not ot.can_resolve_for(t, t, mainmodule) then continue
309 var rt = ot.anchor_to(mainmodule, t)
310 live_cast_types.add(rt)
311 #print " {ot}/{t} -> {rt}"
312 end
313 end
314 #print "cast MType {live_cast_types.length}: {live_cast_types.join(", ")}"
315 end
316
317 private fun check_depth(mtype: MClassType)
318 do
319 var d = mtype.length
320 if d > 255 then
321 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}.")
322 end
323 end
324
325 fun add_new(recv: MClassType, mtype: MClassType)
326 do
327 assert not recv.need_anchor
328 if mtype.need_anchor then
329 if live_open_types.has(mtype) then return
330 live_open_types.add(mtype)
331 else
332 if live_types.has(mtype) then return
333 live_types.add(mtype)
334 end
335
336 var mclass = mtype.mclass
337 if live_classes.has(mclass) then return
338 live_classes.add(mclass)
339
340 for p in totry_methods do try_send(mtype, p)
341 for p in live_super_sends do try_super_send(mtype, p)
342
343 # Remove cleared ones
344 for p in totry_methods_to_remove do totry_methods.remove(p)
345 totry_methods_to_remove.clear
346
347 var bound_mtype = mtype.anchor_to(mainmodule, recv)
348 for cd in bound_mtype.collect_mclassdefs(mainmodule)
349 do
350 if not self.modelbuilder.mclassdef2nclassdef.has_key(cd) then continue
351 var nclassdef = self.modelbuilder.mclassdef2nclassdef[cd]
352 for npropdef in nclassdef.n_propdefs do
353 if not npropdef isa AAttrPropdef then continue
354 var nexpr = npropdef.n_expr
355 if nexpr == null then continue
356 var mpropdef = npropdef.mpropdef.as(not null)
357 var v = new RapidTypeVisitor(self, bound_mtype, mpropdef)
358 v.enter_visit(nexpr)
359 end
360 end
361
362 end
363
364 fun add_cast(mtype: MType)
365 do
366 if mtype.need_anchor then
367 live_open_cast_types.add(mtype)
368 else
369 live_cast_types.add(mtype)
370 end
371 end
372
373 fun try_send(recv: MClassType, mproperty: MMethod)
374 do
375 recv = recv.mclass.intro.bound_mtype
376 if not recv.has_mproperty(mainmodule, mproperty) then return
377 var d = mproperty.lookup_first_definition(mainmodule, recv)
378 add_call(d)
379 end
380
381 fun add_call(mpropdef: MMethodDef)
382 do
383 if live_methoddefs.has(mpropdef) then return
384 live_methoddefs.add(mpropdef)
385 todo.add(mpropdef)
386
387 var mproperty = mpropdef.mproperty
388 if mproperty.mpropdefs.length <= 1 then return
389 # If all definitions of a method are live, we can remove the definition of the totry set
390 for d in mproperty.mpropdefs do
391 if d.is_abstract then continue
392 if not live_methoddefs.has(d) then return
393 end
394 #print "full property: {mpropdef.mproperty} for {mpropdef.mproperty.mpropdefs.length} definitions"
395 totry_methods_to_remove.add(mpropdef.mproperty)
396 end
397
398 fun add_send(recv: MType, mproperty: MMethod)
399 do
400 if try_methods.has(mproperty) then return
401 #print "new prop: {mproperty}"
402 live_methods.add(mproperty)
403 try_methods.add(mproperty)
404 if mproperty.mpropdefs.length == 1 then
405 # If there is only one definition, just add the definition and do not try again the property
406 var d = mproperty.mpropdefs.first
407 add_call(d)
408 return
409 end
410 # Else, the property is potentially called with various reciever
411 # So just try the methods with existing receiver and register it for future receiver
412 totry_methods.add(mproperty)
413 for c in live_classes do
414 try_send(c.intro.bound_mtype, mproperty)
415 end
416 end
417
418 fun try_super_send(recv: MClassType, mpropdef: MMethodDef)
419 do
420 recv = recv.mclass.intro.bound_mtype
421 if not recv.collect_mclassdefs(mainmodule).has(mpropdef.mclassdef) then return
422 var d = mpropdef.lookup_next_definition(mainmodule, recv)
423 add_call(d)
424 end
425
426 fun add_super_send(recv: MType, mpropdef: MMethodDef)
427 do
428 assert mpropdef.has_supercall
429 if live_super_sends.has(mpropdef) then return
430 #print "new super prop: {mpropdef}"
431 live_super_sends.add(mpropdef)
432 for c in live_classes do
433 try_super_send(c.intro.bound_mtype, mpropdef)
434 end
435 end
436 end
437
438 class RapidTypeVisitor
439 super Visitor
440
441 var analysis: RapidTypeAnalysis
442 var receiver: MClassType
443 var mpropdef: MPropDef
444
445 init(analysis: RapidTypeAnalysis, receiver: MClassType, mpropdef: MPropDef)
446 do
447 self.analysis = analysis
448 self.receiver = receiver
449 self.mpropdef = mpropdef
450 assert not receiver.need_anchor
451 end
452
453 redef fun visit(n)
454 do
455 n.accept_rapid_type_visitor(self)
456 if n isa AExpr then
457 var implicit_cast_to = n.implicit_cast_to
458 if implicit_cast_to != null then self.add_cast_type(implicit_cast_to)
459 end
460
461 # RTA does not enter in AAnnotations
462 if not n isa AAnnotations then
463 n.visit_all(self)
464 end
465 end
466
467 fun cleanup_type(mtype: MType): nullable MClassType
468 do
469 mtype = mtype.anchor_to(self.analysis.mainmodule, self.receiver)
470 if mtype isa MNullType then return null
471 mtype = mtype.as_notnullable
472 assert mtype isa MClassType
473 assert not mtype.need_anchor
474 return mtype
475 end
476
477 fun get_class(name: String): MClass
478 do
479 return analysis.mainmodule.get_primitive_class(name)
480 end
481
482 fun get_method(recv: MType, name: String): MMethod
483 do
484 var mtype = cleanup_type(recv)
485 assert mtype != null
486 return self.analysis.modelbuilder.force_get_primitive_method(self.current_node.as(not null), name, mtype.mclass, self.analysis.mainmodule)
487 end
488
489 fun add_type(mtype: MClassType) do analysis.add_new(receiver, mtype)
490
491 fun add_monomorphic_send(mtype: MType, mproperty: MMethod)
492 do
493 analysis.live_methods.add(mproperty)
494 analysis.try_send(mtype.as(MClassType), mproperty)
495 end
496
497 fun add_send(mtype: MType, mproperty: MMethod) do analysis.add_send(mtype, mproperty)
498
499 fun add_cast_type(mtype: MType) do analysis.add_cast(mtype)
500
501 fun add_callsite(callsite: nullable CallSite) do if callsite != null then
502 for m in callsite.mpropdef.initializers do
503 if m isa MMethod then
504 analysis.add_send(callsite.recv, m)
505 end
506 end
507 analysis.add_send(callsite.recv, callsite.mproperty)
508 analysis.live_callsites.add(callsite)
509 end
510 end
511
512 ###
513
514 redef class ANode
515 private fun accept_rapid_type_visitor(v: RapidTypeVisitor)
516 do
517 end
518 end
519
520 redef class AIntExpr
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.get_primitive_class("NativeArray").get_mtype([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 end
552 end
553
554 redef class AStringFormExpr
555 redef fun accept_rapid_type_visitor(v)
556 do
557 var native = v.get_class("NativeString").mclass_type
558 v.add_type(native)
559 var prop = v.get_method(native, "to_s_with_length")
560 v.add_monomorphic_send(native, prop)
561 end
562 end
563
564 redef class ASuperstringExpr
565 redef fun accept_rapid_type_visitor(v)
566 do
567 var arraytype = v.get_class("Array").get_mtype([v.get_class("Object").mclass_type])
568 v.add_type(arraytype)
569 v.add_type(v.get_class("NativeArray").get_mtype([v.get_class("Object").mclass_type]))
570 var prop = v.get_method(arraytype, "join")
571 v.add_monomorphic_send(arraytype, prop)
572 var prop2 = v.get_method(arraytype, "with_native")
573 v.add_monomorphic_send(arraytype, prop2)
574 end
575 end
576
577 redef class ACrangeExpr
578 redef fun accept_rapid_type_visitor(v)
579 do
580 var mtype = self.mtype.as(MClassType)
581 v.add_type(mtype)
582 v.add_callsite(init_callsite)
583 end
584 end
585
586 redef class AOrangeExpr
587 redef fun accept_rapid_type_visitor(v)
588 do
589 var mtype = self.mtype.as(MClassType)
590 v.add_type(mtype)
591 v.add_callsite(init_callsite)
592 end
593 end
594
595 redef class ATrueExpr
596 redef fun accept_rapid_type_visitor(v)
597 do
598 v.add_type(self.mtype.as(MClassType))
599 end
600 end
601
602 redef class AFalseExpr
603 redef fun accept_rapid_type_visitor(v)
604 do
605 v.add_type(self.mtype.as(MClassType))
606 end
607 end
608
609 redef class AIsaExpr
610 redef fun accept_rapid_type_visitor(v)
611 do
612 v.add_cast_type(self.cast_type.as(not null))
613 end
614 end
615
616 redef class AAsCastExpr
617 redef fun accept_rapid_type_visitor(v)
618 do
619 v.add_cast_type(self.mtype.as(not null))
620 end
621 end
622
623 redef class ASendExpr
624 redef fun accept_rapid_type_visitor(v)
625 do
626 v.add_callsite(callsite)
627 end
628 end
629
630
631 redef class ASendReassignFormExpr
632 redef fun accept_rapid_type_visitor(v)
633 do
634 v.add_callsite(callsite)
635 v.add_callsite(reassign_callsite)
636 v.add_callsite(write_callsite)
637 end
638 end
639
640 redef class AVarReassignExpr
641 redef fun accept_rapid_type_visitor(v)
642 do
643 v.add_callsite(reassign_callsite)
644 end
645 end
646
647 redef class AAttrReassignExpr
648 redef fun accept_rapid_type_visitor(v)
649 do
650 v.add_callsite(reassign_callsite)
651 end
652 end
653
654 redef class ASuperExpr
655 redef fun accept_rapid_type_visitor(v)
656 do
657 var callsite = self.callsite
658 if callsite != null then
659 v.add_callsite(callsite)
660 return
661 end
662
663 v.analysis.add_super_send(v.receiver, mpropdef.as(not null))
664 end
665 end
666
667 redef class AForExpr
668 redef fun accept_rapid_type_visitor(v)
669 do
670 v.add_callsite(self.method_iterator)
671 v.add_callsite(self.method_is_ok)
672 if self.variables.length == 1 then
673 v.add_callsite(self.method_item)
674 else if self.variables.length == 2 then
675 v.add_callsite(self.method_key)
676 v.add_callsite(self.method_item)
677 else
678 abort
679 end
680 v.add_callsite(self.method_next)
681 var mf = self.method_finish
682 if mf != null then v.add_callsite(mf)
683 end
684 end
685
686 redef class ANewExpr
687 redef fun accept_rapid_type_visitor(v)
688 do
689 var mtype = self.mtype.as(MClassType)
690 v.add_type(mtype)
691 v.add_callsite(callsite)
692 end
693 end