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