src/cpu/x86/vm/bytecodeInterpreter_x86.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Sdiff src/cpu/x86/vm

src/cpu/x86/vm/bytecodeInterpreter_x86.cpp

Print this page
rev 5469 : [mq]: parameters-review


  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "asm/assembler.hpp"
  27 #include "interpreter/bytecodeInterpreter.hpp"
  28 #include "interpreter/bytecodeInterpreter.inline.hpp"
  29 #include "interpreter/interpreter.hpp"
  30 #include "interpreter/interpreterRuntime.hpp"
  31 #include "oops/methodData.hpp"
  32 #include "oops/method.hpp"
  33 #include "oops/oop.inline.hpp"
  34 #include "prims/jvmtiExport.hpp"
  35 #include "prims/jvmtiThreadState.hpp"
  36 #include "runtime/deoptimization.hpp"
  37 #include "runtime/frame.inline.hpp"
  38 #include "runtime/sharedRuntime.hpp"
  39 #include "runtime/stubRoutines.hpp"
  40 #include "runtime/synchronizer.hpp"
  41 #include "runtime/vframeArray.hpp"
  42 #include "utilities/debug.hpp"
  43 #ifdef TARGET_ARCH_MODEL_x86_32
  44 # include "interp_masm_x86_32.hpp"
  45 #endif
  46 #ifdef TARGET_ARCH_MODEL_x86_64
  47 # include "interp_masm_x86_64.hpp"
  48 #endif
  49 
  50 #ifdef CC_INTERP
  51 
  52 #endif // CC_INTERP (all)


  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "asm/assembler.hpp"
  27 #include "interpreter/bytecodeInterpreter.hpp"
  28 #include "interpreter/bytecodeInterpreter.inline.hpp"
  29 #include "interpreter/interpreter.hpp"
  30 #include "interpreter/interpreterRuntime.hpp"
  31 #include "oops/methodData.hpp"
  32 #include "oops/method.hpp"
  33 #include "oops/oop.inline.hpp"
  34 #include "prims/jvmtiExport.hpp"
  35 #include "prims/jvmtiThreadState.hpp"
  36 #include "runtime/deoptimization.hpp"
  37 #include "runtime/frame.inline.hpp"
  38 #include "runtime/sharedRuntime.hpp"
  39 #include "runtime/stubRoutines.hpp"
  40 #include "runtime/synchronizer.hpp"
  41 #include "runtime/vframeArray.hpp"
  42 #include "utilities/debug.hpp"
  43 #ifdef TARGET_ARCH_x86
  44 # include "interp_masm_x86.hpp"



  45 #endif
  46 
  47 #ifdef CC_INTERP
  48 
  49 #endif // CC_INTERP (all)
src/cpu/x86/vm/bytecodeInterpreter_x86.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File