X-Git-Url: http://nitlanguage.org diff --git a/src/rapid_type_analysis.nit b/src/rapid_type_analysis.nit index 2a4e8f2..0820839 100644 --- a/src/rapid_type_analysis.nit +++ b/src/rapid_type_analysis.nit @@ -207,6 +207,7 @@ class RapidTypeAnalysis force_alive("Int") force_alive("Float") force_alive("Char") + force_alive("Pointer") while not todo.is_empty do var mmethoddef = todo.shift @@ -226,6 +227,7 @@ class RapidTypeAnalysis v.add_monomorphic_send(vararg, self.modelbuilder.force_get_primitive_method(node, "with_native", vararg.mclass, self.mainmodule)) end + # TODO? new_msignature var sig = mmethoddef.msignature.as(not null) var osig = mmeth.intro.msignature.as(not null) for i in [0..sig.arity[ do @@ -239,6 +241,7 @@ class RapidTypeAnalysis # It is an init for a class? if mmeth.name == "init" then var nclassdef = self.modelbuilder.mclassdef2nclassdef[mmethoddef.mclassdef] + assert mmethoddef == nclassdef.mfree_init var super_inits = nclassdef.super_inits if super_inits != null then #assert args.length == 1 @@ -247,6 +250,9 @@ class RapidTypeAnalysis end end + if mmethoddef.mproperty.is_root_init and not mmethoddef.is_intro then + self.add_super_send(v.receiver, mmethoddef) + end else abort end @@ -262,6 +268,9 @@ class RapidTypeAnalysis v.add_callsite(auto_super_init) end end + if npropdef.auto_super_call then + self.add_super_send(v.receiver, mmethoddef) + end end if mmeth.is_new then @@ -422,11 +431,12 @@ class RapidTypeAnalysis fun add_super_send(recv: MType, mpropdef: MMethodDef) do + assert mpropdef.has_supercall if live_super_sends.has(mpropdef) then return #print "new super prop: {mpropdef}" live_super_sends.add(mpropdef) - for t in live_types do - try_super_send(t, mpropdef) + for c in live_classes do + try_super_send(c.intro.bound_mtype, mpropdef) end end end @@ -495,6 +505,11 @@ class RapidTypeVisitor fun add_cast_type(mtype: MType) do analysis.add_cast(mtype) fun add_callsite(callsite: nullable CallSite) do if callsite != null then + for m in callsite.mpropdef.initializers do + if m isa MMethod then + analysis.add_send(callsite.recv, m) + end + end analysis.add_send(callsite.recv, callsite.mproperty) analysis.live_callsites.add(callsite) end