3f6c91e26c8b0b2f238e65fc9dacec3ae412db89
[nit.git] / src / icode / icode_tools.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2009 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 # Tools to manipulate intermediace nit code representation
18 import icode_builder
19
20 # A simple visitor to visit icode structures
21 class ICodeVisitor
22 # Called when a iregister is read in a icode
23 fun visit_iregister_read(ic: ICode, r: IRegister) do end
24
25 # Called when a iregister is wrote in a icode
26 fun visit_iregister_write(ic: ICode, r: IRegister) do end
27
28 # The current icode iterator.
29 # Can be used to insert_before, used to change the item or deleted
30 readable var _current_icode: nullable ListIterator[ICode] = null
31
32 # Called when a icode is visited
33 # Automatically visits iregisters and sub-icodes
34 fun visit_icode(ic: nullable ICode)
35 do
36 if ic == null then return
37 if ic isa ISeq then
38 var old_icode = _current_icode
39 var cur = ic.icodes.iterator
40 while cur.is_ok do
41 _current_icode = cur
42 var ic2 = cur.item
43 visit_icode(ic2)
44 cur.next
45 end
46 _current_icode = old_icode
47 else if ic isa IIf then
48 visit_iregister_read(ic, ic.expr)
49 visit_icode(ic.then_seq)
50 visit_icode(ic.else_seq)
51 else if ic isa IOnce then
52 visit_icode(ic.body)
53 else if ic isa ICode1 then
54 visit_iregister_read(ic, ic.expr)
55 else if ic isa ICode2 then
56 visit_iregister_read(ic, ic.expr1)
57 visit_iregister_read(ic, ic.expr2)
58 else if ic isa ICodeN then
59 for e in ic.exprs do
60 visit_iregister_read(ic, e)
61 end
62 var closdefs = ic.closure_defs
63 if ic isa IClosCall then
64 visit_icode(ic.break_seq)
65 end
66 if closdefs != null then
67 visit_closure_defs(closdefs)
68 end
69 end
70 var r = ic.result
71 if r != null then visit_iregister_write(ic, r)
72 end
73
74 # Called when closure definitions are visited
75 # Automatically visits each closure definition
76 fun visit_closure_defs(closdefs: Collection[nullable IClosureDef])
77 do
78 for e in closdefs do
79 if e != null then
80 visit_iroutine(e)
81 end
82 end
83 end
84
85 # Called when an iroutine is visited
86 # Automatically visits the body
87 # Warning: parameters of result registers are not visited
88 fun visit_iroutine(ir: IRoutine)
89 do
90 visit_icode(ir.body)
91 end
92 end
93
94 redef class ICodeBuilder
95 # Inline an iroutine in the current icode sequence
96 fun inline_routine(routine: IRoutine, args: Sequence[IRegister]): nullable IRegister
97 do
98 var d = new ICodeDupContext(self)
99 assert args.length == routine.params.length
100
101 # Fill register duplicate association
102 var dico = d._registers
103 var res = routine.result
104 if res != null then
105 var res2 = new_register(res.stype)
106 dico[res] = res2
107 res = res2
108 end
109 for reg in routine.registers do
110 assert not dico.has_key(reg)
111 dico[reg] = new_register(reg.stype)
112 end
113 for i in [0..args.length[ do
114 # FIXME The following assumes that params are readonly.
115 # The alternative is safe but add one move :/
116 dico[routine.params[i]] = args[i]
117 #seq.icodes.add(new IMove(dico[routine.params[i]]), args[i]))
118 end
119
120 # Process inlining
121 routine.body.dup_with(d)
122 return res
123 end
124 end
125
126 # This class stores reference to allow correct duplication of icodes
127 private class ICodeDupContext
128 # Return the correct register
129 # * a duplicate of the local register 'r' of the inlined iroutine
130 # * 'r' else (it is a register of the caller iroutine)
131 fun dup_ireg(r: IRegister): IRegister
132 do
133 var rs = _registers
134 if rs.has_key(r) then
135 return rs[r]
136 else
137 return r
138 end
139 end
140
141 # Return a correct bunch of registers
142 fun dup_iregs(regs: Sequence[IRegister]): Sequence[IRegister]
143 do
144 var a = new Array[IRegister].with_capacity(regs.length)
145 for r in regs do
146 a.add(dup_ireg(r))
147 end
148 return a
149 end
150
151 # The associoation between old_seq and new_seq
152 # Directly used by the IEscape
153 var _seqs: Map[ISeq, ISeq] = new HashMap[ISeq, ISeq]
154
155 # The assocation between old_ireg and new_ireg
156 # Used by dup_ireg
157 var _registers: Map[IRegister, IRegister] = new HashMap[IRegister, IRegister]
158
159 # The current code builder
160 var _icb: ICodeBuilder
161
162 init(icb: ICodeBuilder)
163 do
164 _icb = icb
165 end
166 end
167
168 redef class ICode
169 # Duplicate the current icode in the icode builder of the ICodeDupContext
170 private fun dup_with(d: ICodeDupContext)
171 do
172 var c = inner_dup_with(d)
173 var r = result
174 if r != null then c.result = d.dup_ireg(r)
175 c.location = location
176 d._icb.seq.icodes.add(c)
177 end
178
179 # Simle partial duplication of the current icode
180 private fun inner_dup_with(d: ICodeDupContext): ICode is abstract
181 end
182
183 redef class ISeq
184 redef fun inner_dup_with(d)
185 do
186 var c2 = new ISeq
187 dup_seq_to(d, c2)
188 return c2
189 end
190
191 # Duplicate each icode and store them in dest
192 # Note: dest must be empty and not modified afted duplication or IEscapes may be wrongly duplicated
193 private fun dup_seq_to(d: ICodeDupContext, dest: ISeq)
194 do
195 var old_seq = d._icb.seq
196 d._icb.seq = dest
197 d._seqs[self] = dest
198 for c in icodes do
199 c.dup_with(d)
200 end
201 d._icb.seq = old_seq
202 end
203 end
204
205 redef class ILoop
206 redef fun inner_dup_with(d)
207 do
208 var c2 = new ILoop
209 dup_seq_to(d, c2)
210 return c2
211 end
212 end
213
214 redef class IIf
215 redef fun inner_dup_with(d)
216 do
217 var c2 = new IIf(d.dup_ireg(expr))
218 then_seq.dup_seq_to(d, c2.then_seq)
219 else_seq.dup_seq_to(d, c2.else_seq)
220 return c2
221 end
222 end
223
224 redef class IEscape
225 redef fun inner_dup_with(d)
226 do
227 if d._seqs.has_key(seq) then
228 # Jump to a duplicated sequence
229 return new IEscape(d._seqs[seq])
230 else
231 # Jump to an englobing unduplicated sequence
232 return new IEscape(seq)
233 end
234 end
235 end
236
237 redef class IAbort
238 redef fun inner_dup_with(d)
239 do
240 return new IAbort(texts, module_location)
241 end
242 end
243
244 redef class ICall
245 redef fun inner_dup_with(d)
246 do
247 return new ICall(property, d.dup_iregs(exprs))
248 end
249 end
250
251 redef class ISuper
252 redef fun inner_dup_with(d)
253 do
254 return new ISuper(property, d.dup_iregs(exprs))
255 end
256 end
257
258 redef class INew
259 redef fun inner_dup_with(d)
260 do
261 return new INew(stype, property, d.dup_iregs(exprs))
262 end
263 end
264
265 redef class IClosCall
266 redef fun inner_dup_with(d)
267 do
268 var c2 = new IClosCall(closure_decl, d.dup_iregs(exprs))
269 var bs = break_seq
270 if bs != null then
271 var bs2 = new ISeq
272 c2.break_seq = bs2
273 bs.dup_seq_to(d, bs2)
274 end
275 return c2
276 end
277 end
278
279 redef class INative
280 redef fun inner_dup_with(d)
281 do
282 var c2 = new INative(code, d.dup_iregs(exprs))
283 c2.is_pure = is_pure
284 return c2
285 end
286 end
287
288 redef class IMove
289 redef fun inner_dup_with(d)
290 do
291 return new IMove(d.dup_ireg(result.as(not null)), d.dup_ireg(expr))
292 end
293 end
294
295 redef class IAttrRead
296 redef fun inner_dup_with(d)
297 do
298 return new IAttrRead(property, d.dup_ireg(expr))
299 end
300 end
301
302 redef class IAttrWrite
303 redef fun inner_dup_with(d)
304 do
305 return new IAttrWrite(property, d.dup_ireg(expr1), d.dup_ireg(expr2))
306 end
307 end
308
309 redef class IAttrIsset
310 redef fun inner_dup_with(d)
311 do
312 return new IAttrIsset(property, d.dup_ireg(expr))
313 end
314 end
315
316 redef class ITypeCheck
317 redef fun inner_dup_with(d)
318 do
319 return new ITypeCheck(d.dup_ireg(expr), stype)
320 end
321 end
322
323 redef class IIs
324 redef fun inner_dup_with(d)
325 do
326 return new IIs(d.dup_ireg(expr1), d.dup_ireg(expr2))
327 end
328 end
329
330 redef class INot
331 redef fun inner_dup_with(d)
332 do
333 return new INot(d.dup_ireg(expr))
334 end
335 end
336
337 redef class IOnce
338 redef fun inner_dup_with(d)
339 do
340 var c2 = new IOnce
341 body.dup_seq_to(d, c2.body)
342 return c2
343 end
344 end
345
346 redef class IHasClos
347 redef fun inner_dup_with(d)
348 do
349 return new IHasClos(closure_decl)
350 end
351 end