< prev index next >

src/hotspot/share/runtime/vframeArray.hpp

Print this page

        

*** 23,32 **** --- 23,33 ---- */ #ifndef SHARE_VM_RUNTIME_VFRAMEARRAY_HPP #define SHARE_VM_RUNTIME_VFRAMEARRAY_HPP + #include "memory/allocation.hpp" #include "oops/arrayOop.hpp" #include "runtime/deoptimization.hpp" #include "runtime/frame.inline.hpp" #include "runtime/monitorChunk.hpp" #include "utilities/growableArray.hpp"
*** 44,54 **** class StackValueCollection; // A vframeArrayElement is an element of a vframeArray. Each element // represent an interpreter frame which will eventually be created. ! class vframeArrayElement : public _ValueObj { friend class VMStructs; private: frame _frame; // the interpreter frame we will unpack into --- 45,55 ---- class StackValueCollection; // A vframeArrayElement is an element of a vframeArray. Each element // represent an interpreter frame which will eventually be created. ! class vframeArrayElement { friend class VMStructs; private: frame _frame; // the interpreter frame we will unpack into
< prev index next >