hotspot/src/share/vm/c1/c1_LIRAssembler.cpp
changeset 3600 27aa4477d039
parent 1412 2bb3fe3e00ea
child 3795 6227ff014cfe
equal deleted inserted replaced
3599:35bb709f2c62 3600:27aa4477d039
   377   for (int n = 0; ; n++) {
   377   for (int n = 0; ; n++) {
   378     int s_bci = bci;
   378     int s_bci = bci;
   379     ValueStack* s = nth_oldest(vstack, n, s_bci);
   379     ValueStack* s = nth_oldest(vstack, n, s_bci);
   380     if (s == NULL)  break;
   380     if (s == NULL)  break;
   381     IRScope* scope = s->scope();
   381     IRScope* scope = s->scope();
   382     debug_info->describe_scope(pc_offset, scope->method(), s_bci);
   382     //Always pass false for reexecute since these ScopeDescs are never used for deopt
       
   383     debug_info->describe_scope(pc_offset, scope->method(), s_bci, false/*reexecute*/);
   383   }
   384   }
   384 
   385 
   385   debug_info->end_non_safepoint(pc_offset);
   386   debug_info->end_non_safepoint(pc_offset);
   386 }
   387 }
   387 
   388