rta: fast fix to avoid resolving illegal types.
[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 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 mmodules.
86 # Those with a live method definitions (see `live_methoddefs`)
87 var live_mmodules = new HashSet[MModule]
88
89 # Live callsites.
90 var live_callsites = new HashSet[CallSite]
91
92 private var live_targets_cache = new HashMap2[MType, MProperty, Set[MMethodDef]]
93
94 # The live targets of a specific callsite.
95 fun live_targets(callsite: CallSite): Set[MMethodDef]
96 do
97 var mtype = callsite.recv
98 var anchor = callsite.anchor
99 if anchor != null then mtype = mtype.anchor_to(callsite.mmodule, anchor)
100 mtype = mtype.undecorate
101 if mtype isa MClassType then mtype = mtype.mclass.intro.bound_mtype
102 var mproperty = callsite.mproperty
103 var res = live_targets_cache[mtype, mproperty]
104 if res != null then return res
105 res = new ArraySet[MMethodDef]
106 live_targets_cache[mtype, mproperty] = res
107
108 for c in live_classes do
109 var tc = c.intro.bound_mtype
110 if not tc.is_subtype(mainmodule, null, mtype) then continue
111 var d = mproperty.lookup_first_definition(mainmodule, tc)
112 res.add d
113 end
114
115 return res
116 end
117
118 # Live call-to-super.
119 var live_super_sends = new HashSet[MMethodDef]
120
121 # Return a ready-to-save CSV document objet that agregates informations about live types.
122 # Each discovered type is listed in a line, with its status: resolution, liveness, cast-liveness.
123 # Note: types are listed in an alphanumeric order to improve human reading.
124 fun live_types_to_csv: CsvDocument
125 do
126 # Gather all kind of type
127 var typeset = new HashSet[MType]
128 typeset.add_all(live_types)
129 typeset.add_all(live_open_types)
130 typeset.add_all(live_cast_types)
131 typeset.add_all(live_open_cast_types)
132 var types = typeset.to_a
133 (new CachedAlphaComparator).sort(types)
134 var res = new CsvDocument
135 res.separator = ';'
136 res.header = ["Type", "Resolution", "Liveness", "Cast-liveness"]
137 for t in types do
138 var reso
139 if t.need_anchor then reso = "OPEN " else reso = "CLOSED"
140 var live
141 if t isa MClassType and (live_types.has(t) or live_open_types.has(t)) then live = "LIVE" else live = "DEAD"
142 var cast
143 if live_cast_types.has(t) or live_open_cast_types.has(t) then cast = "CAST LIVE" else cast = "CAST DEAD"
144 res.add_record(t, reso, live, cast)
145 end
146 return res
147 end
148
149 # Return a ready-to-save OrderedTree object that agregates infomration about live methods.
150 # Note: methods are listed in an alphanumeric order to improve human reading.
151 fun live_methods_to_tree: OrderedTree[Object]
152 do
153 var tree = new OrderedTree[Object]
154 for x in live_methods do
155 var xn = x.full_name
156 tree.add(null, xn)
157 for z in x.mpropdefs do
158 var zn = z.to_s
159 if live_methoddefs.has(z) then
160 tree.add(xn, zn)
161 if live_super_sends.has(z) then
162 tree.add(zn, zn + "(super)")
163 end
164 else if live_super_sends.has(z) then
165 tree.add(xn, zn + "(super)")
166 end
167 end
168 end
169 tree.sort_with(alpha_comparator)
170 return tree
171 end
172
173 # Methods that are still candidate to the try_send
174 private var totry_methods = new HashSet[MMethod]
175
176 # Methods that are are no more candidate to the try_send
177 private var totry_methods_to_remove = new Array[MMethod]
178
179 # Methods that are or were candidate to the try_send
180 # Used to ensure that try_send is only used once
181 private var try_methods = new HashSet[MMethod]
182
183 # The method definitions that remain to visit
184 private var todo = new List[MMethodDef]
185
186 private fun force_alive(classname: String)
187 do
188 var classes = self.modelbuilder.model.get_mclasses_by_name(classname)
189 if classes != null then for c in classes do self.add_new(c.mclass_type, c.mclass_type)
190 end
191
192 # Run the analysis until all visitable method definitions are visited.
193 fun run_analysis
194 do
195 var maintype = mainmodule.sys_type
196 if maintype == null then return # No entry point
197 add_new(maintype, maintype)
198 var initprop = mainmodule.try_get_primitive_method("init", maintype.mclass)
199 if initprop != null then
200 add_send(maintype, initprop)
201 end
202 var mainprop = mainmodule.try_get_primitive_method("run", maintype.mclass) or else
203 mainmodule.try_get_primitive_method("main", maintype.mclass)
204 if mainprop != null then
205 add_send(maintype, mainprop)
206 end
207
208 var finalizable_type = mainmodule.finalizable_type
209 if finalizable_type != null then
210 var finalize_meth = mainmodule.try_get_primitive_method("finalize", finalizable_type.mclass)
211 if finalize_meth != null then add_send(finalizable_type, finalize_meth)
212 end
213
214 # Force primitive types
215 force_alive("Bool")
216 force_alive("Float")
217 force_alive("Char")
218 force_alive("Pointer")
219 force_alive("Byte")
220 force_alive("Int")
221 force_alive("Int8")
222 force_alive("Int16")
223 force_alive("UInt16")
224 force_alive("Int32")
225 force_alive("UInt32")
226
227 while not todo.is_empty do
228 var mmethoddef = todo.shift
229 var mmeth = mmethoddef.mproperty
230 var msignature = mmethoddef.msignature
231 if msignature == null then continue # Skip broken method
232
233 #print "# visit {mmethoddef}"
234 var v = new RapidTypeVisitor(self, mmethoddef.mclassdef.bound_mtype, mmethoddef)
235
236 var vararg_rank = msignature.vararg_rank
237 if vararg_rank > -1 then
238 var node = self.modelbuilder.mpropdef2node(mmethoddef)
239 var elttype = msignature.mparameters[vararg_rank].mtype
240 #elttype = elttype.anchor_to(self.mainmodule, v.receiver)
241 var vararg = self.mainmodule.array_type(elttype)
242 v.add_type(vararg)
243 var native = self.mainmodule.native_array_type(elttype)
244 v.add_type(native)
245 v.add_monomorphic_send(vararg, self.modelbuilder.force_get_primitive_method(node, "with_native", vararg.mclass, self.mainmodule))
246 end
247
248 # TODO? new_msignature
249 var sig = msignature
250 var osig = mmeth.intro.msignature.as(not null)
251 for i in [0..sig.arity[ do
252 var origtype = osig.mparameters[i].mtype
253 if not origtype.need_anchor then continue # skip non covariant stuff
254 var paramtype = sig.mparameters[i].mtype
255 add_cast(paramtype)
256 end
257
258 if mmethoddef.is_abstract then continue
259
260 var npropdef = modelbuilder.mpropdef2node(mmethoddef)
261
262 if npropdef isa AClassdef then
263 if mmethoddef.mproperty.is_root_init then
264 if not mmethoddef.is_intro then
265 self.add_super_send(v.receiver, mmethoddef)
266 end
267 else
268 npropdef.debug "cannot RTA {mmethoddef}"
269 abort
270 end
271 continue
272 else if mmethoddef.constant_value != null then
273 # Make the return type live
274 v.add_type(msignature.return_mtype.as(MClassType))
275 continue
276 else if npropdef == null then
277 abort
278 end
279
280 if npropdef isa AMethPropdef then
281 var auto_super_inits = npropdef.auto_super_inits
282 if auto_super_inits != null then
283 for auto_super_init in auto_super_inits do
284 v.add_callsite(auto_super_init)
285 end
286 end
287 if npropdef.auto_super_call then
288 self.add_super_send(v.receiver, mmethoddef)
289 end
290 end
291
292 if mmethoddef.is_intern or mmethoddef.is_extern then
293 # UGLY: We force the "instantation" of the concrete return type if any
294 var ret = msignature.return_mtype
295 if ret != null and ret isa MClassType and ret.mclass.kind != abstract_kind and ret.mclass.kind != interface_kind then
296 v.add_type(ret)
297 end
298 end
299
300 v.enter_visit(npropdef)
301 end
302
303 #print "MMethod {live_methods.length}: {live_methods.join(", ")}"
304 #print "MMethodDef {live_methoddefs.length}: {live_methoddefs.join(", ")}"
305
306 #print "open MType {live_open_types.length}: {live_open_types.join(", ")}"
307 var todo_types = new List[MClassType]
308 todo_types.add_all(live_types)
309 while not todo_types.is_empty do
310 var t = todo_types.shift
311 for ot in live_open_types do
312 #print "{ot}/{t} ?"
313 if not ot.can_resolve_for(t, t, mainmodule) then continue
314 var rt = ot.anchor_to(mainmodule, t)
315 if live_types.has(rt) then continue
316 if not is_valid_type(rt) then continue
317 if not check_depth(rt) then continue
318 #print "{ot}/{t} -> {rt}"
319 live_types.add(rt)
320 # unshift means a deep-first visit.
321 # So that the `check_depth` limit is reached sooner.
322 todo_types.unshift(rt)
323 end
324 end
325 #print "MType {live_types.length}: {live_types.join(", ")}"
326
327 #print "open cast MType {live_open_cast_types.length}: {live_open_cast_types.join(", ")}"
328 for ot in live_open_cast_types do
329 #print "live_open_cast_type: {ot}"
330 for t in live_types do
331 if not ot.can_resolve_for(t, t, mainmodule) then continue
332 var rt = ot.anchor_to(mainmodule, t)
333 if not is_valid_type(rt) then continue
334 live_cast_types.add(rt)
335 #print " {ot}/{t} -> {rt}"
336 end
337 end
338 #print "cast MType {live_cast_types.length}: {live_cast_types.join(", ")}"
339 end
340
341 # Quick and dirty check that a forced type resolution gives a legal type
342 # TODO: move up in the model and kill `can_resolve_for`
343 private fun is_valid_type(mtype: MType): Bool
344 do
345 if mtype isa MGenericType then
346 return mtype.is_subtype(mainmodule, null, mtype.mclass.intro.bound_mtype)
347 end
348 return true
349 end
350
351 private fun check_depth(mtype: MClassType): Bool
352 do
353 var d = mtype.length
354 if d > 255 then
355 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}`.")
356 return false
357 end
358 return true
359 end
360
361 fun add_new(recv: MClassType, mtype: MClassType)
362 do
363 assert not recv.need_anchor
364 if mtype.need_anchor then
365 if live_open_types.has(mtype) then return
366 live_open_types.add(mtype)
367 else
368 if live_types.has(mtype) then return
369 live_types.add(mtype)
370 end
371
372 var mclass = mtype.mclass
373 if live_classes.has(mclass) then return
374 live_classes.add(mclass)
375
376 for p in totry_methods do try_send(mtype, p)
377 for p in live_super_sends do try_super_send(mtype, p)
378
379 # Remove cleared ones
380 for p in totry_methods_to_remove do totry_methods.remove(p)
381 totry_methods_to_remove.clear
382
383 var bound_mtype = mtype.anchor_to(mainmodule, recv)
384 for cd in bound_mtype.collect_mclassdefs(mainmodule)
385 do
386 for npropdef in modelbuilder.collect_attr_propdef(cd) do
387 if not npropdef.has_value then continue
388
389 var mpropdef = npropdef.mreadpropdef.as(not null)
390 var v = new RapidTypeVisitor(self, bound_mtype, mpropdef)
391 v.enter_visit(npropdef.n_expr)
392 v.enter_visit(npropdef.n_block)
393 end
394 end
395
396 end
397
398 fun add_cast(mtype: MType)
399 do
400 if mtype.need_anchor then
401 live_open_cast_types.add(mtype)
402 else
403 live_cast_types.add(mtype)
404 end
405 end
406
407 fun try_send(recv: MClassType, mproperty: MMethod)
408 do
409 recv = recv.mclass.intro.bound_mtype
410 if not recv.has_mproperty(mainmodule, mproperty) then return
411 var d = mproperty.lookup_first_definition(mainmodule, recv)
412 add_call(d)
413 end
414
415 fun add_call(mpropdef: MMethodDef)
416 do
417 if live_methoddefs.has(mpropdef) then return
418 live_methoddefs.add(mpropdef)
419 live_mmodules.add(mpropdef.mclassdef.mmodule)
420 todo.add(mpropdef)
421
422 var mproperty = mpropdef.mproperty
423 if mproperty.mpropdefs.length <= 1 then return
424 # If all definitions of a method are live, we can remove the definition of the totry set
425 for d in mproperty.mpropdefs do
426 if not live_methoddefs.has(d) then return
427 end
428 #print "full property: {mpropdef.mproperty} for {mpropdef.mproperty.mpropdefs.length} definitions"
429 totry_methods_to_remove.add(mpropdef.mproperty)
430 end
431
432 fun add_send(recv: MType, mproperty: MMethod)
433 do
434 if try_methods.has(mproperty) then return
435 #print "new prop: {mproperty}"
436 live_methods.add(mproperty)
437 try_methods.add(mproperty)
438 if mproperty.mpropdefs.length == 1 then
439 # If there is only one definition, just add the definition and do not try again the property
440 var d = mproperty.mpropdefs.first
441 add_call(d)
442 return
443 end
444 # Else, the property is potentially called with various reciever
445 # So just try the methods with existing receiver and register it for future receiver
446 totry_methods.add(mproperty)
447 for c in live_classes do
448 try_send(c.intro.bound_mtype, mproperty)
449 end
450 end
451
452 fun try_super_send(recv: MClassType, mpropdef: MMethodDef)
453 do
454 recv = recv.mclass.intro.bound_mtype
455 if not recv.collect_mclassdefs(mainmodule).has(mpropdef.mclassdef) then return
456 var d = mpropdef.lookup_next_definition(mainmodule, recv)
457 add_call(d)
458 end
459
460 fun add_super_send(recv: MType, mpropdef: MMethodDef)
461 do
462 assert mpropdef.has_supercall
463 if live_super_sends.has(mpropdef) then return
464 #print "new super prop: {mpropdef}"
465 live_super_sends.add(mpropdef)
466 for c in live_classes do
467 try_super_send(c.intro.bound_mtype, mpropdef)
468 end
469 end
470 end
471
472 class RapidTypeVisitor
473 super Visitor
474
475 var analysis: RapidTypeAnalysis
476 var receiver: MClassType
477 var mpropdef: MPropDef
478
479 init
480 do
481 assert not receiver.need_anchor
482 end
483
484 redef fun visit(n)
485 do
486 if n isa AExpr then
487 if n.mtype != null or n.is_typed then
488 n.accept_rapid_type_visitor(self)
489 var implicit_cast_to = n.implicit_cast_to
490 if implicit_cast_to != null then self.add_cast_type(implicit_cast_to)
491 end
492 else
493 n.accept_rapid_type_visitor(self)
494 end
495
496 # RTA does not enter in AAnnotations
497 if not n isa AAnnotations then
498 n.visit_all(self)
499 end
500 end
501
502 fun cleanup_type(mtype: MType): nullable MClassType
503 do
504 mtype = mtype.anchor_to(self.analysis.mainmodule, self.receiver)
505 if mtype isa MNullType then return null
506 mtype = mtype.undecorate
507 assert mtype isa MClassType
508 assert not mtype.need_anchor
509 return mtype
510 end
511
512 fun get_method(recv: MType, name: String): MMethod
513 do
514 var mtype = cleanup_type(recv)
515 assert mtype != null
516 return self.analysis.modelbuilder.force_get_primitive_method(self.current_node.as(not null), name, mtype.mclass, self.analysis.mainmodule)
517 end
518
519 fun add_type(mtype: MClassType) do analysis.add_new(receiver, mtype)
520
521 fun add_monomorphic_send(mtype: MType, mproperty: MMethod)
522 do
523 analysis.live_methods.add(mproperty)
524 analysis.try_send(mtype.as(MClassType), mproperty)
525 end
526
527 fun add_send(mtype: MType, mproperty: MMethod) do analysis.add_send(mtype, mproperty)
528
529 fun add_cast_type(mtype: MType) do analysis.add_cast(mtype)
530
531 fun add_callsite(callsite: nullable CallSite) do if callsite != null then
532 for m in callsite.mpropdef.initializers do
533 if m isa MMethod then
534 analysis.add_send(callsite.recv, m)
535 end
536 end
537 analysis.add_send(callsite.recv, callsite.mproperty)
538 analysis.live_callsites.add(callsite)
539 end
540 end
541
542 ###
543
544 redef class ANode
545 private fun accept_rapid_type_visitor(v: RapidTypeVisitor)
546 do
547 end
548 end
549
550 redef class AExpr
551 # Make the `mtype` of the expression live
552 # Used by literals and instantiations
553 fun allocate_mtype(v: RapidTypeVisitor)
554 do
555 var mtype = self.mtype
556 if not mtype isa MClassType then return
557 v.add_type(self.mtype.as(MClassType))
558 end
559 end
560
561 redef class AIntegerExpr
562 redef fun accept_rapid_type_visitor(v)
563 do
564 allocate_mtype(v)
565 end
566 end
567
568 redef class AFloatExpr
569 redef fun accept_rapid_type_visitor(v)
570 do
571 allocate_mtype(v)
572 end
573 end
574
575 redef class ACharExpr
576 redef fun accept_rapid_type_visitor(v)
577 do
578 allocate_mtype(v)
579 end
580 end
581
582 redef class AArrayExpr
583 redef fun accept_rapid_type_visitor(v)
584 do
585 var mtype = self.mtype.as(MClassType)
586 v.add_type(mtype)
587 var native = v.analysis.mainmodule.native_array_type(mtype.arguments.first)
588 v.add_type(native)
589 mtype = v.cleanup_type(mtype).as(not null)
590 var prop = v.get_method(mtype, "with_native")
591 v.add_monomorphic_send(mtype, prop)
592 v.add_callsite(with_capacity_callsite)
593 v.add_callsite(push_callsite)
594 end
595 end
596
597 redef class AStringFormExpr
598 redef fun accept_rapid_type_visitor(v)
599 do
600 var native = v.analysis.mainmodule.native_string_type
601 v.add_type(native)
602 var prop = v.get_method(native, "to_s_full")
603 v.add_monomorphic_send(native, prop)
604 v.add_callsite(to_re)
605 v.add_callsite(ignore_case)
606 v.add_callsite(newline)
607 v.add_callsite(extended)
608 v.add_callsite(to_bytes_with_copy)
609 end
610 end
611
612 redef class ASuperstringExpr
613 redef fun accept_rapid_type_visitor(v)
614 do
615 var mmodule = v.analysis.mainmodule
616 var object_type = mmodule.string_type
617 var arraytype = mmodule.array_type(object_type)
618 v.add_type(arraytype)
619 var nattype = mmodule.native_array_type(object_type)
620 v.add_type(nattype)
621 var prop = v.get_method(arraytype, "join")
622 v.add_monomorphic_send(arraytype, prop)
623 var prop2 = v.get_method(arraytype, "with_native")
624 v.add_monomorphic_send(arraytype, prop2)
625 v.add_monomorphic_send(nattype, v.get_method(nattype, "native_to_s"))
626 end
627 end
628
629 redef class ACrangeExpr
630 redef fun accept_rapid_type_visitor(v)
631 do
632 var mtype = self.mtype
633 if not mtype isa MClassType then return
634 v.add_type(mtype)
635 v.add_callsite(init_callsite)
636 end
637 end
638
639 redef class AOrangeExpr
640 redef fun accept_rapid_type_visitor(v)
641 do
642 var mtype = self.mtype
643 if not mtype isa MClassType then return
644 v.add_type(mtype)
645 v.add_callsite(init_callsite)
646 end
647 end
648
649 redef class ATrueExpr
650 redef fun accept_rapid_type_visitor(v)
651 do
652 allocate_mtype(v)
653 end
654 end
655
656 redef class AFalseExpr
657 redef fun accept_rapid_type_visitor(v)
658 do
659 allocate_mtype(v)
660 end
661 end
662
663 redef class AIsaExpr
664 redef fun accept_rapid_type_visitor(v)
665 do
666 var cast_type = self.cast_type
667 if cast_type == null then return
668 v.add_cast_type(cast_type)
669 end
670 end
671
672 redef class AAsCastExpr
673 redef fun accept_rapid_type_visitor(v)
674 do
675 var mtype = self.mtype
676 if mtype == null then return
677 v.add_cast_type(mtype)
678 end
679 end
680
681 redef class ASendExpr
682 redef fun accept_rapid_type_visitor(v)
683 do
684 v.add_callsite(callsite)
685 end
686 end
687
688
689 redef class ASendReassignFormExpr
690 redef fun accept_rapid_type_visitor(v)
691 do
692 v.add_callsite(callsite)
693 v.add_callsite(reassign_callsite)
694 v.add_callsite(write_callsite)
695 end
696 end
697
698 redef class AVarReassignExpr
699 redef fun accept_rapid_type_visitor(v)
700 do
701 v.add_callsite(reassign_callsite)
702 end
703 end
704
705 redef class AAttrReassignExpr
706 redef fun accept_rapid_type_visitor(v)
707 do
708 v.add_callsite(reassign_callsite)
709 end
710 end
711
712 redef class ASuperExpr
713 redef fun accept_rapid_type_visitor(v)
714 do
715 var callsite = self.callsite
716 if callsite != null then
717 v.add_callsite(callsite)
718 return
719 end
720
721 v.analysis.add_super_send(v.receiver, mpropdef.as(not null))
722 end
723 end
724
725 redef class AForGroup
726 redef fun accept_rapid_type_visitor(v)
727 do
728 v.add_callsite(self.method_iterator)
729 v.add_callsite(self.method_is_ok)
730 if self.variables.length == 1 then
731 v.add_callsite(self.method_item)
732 else if self.variables.length == 2 then
733 v.add_callsite(self.method_key)
734 v.add_callsite(self.method_item)
735 else
736 abort
737 end
738 v.add_callsite(self.method_next)
739 var mf = self.method_finish
740 if mf != null then v.add_callsite(mf)
741 end
742 end
743
744 redef class ANewExpr
745 redef fun accept_rapid_type_visitor(v)
746 do
747 var mtype = self.recvtype.as(not null)
748 v.add_type(mtype)
749 v.add_callsite(callsite)
750 end
751 end