< prev index next >

src/cpu/sparc/vm/templateInterpreterGenerator_sparc.cpp

Print this page




  27 #include "interpreter/bytecodeHistogram.hpp"
  28 #include "interpreter/interpreter.hpp"
  29 #include "interpreter/interpreterRuntime.hpp"
  30 #include "interpreter/interp_masm.hpp"
  31 #include "interpreter/templateInterpreterGenerator.hpp"
  32 #include "interpreter/templateTable.hpp"
  33 #include "oops/arrayOop.hpp"
  34 #include "oops/methodData.hpp"
  35 #include "oops/method.hpp"
  36 #include "oops/oop.inline.hpp"
  37 #include "prims/jvmtiExport.hpp"
  38 #include "prims/jvmtiThreadState.hpp"
  39 #include "runtime/arguments.hpp"
  40 #include "runtime/deoptimization.hpp"
  41 #include "runtime/frame.inline.hpp"
  42 #include "runtime/sharedRuntime.hpp"
  43 #include "runtime/stubRoutines.hpp"
  44 #include "runtime/synchronizer.hpp"
  45 #include "runtime/timer.hpp"
  46 #include "runtime/vframeArray.hpp"

  47 #include "utilities/debug.hpp"
  48 #include "utilities/macros.hpp"
  49 
  50 // Size of interpreter code.  Increase if too small.  Interpreter will
  51 // fail with a guarantee ("not enough space for interpreter generation");
  52 // if too small.
  53 // Run with +PrintInterpreter to get the VM to print out the size.
  54 // Max size with JVMTI
  55 // The sethi() instruction generates lots more instructions when shell
  56 // stack limit is unlimited, so that's why this is much bigger.
  57 int TemplateInterpreter::InterpreterCodeSize = 260 * K;
  58 
  59 // Generation of Interpreter
  60 //
  61 // The TemplateInterpreterGenerator generates the interpreter into Interpreter::_code.
  62 
  63 
  64 #define __ _masm->
  65 
  66 




  27 #include "interpreter/bytecodeHistogram.hpp"
  28 #include "interpreter/interpreter.hpp"
  29 #include "interpreter/interpreterRuntime.hpp"
  30 #include "interpreter/interp_masm.hpp"
  31 #include "interpreter/templateInterpreterGenerator.hpp"
  32 #include "interpreter/templateTable.hpp"
  33 #include "oops/arrayOop.hpp"
  34 #include "oops/methodData.hpp"
  35 #include "oops/method.hpp"
  36 #include "oops/oop.inline.hpp"
  37 #include "prims/jvmtiExport.hpp"
  38 #include "prims/jvmtiThreadState.hpp"
  39 #include "runtime/arguments.hpp"
  40 #include "runtime/deoptimization.hpp"
  41 #include "runtime/frame.inline.hpp"
  42 #include "runtime/sharedRuntime.hpp"
  43 #include "runtime/stubRoutines.hpp"
  44 #include "runtime/synchronizer.hpp"
  45 #include "runtime/timer.hpp"
  46 #include "runtime/vframeArray.hpp"
  47 #include "utilities/align.hpp"
  48 #include "utilities/debug.hpp"
  49 #include "utilities/macros.hpp"
  50 
  51 // Size of interpreter code.  Increase if too small.  Interpreter will
  52 // fail with a guarantee ("not enough space for interpreter generation");
  53 // if too small.
  54 // Run with +PrintInterpreter to get the VM to print out the size.
  55 // Max size with JVMTI
  56 // The sethi() instruction generates lots more instructions when shell
  57 // stack limit is unlimited, so that's why this is much bigger.
  58 int TemplateInterpreter::InterpreterCodeSize = 260 * K;
  59 
  60 // Generation of Interpreter
  61 //
  62 // The TemplateInterpreterGenerator generates the interpreter into Interpreter::_code.
  63 
  64 
  65 #define __ _masm->
  66 
  67 


< prev index next >