< prev index next >

src/hotspot/share/runtime/vframeArray.cpp

Print this page




  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/vmSymbols.hpp"
  27 #include "code/vmreg.inline.hpp"
  28 #include "interpreter/bytecode.hpp"
  29 #include "interpreter/interpreter.hpp"
  30 #include "memory/allocation.inline.hpp"
  31 #include "memory/resourceArea.hpp"
  32 #include "memory/universe.hpp"
  33 #include "oops/methodData.hpp"
  34 #include "oops/oop.inline.hpp"
  35 #include "prims/jvmtiThreadState.hpp"
  36 #include "runtime/frame.inline.hpp"
  37 #include "runtime/handles.inline.hpp"
  38 #include "runtime/monitorChunk.hpp"
  39 #include "runtime/sharedRuntime.hpp"
  40 #include "runtime/vframe.hpp"
  41 #include "runtime/vframeArray.hpp"
  42 #include "runtime/vframe_hp.hpp"

  43 #include "utilities/events.hpp"
  44 #ifdef COMPILER2
  45 #include "opto/runtime.hpp"
  46 #endif
  47 
  48 int vframeArrayElement:: bci(void) const { return (_bci == SynchronizationEntryBCI ? 0 : _bci); }
  49 
  50 void vframeArrayElement::free_monitors(JavaThread* jt) {
  51   if (_monitors != NULL) {
  52      MonitorChunk* chunk = _monitors;
  53      _monitors = NULL;
  54      jt->remove_monitor_chunk(chunk);
  55      delete chunk;
  56   }
  57 }
  58 
  59 void vframeArrayElement::fill_in(compiledVFrame* vf, bool realloc_failures) {
  60 
  61 // Copy the information from the compiled vframe to the
  62 // interpreter frame we will be creating to replace vf




  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/vmSymbols.hpp"
  27 #include "code/vmreg.inline.hpp"
  28 #include "interpreter/bytecode.hpp"
  29 #include "interpreter/interpreter.hpp"
  30 #include "memory/allocation.inline.hpp"
  31 #include "memory/resourceArea.hpp"
  32 #include "memory/universe.hpp"
  33 #include "oops/methodData.hpp"
  34 #include "oops/oop.inline.hpp"
  35 #include "prims/jvmtiThreadState.hpp"
  36 #include "runtime/frame.inline.hpp"
  37 #include "runtime/handles.inline.hpp"
  38 #include "runtime/monitorChunk.hpp"
  39 #include "runtime/sharedRuntime.hpp"
  40 #include "runtime/vframe.hpp"
  41 #include "runtime/vframeArray.hpp"
  42 #include "runtime/vframe_hp.hpp"
  43 #include "utilities/copy.hpp"
  44 #include "utilities/events.hpp"
  45 #ifdef COMPILER2
  46 #include "opto/runtime.hpp"
  47 #endif
  48 
  49 int vframeArrayElement:: bci(void) const { return (_bci == SynchronizationEntryBCI ? 0 : _bci); }
  50 
  51 void vframeArrayElement::free_monitors(JavaThread* jt) {
  52   if (_monitors != NULL) {
  53      MonitorChunk* chunk = _monitors;
  54      _monitors = NULL;
  55      jt->remove_monitor_chunk(chunk);
  56      delete chunk;
  57   }
  58 }
  59 
  60 void vframeArrayElement::fill_in(compiledVFrame* vf, bool realloc_failures) {
  61 
  62 // Copy the information from the compiled vframe to the
  63 // interpreter frame we will be creating to replace vf


< prev index next >