src/hotspot/share/runtime/vframeArray.cpp
changeset 49480 d7df2dd501ce
parent 49359 59f6547e151f
child 49593 4dd58ecc9912
--- a/src/hotspot/share/runtime/vframeArray.cpp	Wed Mar 21 17:09:34 2018 -0400
+++ b/src/hotspot/share/runtime/vframeArray.cpp	Wed Mar 21 19:45:24 2018 -0400
@@ -33,6 +33,7 @@
 #include "oops/methodData.hpp"
 #include "oops/oop.inline.hpp"
 #include "prims/jvmtiThreadState.hpp"
+#include "runtime/frame.inline.hpp"
 #include "runtime/handles.inline.hpp"
 #include "runtime/monitorChunk.hpp"
 #include "runtime/sharedRuntime.hpp"
@@ -489,6 +490,9 @@
 }
 
 
+intptr_t* vframeArray::unextended_sp() const {
+  return _original.unextended_sp();
+}
 
 vframeArray* vframeArray::allocate(JavaThread* thread, int frame_size, GrowableArray<compiledVFrame*>* chunk,
                                    RegisterMap *reg_map, frame sender, frame caller, frame self,