hotspot/src/share/vm/c1/c1_IR.cpp
changeset 24318 9d2b7bd56778
parent 24018 77b156916bab
child 34160 3240e478a30e
equal deleted inserted replaced
24317:b693c6344b16 24318:9d2b7bd56778
   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 }