mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-22 03:54:33 +02:00
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
Developed a reexecute logic for the interpreter to reexecute the bytecode when deopt happens Reviewed-by: kvn, never, jrose, twisti
This commit is contained in:
parent
f2ea22a547
commit
ae00753bf7
29 changed files with 465 additions and 241 deletions
|
@ -25,11 +25,12 @@
|
|||
class compiledVFrame: public javaVFrame {
|
||||
public:
|
||||
// JVM state
|
||||
methodOop method() const;
|
||||
int bci() const;
|
||||
StackValueCollection* locals() const;
|
||||
StackValueCollection* expressions() const;
|
||||
GrowableArray<MonitorInfo*>* monitors() const;
|
||||
methodOop method() const;
|
||||
int bci() const;
|
||||
bool should_reexecute() const;
|
||||
StackValueCollection* locals() const;
|
||||
StackValueCollection* expressions() const;
|
||||
GrowableArray<MonitorInfo*>* monitors() const;
|
||||
|
||||
void set_locals(StackValueCollection* values) const;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue