hotspot/src/share/vm/runtime/vframe.cpp
changeset 7397 5b173b4ca846
parent 5547 f4b087cbb361
child 8076 96d498ec7ae1
equal deleted inserted replaced
7396:518b01b064ff 7397:5b173b4ca846
    20  * or visit www.oracle.com if you need additional information or have any
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    21  * questions.
    22  *
    22  *
    23  */
    23  */
    24 
    24 
    25 # include "incls/_precompiled.incl"
    25 #include "precompiled.hpp"
    26 # include "incls/_vframe.cpp.incl"
    26 #include "classfile/javaClasses.hpp"
       
    27 #include "classfile/systemDictionary.hpp"
       
    28 #include "classfile/vmSymbols.hpp"
       
    29 #include "code/codeCache.hpp"
       
    30 #include "code/debugInfoRec.hpp"
       
    31 #include "code/nmethod.hpp"
       
    32 #include "code/pcDesc.hpp"
       
    33 #include "code/scopeDesc.hpp"
       
    34 #include "interpreter/interpreter.hpp"
       
    35 #include "interpreter/oopMapCache.hpp"
       
    36 #include "memory/resourceArea.hpp"
       
    37 #include "oops/instanceKlass.hpp"
       
    38 #include "oops/oop.inline.hpp"
       
    39 #include "runtime/handles.inline.hpp"
       
    40 #include "runtime/objectMonitor.hpp"
       
    41 #include "runtime/objectMonitor.inline.hpp"
       
    42 #include "runtime/signature.hpp"
       
    43 #include "runtime/stubRoutines.hpp"
       
    44 #include "runtime/synchronizer.hpp"
       
    45 #include "runtime/vframe.hpp"
       
    46 #include "runtime/vframeArray.hpp"
       
    47 #include "runtime/vframe_hp.hpp"
    27 
    48 
    28 vframe::vframe(const frame* fr, const RegisterMap* reg_map, JavaThread* thread)
    49 vframe::vframe(const frame* fr, const RegisterMap* reg_map, JavaThread* thread)
    29 : _reg_map(reg_map), _thread(thread) {
    50 : _reg_map(reg_map), _thread(thread) {
    30   assert(fr != NULL, "must have frame");
    51   assert(fr != NULL, "must have frame");
    31   _fr = *fr;
    52   _fr = *fr;