comparison src/share/vm/c1/c1_LIRAssembler.cpp @ 3018:5857923e563c

Fixed an issue with frame states in exception dispatch chains (now we are correctly rethrowing the exception immediately at entering the interpreter).
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Sat, 18 Jun 2011 19:13:55 +0200
parents 6c97c830fb6f
children 0e8a2a629afb
comparison
equal deleted inserted replaced
3017:b4ba003eb11d 3018:5857923e563c
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*/); 408 debug_info->describe_scope(pc_offset, scope->method(), 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