< prev index next >

src/hotspot/share/runtime/vframe.cpp

Print this page




  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  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"
  48 
  49 vframe::vframe(const frame* fr, const RegisterMap* reg_map, JavaThread* thread)
  50 : _reg_map(reg_map), _thread(thread) {
  51   assert(fr != NULL, "must have frame");
  52   _fr = *fr;
  53 }
  54 
  55 vframe::vframe(const frame* fr, JavaThread* thread)
  56 : _reg_map(thread), _thread(thread) {
  57   assert(fr != NULL, "must have frame");
  58   _fr = *fr;
  59 }
  60 
  61 vframe* vframe::new_vframe(const frame* f, const RegisterMap* reg_map, JavaThread* thread) {
  62   // Interpreter frame
  63   if (f->is_interpreted_frame()) {
  64     return new interpretedVFrame(f, reg_map, thread);
  65   }




  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  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/frame.inline.hpp"
  40 #include "runtime/handles.inline.hpp"
  41 #include "runtime/objectMonitor.hpp"
  42 #include "runtime/objectMonitor.inline.hpp"
  43 #include "runtime/signature.hpp"
  44 #include "runtime/stubRoutines.hpp"
  45 #include "runtime/synchronizer.hpp"
  46 #include "runtime/vframe.inline.hpp"
  47 #include "runtime/vframeArray.hpp"
  48 #include "runtime/vframe_hp.hpp"
  49 
  50 vframe::vframe(const frame* fr, const RegisterMap* reg_map, JavaThread* thread)
  51 : _reg_map(reg_map), _thread(thread) {
  52   assert(fr != NULL, "must have frame");
  53   _fr = *fr;
  54 }
  55 
  56 vframe::vframe(const frame* fr, JavaThread* thread)
  57 : _reg_map(thread), _thread(thread) {
  58   assert(fr != NULL, "must have frame");
  59   _fr = *fr;
  60 }
  61 
  62 vframe* vframe::new_vframe(const frame* f, const RegisterMap* reg_map, JavaThread* thread) {
  63   // Interpreter frame
  64   if (f->is_interpreted_frame()) {
  65     return new interpretedVFrame(f, reg_map, thread);
  66   }


< prev index next >