comparison src/share/vm/c1/c1_LIRAssembler.cpp @ 3650:0e8a2a629afb

Pass-by compilation broker.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Wed, 16 Nov 2011 21:27:28 +0100
parents 5857923e563c
children 04b9a2566eec
comparison
equal deleted inserted replaced
3649:5a8c44b5fb80 3650:0e8a2a629afb
403 int s_bci = bci; 403 int s_bci = bci;
404 ValueStack* s = nth_oldest(vstack, n, s_bci); 404 ValueStack* s = nth_oldest(vstack, n, s_bci);
405 if (s == NULL) break; 405 if (s == NULL) break;
406 IRScope* scope = s->scope(); 406 IRScope* scope = s->scope();
407 //Always pass false for reexecute since these ScopeDescs are never used for deopt 407 //Always pass false for reexecute since these ScopeDescs are never used for deopt
408 debug_info->describe_scope(pc_offset, scope->method(), s->bci(), false/*reexecute*/, false/*rethrow_exception*/); 408 debug_info->describe_scope(pc_offset, (methodOop)scope->method()->get_oop(), s->bci(), false/*reexecute*/, false/*rethrow_exception*/);
409 } 409 }
410 410
411 debug_info->end_non_safepoint(pc_offset); 411 debug_info->end_non_safepoint(pc_offset);
412 } 412 }
413 413