mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
8005173: assert(false) failed: DEBUG MESSAGE: exception oop must be empty (macroAssembler_x86.cpp:625)
Reviewed-by: kvn, iveresov
This commit is contained in:
parent
cbd0e9bf96
commit
7f46feeee2
4 changed files with 43 additions and 13 deletions
|
@ -1283,6 +1283,11 @@ class JavaThread: public Thread {
|
|||
void set_exception_handler_pc(address a) { _exception_handler_pc = a; }
|
||||
void set_is_method_handle_return(bool value) { _is_method_handle_return = value ? 1 : 0; }
|
||||
|
||||
void clear_exception_oop_and_pc() {
|
||||
set_exception_oop(NULL);
|
||||
set_exception_pc(NULL);
|
||||
}
|
||||
|
||||
// Stack overflow support
|
||||
inline size_t stack_available(address cur_sp);
|
||||
address stack_yellow_zone_base()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue