< prev index next >

src/hotspot/share/runtime/vframeArray.cpp

Print this page

        

*** 31,40 **** --- 31,41 ---- #include "memory/resourceArea.hpp" #include "memory/universe.hpp" #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" #include "runtime/vframe.hpp" #include "runtime/vframeArray.hpp"
*** 487,496 **** --- 488,500 ---- callee_locals, is_top_frame); } + 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, bool realloc_failures) {
< prev index next >