Merge commit 'b7e675f'
[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 model
27 import modelbuilder
28 import typing
29 import auto_super_init
30
31 redef class ModelBuilder
32 fun do_rapid_type_analysis(mainmodule: MModule): RapidTypeAnalysis
33 do
34 var analysis = new RapidTypeAnalysis(self, mainmodule)
35 analysis.run_analysis
36 return analysis
37 end
38 end
39
40 # RapidTypeAnalysis looks for alive rapid types in application.
41 # The entry point of the analysis is the mainmodule of the application.
42 class RapidTypeAnalysis
43 # The modelbuilder used to get the AST.
44 var modelbuilder: ModelBuilder
45
46 # The main module of the analysis.
47 # Used to perform types operations.
48 var mainmodule: MModule
49
50 # The pool to live types.
51 # During the analysis, new types are added and combined with
52 # live_methods to determine new methoddefs to visit
53 var live_types = new HashSet[MClassType]
54
55 # The pool of undesolved live types
56 # They are globally resolved at the end of the analaysis
57 var live_open_types = new HashSet[MClassType]
58
59 # Live (instantiated) classes.
60 var live_classes = new HashSet[MClass]
61
62 # The pool of types used to perform type checks (isa and as).
63 var live_cast_types = new HashSet[MClassType]
64
65 # The pool of undesolved types used to perform type checks (isa and as).
66 # They are globally resolved at the end of the analaysis
67 var live_open_cast_types = new HashSet[MType]
68
69 # Live method definitions.
70 var live_methoddefs = new HashSet[MMethodDef]
71
72 # Live methods.
73 var live_methods = new HashSet[MMethod]
74
75 # Live call-to-super.
76 var live_super_sends = new HashSet[MMethodDef]
77
78 # Methods that are are still candidate to the try_send
79 private var totry_methods = new HashSet[MMethod]
80
81 # The method definitions that remain to visit
82 private var todo = new List[MMethodDef]
83
84 private fun force_alive(classname: String)
85 do
86 var classes = self.modelbuilder.model.get_mclasses_by_name(classname)
87 if classes != null then for c in classes do self.add_new(c.mclass_type, c.mclass_type)
88 end
89
90 # Run the analysis until all visitable method definitions are visited.
91 fun run_analysis
92 do
93 var maintype = mainmodule.sys_type
94 if maintype == null then return # No entry point
95 add_new(maintype, maintype)
96 var initprop = mainmodule.try_get_primitive_method("init", maintype.mclass)
97 if initprop != null then
98 add_send(maintype, initprop)
99 end
100 var mainprop = mainmodule.try_get_primitive_method("main", maintype.mclass)
101 if mainprop != null then
102 add_send(maintype, mainprop)
103 end
104
105 # Force primitive types
106 force_alive("Bool")
107 force_alive("Int")
108 force_alive("Float")
109 force_alive("Char")
110
111 while not todo.is_empty do
112 var mmethoddef = todo.shift
113 #print "# visit {mmethoddef}"
114 var v = new RapidTypeVisitor(self, mmethoddef.mclassdef.bound_mtype, mmethoddef)
115
116 var vararg_rank = mmethoddef.msignature.vararg_rank
117 if vararg_rank > -1 then
118 var node = self.modelbuilder.mpropdef2npropdef[mmethoddef]
119 var elttype = mmethoddef.msignature.mparameters[vararg_rank].mtype
120 #elttype = elttype.anchor_to(self.mainmodule, v.receiver)
121 var vararg = self.mainmodule.get_primitive_class("Array").get_mtype([elttype])
122 v.add_type(vararg)
123 var native = self.mainmodule.get_primitive_class("NativeArray").get_mtype([elttype])
124 v.add_type(native)
125 v.add_monomorphic_send(vararg, self.modelbuilder.force_get_primitive_method(node, "with_native", vararg.mclass, self.mainmodule))
126 end
127
128
129 for i in [0..mmethoddef.msignature.arity[ do
130 var origtype = mmethoddef.mproperty.intro.msignature.mparameters[i].mtype
131 if not origtype.need_anchor then continue # skip non covariant stuff
132 var paramtype = mmethoddef.msignature.mparameters[i].mtype
133 #paramtype = v.cleanup_type(paramtype).as(not null)
134 add_cast(paramtype)
135 end
136
137 if not modelbuilder.mpropdef2npropdef.has_key(mmethoddef) then
138 # It is an init for a class?
139 if mmethoddef.mproperty.name == "init" then
140 var nclassdef = self.modelbuilder.mclassdef2nclassdef[mmethoddef.mclassdef]
141 var super_inits = nclassdef.super_inits
142 if super_inits != null then
143 #assert args.length == 1
144 for su in super_inits do
145 v.add_monomorphic_send(v.receiver, su)
146 end
147 end
148
149 else
150 abort
151 end
152 continue
153 end
154
155 var npropdef = modelbuilder.mpropdef2npropdef[mmethoddef]
156
157 if npropdef isa AConcreteMethPropdef then
158 var auto_super_inits = npropdef.auto_super_inits
159 if auto_super_inits != null then
160 for auto_super_init in auto_super_inits do
161 v.add_monomorphic_send(v.receiver, auto_super_init)
162 end
163 end
164 else if npropdef isa AInternMethPropdef or
165 (npropdef isa AExternMethPropdef and npropdef.n_extern != null) then
166 # UGLY: We force the "instantation" of the concrete return type if any
167 var ret = mmethoddef.msignature.return_mtype
168 if ret != null and ret isa MClassType and ret.mclass.kind != abstract_kind and ret.mclass.kind != interface_kind then
169 v.add_type(ret)
170 end
171 else if npropdef isa AExternMethPropdef then
172 var nclassdef = npropdef.parent.as(AClassdef)
173 v.enter_visit(npropdef)
174 else if npropdef isa AExternInitPropdef then
175 v.add_type(v.receiver)
176 else
177
178 end
179
180 v.enter_visit(npropdef)
181 end
182
183 #print "MMethod {live_methods.length}: {live_methods.join(", ")}"
184 #print "MMethodDef {live_methoddefs.length}: {live_methoddefs.join(", ")}"
185
186 #print "open MType {live_open_types.length}: {live_open_types.join(", ")}"
187 var todo_types = new List[MClassType]
188 todo_types.add_all(live_types)
189 while not todo_types.is_empty do
190 var t = todo_types.shift
191 for ot in live_open_types do
192 #print "{ot}/{t} ?"
193 if not ot.can_resolve_for(t, t, mainmodule) then continue
194 var rt = ot.anchor_to(mainmodule, t)
195 if live_types.has(rt) then continue
196 #print "{ot}/{t} -> {rt}"
197 live_types.add(rt)
198 todo_types.add(rt)
199 check_depth(rt)
200 end
201 end
202 #print "MType {live_types.length}: {live_types.join(", ")}"
203
204 #print "open cast MType {live_open_cast_types.length}: {live_open_cast_types.join(", ")}"
205 for ot in live_open_cast_types do
206 #print "live_open_cast_type: {ot}"
207 for t in live_types do
208 if not ot.can_resolve_for(t, t, mainmodule) then continue
209 var rt = ot.anchor_to(mainmodule, t)
210 if rt isa MNullableType then rt = rt.mtype
211 assert rt isa MClassType
212 live_cast_types.add(rt)
213 #print " {ot}/{t} -> {rt}"
214 end
215 end
216 #print "cast MType {live_cast_types.length}: {live_cast_types.join(", ")}"
217 end
218
219 private fun check_depth(mtype: MClassType)
220 do
221 var d = mtype.length
222 if d > 255 then
223 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}.")
224 end
225 end
226
227 fun add_new(recv: MClassType, mtype: MClassType)
228 do
229 assert not recv.need_anchor
230 if mtype.need_anchor then
231 if live_open_types.has(mtype) then return
232 live_open_types.add(mtype)
233 else
234 if live_types.has(mtype) then return
235 live_types.add(mtype)
236 end
237
238 var mclass = mtype.mclass
239 if live_classes.has(mclass) then return
240 live_classes.add(mclass)
241
242 for p in totry_methods do try_send(mtype, p)
243 for p in live_super_sends do try_super_send(mtype, p)
244
245 var bound_mtype = mtype.anchor_to(mainmodule, recv)
246 for cd in bound_mtype.collect_mclassdefs(mainmodule)
247 do
248 if not self.modelbuilder.mclassdef2nclassdef.has_key(cd) then continue
249 var nclassdef = self.modelbuilder.mclassdef2nclassdef[cd]
250 for npropdef in nclassdef.n_propdefs do
251 if not npropdef isa AAttrPropdef then continue
252 var nexpr = npropdef.n_expr
253 if nexpr == null then continue
254 var mpropdef = npropdef.mpropdef.as(not null)
255 var v = new RapidTypeVisitor(self, bound_mtype, mpropdef)
256 v.enter_visit(nexpr)
257 end
258 end
259
260 end
261
262 fun add_cast(mtype: MType)
263 do
264 if mtype isa MNullableType then mtype = mtype.mtype
265 if mtype.need_anchor then
266 live_open_cast_types.add(mtype)
267 else
268 assert mtype isa MClassType
269 live_cast_types.add(mtype)
270 end
271 end
272
273 fun try_send(recv: MClassType, mproperty: MMethod)
274 do
275 recv = recv.mclass.intro.bound_mtype
276 if not recv.has_mproperty(mainmodule, mproperty) then return
277 var d = mproperty.lookup_first_definition(mainmodule, recv)
278 add_call(d)
279 end
280
281 fun add_call(mpropdef: MMethodDef)
282 do
283 if live_methoddefs.has(mpropdef) then return
284 live_methoddefs.add(mpropdef)
285 todo.add(mpropdef)
286
287 var mproperty = mpropdef.mproperty
288 if mproperty.mpropdefs.length <= 1 then return
289 # If all definitions of a method are live, we can remove the definition of the totry set
290 for d in mproperty.mpropdefs do
291 if d.is_abstract then continue
292 if not live_methoddefs.has(d) then return
293 end
294 #print "full property: {mpropdef.mproperty} for {mpropdef.mproperty.mpropdefs.length} definitions"
295 totry_methods.remove(mpropdef.mproperty)
296 end
297
298 fun add_send(recv: MType, mproperty: MMethod)
299 do
300 if live_methods.has(mproperty) then return
301 #print "new prop: {mproperty}"
302 live_methods.add(mproperty)
303 if mproperty.mpropdefs.length == 1 then
304 # If there is only one definition, just add the definition and do not try again the property
305 var d = mproperty.mpropdefs.first
306 add_call(d)
307 return
308 end
309 # Else, the property is potentially called with various reciever
310 # So just try the methods with existing receiver and register it for future receiver
311 totry_methods.add(mproperty)
312 for c in live_classes do
313 try_send(c.intro.bound_mtype, mproperty)
314 end
315 end
316
317 fun try_super_send(recv: MClassType, mpropdef: MMethodDef)
318 do
319 recv = recv.mclass.intro.bound_mtype
320 if not recv.collect_mclassdefs(mainmodule).has(mpropdef.mclassdef) then return
321 var d = mpropdef.lookup_next_definition(mainmodule, recv)
322 add_call(d)
323 end
324
325 fun add_super_send(recv: MType, mpropdef: MMethodDef)
326 do
327 if live_super_sends.has(mpropdef) then return
328 #print "new super prop: {mpropdef}"
329 live_super_sends.add(mpropdef)
330 for t in live_types do
331 try_super_send(t, mpropdef)
332 end
333 end
334 end
335
336 class RapidTypeVisitor
337 super Visitor
338
339 var analysis: RapidTypeAnalysis
340 var receiver: MClassType
341 var mpropdef: MPropDef
342
343 init(analysis: RapidTypeAnalysis, receiver: MClassType, mpropdef: MPropDef)
344 do
345 self.analysis = analysis
346 self.receiver = receiver
347 self.mpropdef = mpropdef
348 assert not receiver.need_anchor
349 end
350
351 redef fun visit(n)
352 do
353 n.accept_rapid_type_visitor(self)
354 if n isa AExpr then
355 var implicit_cast_to = n.implicit_cast_to
356 if implicit_cast_to != null then self.add_cast_type(implicit_cast_to)
357 end
358
359 # RTA does not enter in AAnnotations
360 if not n isa AAnnotations then
361 n.visit_all(self)
362 end
363 end
364
365 fun cleanup_type(mtype: MType): nullable MClassType
366 do
367 mtype = mtype.anchor_to(self.analysis.mainmodule, self.receiver)
368 if mtype isa MNullType then return null
369 if mtype isa MNullableType then mtype = mtype.mtype
370 assert mtype isa MClassType
371 assert not mtype.need_anchor
372 return mtype
373 end
374
375 fun get_class(name: String): MClass
376 do
377 return analysis.mainmodule.get_primitive_class(name)
378 end
379
380 fun get_method(recv: MType, name: String): MMethod
381 do
382 var mtype = cleanup_type(recv)
383 assert mtype != null
384 return self.analysis.modelbuilder.force_get_primitive_method(self.current_node.as(not null), name, mtype.mclass, self.analysis.mainmodule)
385 end
386
387 fun add_type(mtype: MClassType) do analysis.add_new(receiver, mtype)
388
389 fun add_monomorphic_send(mtype: MType, mproperty: MMethod) do analysis.try_send(mtype.as(MClassType), mproperty)
390
391 fun add_send(mtype: MType, mproperty: MMethod) do analysis.add_send(mtype, mproperty)
392
393 fun add_cast_type(mtype: MType) do analysis.add_cast(mtype)
394
395 fun add_callsite(callsite: nullable CallSite) do if callsite != null then analysis.add_send(callsite.recv, callsite.mproperty)
396 end
397
398 ###
399
400 redef class ANode
401 private fun accept_rapid_type_visitor(v: RapidTypeVisitor)
402 do
403 end
404 end
405
406 redef class AIntExpr
407 redef fun accept_rapid_type_visitor(v)
408 do
409 v.add_type(self.mtype.as(MClassType))
410 end
411 end
412
413 redef class AFloatExpr
414 redef fun accept_rapid_type_visitor(v)
415 do
416 v.add_type(self.mtype.as(MClassType))
417 end
418 end
419
420 redef class ACharExpr
421 redef fun accept_rapid_type_visitor(v)
422 do
423 v.add_type(self.mtype.as(MClassType))
424 end
425 end
426
427 redef class AArrayExpr
428 redef fun accept_rapid_type_visitor(v)
429 do
430 var mtype = self.mtype.as(MClassType)
431 v.add_type(mtype)
432 var native = v.analysis.mainmodule.get_primitive_class("NativeArray").get_mtype([mtype.arguments.first])
433 v.add_type(native)
434 mtype = v.cleanup_type(mtype).as(not null)
435 var prop = v.get_method(mtype, "with_native")
436 v.add_monomorphic_send(mtype, prop)
437 end
438 end
439
440 redef class AStringFormExpr
441 redef fun accept_rapid_type_visitor(v)
442 do
443 var native = v.get_class("NativeString").mclass_type
444 v.add_type(native)
445 var prop = v.get_method(native, "to_s_with_length")
446 v.add_monomorphic_send(native, prop)
447 end
448 end
449
450 redef class ASuperstringExpr
451 redef fun accept_rapid_type_visitor(v)
452 do
453 var arraytype = v.get_class("Array").get_mtype([v.get_class("Object").mclass_type])
454 v.add_type(arraytype)
455 v.add_type(v.get_class("NativeArray").get_mtype([v.get_class("Object").mclass_type]))
456 var prop = v.get_method(arraytype, "join")
457 v.add_monomorphic_send(arraytype, prop)
458 var prop2 = v.get_method(arraytype, "with_native")
459 v.add_monomorphic_send(arraytype, prop2)
460 end
461 end
462
463 redef class ACrangeExpr
464 redef fun accept_rapid_type_visitor(v)
465 do
466 var mtype = self.mtype.as(MClassType)
467 v.add_type(mtype)
468 var prop = v.get_method(mtype, "init")
469 v.add_monomorphic_send(mtype, prop)
470 end
471 end
472
473 redef class AOrangeExpr
474 redef fun accept_rapid_type_visitor(v)
475 do
476 var mtype = self.mtype.as(MClassType)
477 v.add_type(mtype)
478 var prop = v.get_method(mtype, "without_last")
479 v.add_monomorphic_send(mtype, prop)
480 end
481 end
482
483 redef class ATrueExpr
484 redef fun accept_rapid_type_visitor(v)
485 do
486 v.add_type(self.mtype.as(MClassType))
487 end
488 end
489
490 redef class AFalseExpr
491 redef fun accept_rapid_type_visitor(v)
492 do
493 v.add_type(self.mtype.as(MClassType))
494 end
495 end
496
497 redef class AIsaExpr
498 redef fun accept_rapid_type_visitor(v)
499 do
500 v.add_cast_type(self.cast_type.as(not null))
501 end
502 end
503
504 redef class AAsCastExpr
505 redef fun accept_rapid_type_visitor(v)
506 do
507 v.add_cast_type(self.mtype.as(not null))
508 end
509 end
510
511 redef class ASendExpr
512 redef fun accept_rapid_type_visitor(v)
513 do
514 v.add_callsite(callsite)
515 end
516 end
517
518
519 redef class ASendReassignFormExpr
520 redef fun accept_rapid_type_visitor(v)
521 do
522 v.add_callsite(callsite)
523 v.add_callsite(reassign_callsite)
524 v.add_callsite(write_callsite)
525 end
526 end
527
528 redef class AVarReassignExpr
529 redef fun accept_rapid_type_visitor(v)
530 do
531 v.add_callsite(reassign_callsite)
532 end
533 end
534
535 redef class AAttrReassignExpr
536 redef fun accept_rapid_type_visitor(v)
537 do
538 v.add_callsite(reassign_callsite)
539 end
540 end
541
542 redef class ASuperExpr
543 redef fun accept_rapid_type_visitor(v)
544 do
545 var callsite = self.callsite
546 if callsite != null then
547 v.add_callsite(callsite)
548 return
549 end
550
551 v.analysis.add_super_send(v.receiver, v.mpropdef.as(MMethodDef))
552 end
553 end
554
555 redef class AForExpr
556 redef fun accept_rapid_type_visitor(v)
557 do
558 var recvtype = self.n_expr.mtype.as(not null)
559 var colltype = self.coltype.as(not null)
560 var itmeth = v.get_method(colltype, "iterator")
561 v.add_send(recvtype, itmeth)
562 var iteratortype = itmeth.intro.msignature.return_mtype.as(MClassType).mclass.intro.bound_mtype
563 var objtype = v.get_class("Object").mclass_type
564 v.add_send(objtype, v.get_method(iteratortype, "is_ok"))
565 if self.variables.length == 1 then
566 v.add_send(objtype, v.get_method(iteratortype, "item"))
567 else if self.variables.length == 2 then
568 v.add_send(objtype, v.get_method(iteratortype, "key"))
569 v.add_send(objtype, v.get_method(iteratortype, "item"))
570 else
571 abort
572 end
573 v.add_send(objtype, v.get_method(iteratortype, "next"))
574 end
575 end
576
577 redef class ANewExpr
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(callsite)
583 end
584 end