equal
deleted
inserted
replaced
261 } |
261 } |
262 |
262 |
263 // Implementation of IR |
263 // Implementation of IR |
264 |
264 |
265 IR::IR(Compilation* compilation, ciMethod* method, int osr_bci) : |
265 IR::IR(Compilation* compilation, ciMethod* method, int osr_bci) : |
266 _locals_size(in_WordSize(-1)) |
266 _num_loops(0) { |
267 , _num_loops(0) { |
|
268 // setup IR fields |
267 // setup IR fields |
269 _compilation = compilation; |
268 _compilation = compilation; |
270 _top_scope = new IRScope(compilation, NULL, -1, method, osr_bci, true); |
269 _top_scope = new IRScope(compilation, NULL, -1, method, osr_bci, true); |
271 _code = NULL; |
270 _code = NULL; |
272 } |
271 } |