comparison src/share/vm/runtime/sharedRuntime.cpp @ 20705:d3f3f7677537

6898462: The escape analysis with G1 cause crash assertion src/share/vm/runtime/vframeArray.cpp:94 Summary: OOM during reallocation of scalar replaced objects in deoptimization causes crashes Reviewed-by: kvn, jrose
author roland
date Tue, 25 Nov 2014 17:33:59 +0100
parents 07e01043ade7
children 7848fc12602b
comparison
equal deleted inserted replaced
20704:8c08b28b7eee 20705:d3f3f7677537
480 // The continuation address is the entry point of the exception handler of the 480 // The continuation address is the entry point of the exception handler of the
481 // previous frame depending on the return address. 481 // previous frame depending on the return address.
482 482
483 address SharedRuntime::raw_exception_handler_for_return_address(JavaThread* thread, address return_address) { 483 address SharedRuntime::raw_exception_handler_for_return_address(JavaThread* thread, address return_address) {
484 assert(frame::verify_return_pc(return_address), err_msg("must be a return address: " INTPTR_FORMAT, return_address)); 484 assert(frame::verify_return_pc(return_address), err_msg("must be a return address: " INTPTR_FORMAT, return_address));
485 assert(thread->frames_to_pop_failed_realloc() == 0 || Interpreter::contains(return_address), "missed frames to pop?");
485 486
486 // Reset method handle flag. 487 // Reset method handle flag.
487 thread->set_is_method_handle_return(false); 488 thread->set_is_method_handle_return(false);
488 489
489 // The fastest case first 490 // The fastest case first