mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 19:44:41 +02:00
6975006: assert(check.is_deoptimized_frame()) failed: missed deopt
Reviewed-by: kvn, twisti
This commit is contained in:
parent
1d736d2851
commit
a96301c84e
5 changed files with 17 additions and 11 deletions
|
@ -185,6 +185,7 @@ class ThreadSafepointState: public CHeapObj {
|
|||
|
||||
JavaThread * _thread;
|
||||
volatile suspend_type _type;
|
||||
JavaThreadState _orig_thread_state;
|
||||
|
||||
|
||||
public:
|
||||
|
@ -199,6 +200,7 @@ class ThreadSafepointState: public CHeapObj {
|
|||
JavaThread* thread() const { return _thread; }
|
||||
suspend_type type() const { return _type; }
|
||||
bool is_running() const { return (_type==_running); }
|
||||
JavaThreadState orig_thread_state() const { return _orig_thread_state; }
|
||||
|
||||
// Support for safepoint timeout (debugging)
|
||||
bool has_called_back() const { return _has_called_back; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue