src/hotspot/share/runtime/vframeArray.hpp
changeset 49392 2956d0ece7a9
parent 47216 71c04702a3d5
child 49480 d7df2dd501ce
equal deleted inserted replaced
49391:02076019c25d 49392:2956d0ece7a9
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    23  */
    23  */
    24 
    24 
    25 #ifndef SHARE_VM_RUNTIME_VFRAMEARRAY_HPP
    25 #ifndef SHARE_VM_RUNTIME_VFRAMEARRAY_HPP
    26 #define SHARE_VM_RUNTIME_VFRAMEARRAY_HPP
    26 #define SHARE_VM_RUNTIME_VFRAMEARRAY_HPP
    27 
    27 
       
    28 #include "memory/allocation.hpp"
    28 #include "oops/arrayOop.hpp"
    29 #include "oops/arrayOop.hpp"
    29 #include "runtime/deoptimization.hpp"
    30 #include "runtime/deoptimization.hpp"
    30 #include "runtime/frame.inline.hpp"
    31 #include "runtime/frame.inline.hpp"
    31 #include "runtime/monitorChunk.hpp"
    32 #include "runtime/monitorChunk.hpp"
    32 #include "utilities/growableArray.hpp"
    33 #include "utilities/growableArray.hpp"
    44 class StackValueCollection;
    45 class StackValueCollection;
    45 
    46 
    46 // A vframeArrayElement is an element of a vframeArray. Each element
    47 // A vframeArrayElement is an element of a vframeArray. Each element
    47 // represent an interpreter frame which will eventually be created.
    48 // represent an interpreter frame which will eventually be created.
    48 
    49 
    49 class vframeArrayElement : public _ValueObj {
    50 class vframeArrayElement {
    50   friend class VMStructs;
    51   friend class VMStructs;
    51 
    52 
    52   private:
    53   private:
    53 
    54 
    54     frame _frame;                                                // the interpreter frame we will unpack into
    55     frame _frame;                                                // the interpreter frame we will unpack into