modelize: add and use method mpropdef2node
[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.mpropdef2node(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 var npropdef = modelbuilder.mpropdef2node(mmethoddef)
239
240 if npropdef isa AClassdef then
241 # It is an init for a class
242 assert mmethoddef == npropdef.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 continue
248 else if mmethoddef.constant_value != null then
249 # Make the return type live
250 v.add_type(mmethoddef.msignature.return_mtype.as(MClassType))
251 continue
252 else if npropdef == null then
253 abort
254 end
255
256 if npropdef isa AMethPropdef then
257 var auto_super_inits = npropdef.auto_super_inits
258 if auto_super_inits != null then
259 for auto_super_init in auto_super_inits do
260 v.add_callsite(auto_super_init)
261 end
262 end
263 if npropdef.auto_super_call then
264 self.add_super_send(v.receiver, mmethoddef)
265 end
266 end
267
268 if mmethoddef.is_intern or mmethoddef.is_extern then
269 # UGLY: We force the "instantation" of the concrete return type if any
270 var ret = mmethoddef.msignature.return_mtype
271 if ret != null and ret isa MClassType and ret.mclass.kind != abstract_kind and ret.mclass.kind != interface_kind then
272 v.add_type(ret)
273 end
274 end
275
276 v.enter_visit(npropdef)
277 end
278
279 #print "MMethod {live_methods.length}: {live_methods.join(", ")}"
280 #print "MMethodDef {live_methoddefs.length}: {live_methoddefs.join(", ")}"
281
282 #print "open MType {live_open_types.length}: {live_open_types.join(", ")}"
283 var todo_types = new List[MClassType]
284 todo_types.add_all(live_types)
285 while not todo_types.is_empty do
286 var t = todo_types.shift
287 for ot in live_open_types do
288 #print "{ot}/{t} ?"
289 if not ot.can_resolve_for(t, t, mainmodule) then continue
290 var rt = ot.anchor_to(mainmodule, t)
291 if live_types.has(rt) then continue
292 #print "{ot}/{t} -> {rt}"
293 live_types.add(rt)
294 todo_types.add(rt)
295 check_depth(rt)
296 end
297 end
298 #print "MType {live_types.length}: {live_types.join(", ")}"
299
300 #print "open cast MType {live_open_cast_types.length}: {live_open_cast_types.join(", ")}"
301 for ot in live_open_cast_types do
302 #print "live_open_cast_type: {ot}"
303 for t in live_types do
304 if not ot.can_resolve_for(t, t, mainmodule) then continue
305 var rt = ot.anchor_to(mainmodule, t)
306 live_cast_types.add(rt)
307 #print " {ot}/{t} -> {rt}"
308 end
309 end
310 #print "cast MType {live_cast_types.length}: {live_cast_types.join(", ")}"
311 end
312
313 private fun check_depth(mtype: MClassType)
314 do
315 var d = mtype.length
316 if d > 255 then
317 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}.")
318 end
319 end
320
321 fun add_new(recv: MClassType, mtype: MClassType)
322 do
323 assert not recv.need_anchor
324 if mtype.need_anchor then
325 if live_open_types.has(mtype) then return
326 live_open_types.add(mtype)
327 else
328 if live_types.has(mtype) then return
329 live_types.add(mtype)
330 end
331
332 var mclass = mtype.mclass
333 if live_classes.has(mclass) then return
334 live_classes.add(mclass)
335
336 for p in totry_methods do try_send(mtype, p)
337 for p in live_super_sends do try_super_send(mtype, p)
338
339 # Remove cleared ones
340 for p in totry_methods_to_remove do totry_methods.remove(p)
341 totry_methods_to_remove.clear
342
343 var bound_mtype = mtype.anchor_to(mainmodule, recv)
344 for cd in bound_mtype.collect_mclassdefs(mainmodule)
345 do
346 if not self.modelbuilder.mclassdef2nclassdef.has_key(cd) then continue
347 var nclassdef = self.modelbuilder.mclassdef2nclassdef[cd]
348 for npropdef in nclassdef.n_propdefs do
349 if not npropdef isa AAttrPropdef then continue
350 if not npropdef.has_value then continue
351
352 var mpropdef = npropdef.mpropdef.as(not null)
353 var v = new RapidTypeVisitor(self, bound_mtype, mpropdef)
354 v.enter_visit(npropdef.n_expr)
355 v.enter_visit(npropdef.n_block)
356 end
357 end
358
359 end
360
361 fun add_cast(mtype: MType)
362 do
363 if mtype.need_anchor then
364 live_open_cast_types.add(mtype)
365 else
366 live_cast_types.add(mtype)
367 end
368 end
369
370 fun try_send(recv: MClassType, mproperty: MMethod)
371 do
372 recv = recv.mclass.intro.bound_mtype
373 if not recv.has_mproperty(mainmodule, mproperty) then return
374 var d = mproperty.lookup_first_definition(mainmodule, recv)
375 add_call(d)
376 end
377
378 fun add_call(mpropdef: MMethodDef)
379 do
380 if live_methoddefs.has(mpropdef) then return
381 live_methoddefs.add(mpropdef)
382 todo.add(mpropdef)
383
384 var mproperty = mpropdef.mproperty
385 if mproperty.mpropdefs.length <= 1 then return
386 # If all definitions of a method are live, we can remove the definition of the totry set
387 for d in mproperty.mpropdefs do
388 if d.is_abstract then continue
389 if not live_methoddefs.has(d) then return
390 end
391 #print "full property: {mpropdef.mproperty} for {mpropdef.mproperty.mpropdefs.length} definitions"
392 totry_methods_to_remove.add(mpropdef.mproperty)
393 end
394
395 fun add_send(recv: MType, mproperty: MMethod)
396 do
397 if try_methods.has(mproperty) then return
398 #print "new prop: {mproperty}"
399 live_methods.add(mproperty)
400 try_methods.add(mproperty)
401 if mproperty.mpropdefs.length == 1 then
402 # If there is only one definition, just add the definition and do not try again the property
403 var d = mproperty.mpropdefs.first
404 add_call(d)
405 return
406 end
407 # Else, the property is potentially called with various reciever
408 # So just try the methods with existing receiver and register it for future receiver
409 totry_methods.add(mproperty)
410 for c in live_classes do
411 try_send(c.intro.bound_mtype, mproperty)
412 end
413 end
414
415 fun try_super_send(recv: MClassType, mpropdef: MMethodDef)
416 do
417 recv = recv.mclass.intro.bound_mtype
418 if not recv.collect_mclassdefs(mainmodule).has(mpropdef.mclassdef) then return
419 var d = mpropdef.lookup_next_definition(mainmodule, recv)
420 add_call(d)
421 end
422
423 fun add_super_send(recv: MType, mpropdef: MMethodDef)
424 do
425 assert mpropdef.has_supercall
426 if live_super_sends.has(mpropdef) then return
427 #print "new super prop: {mpropdef}"
428 live_super_sends.add(mpropdef)
429 for c in live_classes do
430 try_super_send(c.intro.bound_mtype, mpropdef)
431 end
432 end
433 end
434
435 class RapidTypeVisitor
436 super Visitor
437
438 var analysis: RapidTypeAnalysis
439 var receiver: MClassType
440 var mpropdef: MPropDef
441
442 init
443 do
444 assert not receiver.need_anchor
445 end
446
447 redef fun visit(n)
448 do
449 n.accept_rapid_type_visitor(self)
450 if n isa AExpr then
451 var implicit_cast_to = n.implicit_cast_to
452 if implicit_cast_to != null then self.add_cast_type(implicit_cast_to)
453 end
454
455 # RTA does not enter in AAnnotations
456 if not n isa AAnnotations then
457 n.visit_all(self)
458 end
459 end
460
461 fun cleanup_type(mtype: MType): nullable MClassType
462 do
463 mtype = mtype.anchor_to(self.analysis.mainmodule, self.receiver)
464 if mtype isa MNullType then return null
465 mtype = mtype.as_notnullable
466 assert mtype isa MClassType
467 assert not mtype.need_anchor
468 return mtype
469 end
470
471 fun get_class(name: String): MClass
472 do
473 return analysis.mainmodule.get_primitive_class(name)
474 end
475
476 fun get_method(recv: MType, name: String): MMethod
477 do
478 var mtype = cleanup_type(recv)
479 assert mtype != null
480 return self.analysis.modelbuilder.force_get_primitive_method(self.current_node.as(not null), name, mtype.mclass, self.analysis.mainmodule)
481 end
482
483 fun add_type(mtype: MClassType) do analysis.add_new(receiver, mtype)
484
485 fun add_monomorphic_send(mtype: MType, mproperty: MMethod)
486 do
487 analysis.live_methods.add(mproperty)
488 analysis.try_send(mtype.as(MClassType), mproperty)
489 end
490
491 fun add_send(mtype: MType, mproperty: MMethod) do analysis.add_send(mtype, mproperty)
492
493 fun add_cast_type(mtype: MType) do analysis.add_cast(mtype)
494
495 fun add_callsite(callsite: nullable CallSite) do if callsite != null then
496 for m in callsite.mpropdef.initializers do
497 if m isa MMethod then
498 analysis.add_send(callsite.recv, m)
499 end
500 end
501 analysis.add_send(callsite.recv, callsite.mproperty)
502 analysis.live_callsites.add(callsite)
503 end
504 end
505
506 ###
507
508 redef class ANode
509 private fun accept_rapid_type_visitor(v: RapidTypeVisitor)
510 do
511 end
512 end
513
514 redef class AIntExpr
515 redef fun accept_rapid_type_visitor(v)
516 do
517 v.add_type(self.mtype.as(MClassType))
518 end
519 end
520
521 redef class AFloatExpr
522 redef fun accept_rapid_type_visitor(v)
523 do
524 v.add_type(self.mtype.as(MClassType))
525 end
526 end
527
528 redef class ACharExpr
529 redef fun accept_rapid_type_visitor(v)
530 do
531 v.add_type(self.mtype.as(MClassType))
532 end
533 end
534
535 redef class AArrayExpr
536 redef fun accept_rapid_type_visitor(v)
537 do
538 var mtype = self.mtype.as(MClassType)
539 v.add_type(mtype)
540 var native = v.analysis.mainmodule.get_primitive_class("NativeArray").get_mtype([mtype.arguments.first])
541 v.add_type(native)
542 mtype = v.cleanup_type(mtype).as(not null)
543 var prop = v.get_method(mtype, "with_native")
544 v.add_monomorphic_send(mtype, prop)
545 end
546 end
547
548 redef class AStringFormExpr
549 redef fun accept_rapid_type_visitor(v)
550 do
551 var native = v.get_class("NativeString").mclass_type
552 v.add_type(native)
553 var prop = v.get_method(native, "to_s_with_length")
554 v.add_monomorphic_send(native, prop)
555 end
556 end
557
558 redef class ASuperstringExpr
559 redef fun accept_rapid_type_visitor(v)
560 do
561 var arraytype = v.get_class("Array").get_mtype([v.get_class("Object").mclass_type])
562 v.add_type(arraytype)
563 v.add_type(v.get_class("NativeArray").get_mtype([v.get_class("Object").mclass_type]))
564 var prop = v.get_method(arraytype, "join")
565 v.add_monomorphic_send(arraytype, prop)
566 var prop2 = v.get_method(arraytype, "with_native")
567 v.add_monomorphic_send(arraytype, prop2)
568 end
569 end
570
571 redef class ACrangeExpr
572 redef fun accept_rapid_type_visitor(v)
573 do
574 var mtype = self.mtype.as(MClassType)
575 v.add_type(mtype)
576 v.add_callsite(init_callsite)
577 end
578 end
579
580 redef class AOrangeExpr
581 redef fun accept_rapid_type_visitor(v)
582 do
583 var mtype = self.mtype.as(MClassType)
584 v.add_type(mtype)
585 v.add_callsite(init_callsite)
586 end
587 end
588
589 redef class ATrueExpr
590 redef fun accept_rapid_type_visitor(v)
591 do
592 v.add_type(self.mtype.as(MClassType))
593 end
594 end
595
596 redef class AFalseExpr
597 redef fun accept_rapid_type_visitor(v)
598 do
599 v.add_type(self.mtype.as(MClassType))
600 end
601 end
602
603 redef class AIsaExpr
604 redef fun accept_rapid_type_visitor(v)
605 do
606 v.add_cast_type(self.cast_type.as(not null))
607 end
608 end
609
610 redef class AAsCastExpr
611 redef fun accept_rapid_type_visitor(v)
612 do
613 v.add_cast_type(self.mtype.as(not null))
614 end
615 end
616
617 redef class ASendExpr
618 redef fun accept_rapid_type_visitor(v)
619 do
620 v.add_callsite(callsite)
621 end
622 end
623
624
625 redef class ASendReassignFormExpr
626 redef fun accept_rapid_type_visitor(v)
627 do
628 v.add_callsite(callsite)
629 v.add_callsite(reassign_callsite)
630 v.add_callsite(write_callsite)
631 end
632 end
633
634 redef class AVarReassignExpr
635 redef fun accept_rapid_type_visitor(v)
636 do
637 v.add_callsite(reassign_callsite)
638 end
639 end
640
641 redef class AAttrReassignExpr
642 redef fun accept_rapid_type_visitor(v)
643 do
644 v.add_callsite(reassign_callsite)
645 end
646 end
647
648 redef class ASuperExpr
649 redef fun accept_rapid_type_visitor(v)
650 do
651 var callsite = self.callsite
652 if callsite != null then
653 v.add_callsite(callsite)
654 return
655 end
656
657 v.analysis.add_super_send(v.receiver, mpropdef.as(not null))
658 end
659 end
660
661 redef class AForExpr
662 redef fun accept_rapid_type_visitor(v)
663 do
664 v.add_callsite(self.method_iterator)
665 v.add_callsite(self.method_is_ok)
666 if self.variables.length == 1 then
667 v.add_callsite(self.method_item)
668 else if self.variables.length == 2 then
669 v.add_callsite(self.method_key)
670 v.add_callsite(self.method_item)
671 else
672 abort
673 end
674 v.add_callsite(self.method_next)
675 var mf = self.method_finish
676 if mf != null then v.add_callsite(mf)
677 end
678 end
679
680 redef class ANewExpr
681 redef fun accept_rapid_type_visitor(v)
682 do
683 var mtype = self.recvtype.as(not null)
684 v.add_type(mtype)
685 v.add_callsite(callsite)
686 end
687 end