--- old/src/hotspot/share/code/scopeDesc.hpp 2019-03-11 14:25:48.182355404 +0100 +++ new/src/hotspot/share/code/scopeDesc.hpp 2019-03-11 14:25:47.982355407 +0100 @@ -60,12 +60,12 @@ class ScopeDesc : public ResourceObj { public: // Constructor - ScopeDesc(const CompiledMethod* code, int decode_offset, int obj_decode_offset, bool reexecute, bool rethrow_exception, bool return_oop); + ScopeDesc(const CompiledMethod* code, int decode_offset, int obj_decode_offset, bool reexecute, bool rethrow_exception, bool return_oop, bool return_vt); // Calls above, giving default value of "serialized_null" to the // "obj_decode_offset" argument. (We don't use a default argument to // avoid a .hpp-.hpp dependency.) - ScopeDesc(const CompiledMethod* code, int decode_offset, bool reexecute, bool rethrow_exception, bool return_oop); + ScopeDesc(const CompiledMethod* code, int decode_offset, bool reexecute, bool rethrow_exception, bool return_oop, bool return_vt); // Direct access to scope ScopeDesc* at_offset(int decode_offset) { return new ScopeDesc(this, decode_offset); } @@ -76,6 +76,7 @@ bool should_reexecute() const { return _reexecute; } bool rethrow_exception() const { return _rethrow_exception; } bool return_oop() const { return _return_oop; } + bool return_vt() const { return _return_vt; } GrowableArray* locals(); GrowableArray* expressions(); @@ -105,6 +106,7 @@ bool _reexecute; bool _rethrow_exception; bool _return_oop; + bool _return_vt; // Decoding offsets int _decode_offset;