< prev index next >

src/share/vm/oops/method.hpp

Print this page




  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_OOPS_METHODOOP_HPP
  26 #define SHARE_VM_OOPS_METHODOOP_HPP
  27 
  28 #include "classfile/vmSymbols.hpp"
  29 #include "code/compressedStream.hpp"
  30 #include "compiler/compilerDefinitions.hpp"
  31 #include "compiler/oopMap.hpp"
  32 #include "interpreter/invocationCounter.hpp"
  33 #include "oops/annotations.hpp"
  34 #include "oops/constantPool.hpp"
  35 #include "oops/methodCounters.hpp"
  36 #include "oops/instanceKlass.hpp"
  37 #include "oops/oop.hpp"
  38 #include "oops/typeArrayOop.hpp"
  39 #include "utilities/accessFlags.hpp"

  40 #include "utilities/growableArray.hpp"
  41 
  42 // A Method represents a Java method.
  43 //
  44 // Note that most applications load thousands of methods, so keeping the size of this
  45 // class small has a big impact on footprint.
  46 //
  47 // Note that native_function and signature_handler have to be at fixed offsets
  48 // (required by the interpreter)
  49 //
  50 //  Method embedded field layout (after declared fields):
  51 //   [EMBEDDED native_function       (present only if native) ]
  52 //   [EMBEDDED signature_handler     (present only if native) ]
  53 
  54 class CheckedExceptionElement;
  55 class LocalVariableTableElement;
  56 class AdapterHandlerEntry;
  57 class MethodData;
  58 class MethodCounters;
  59 class ConstMethod;




  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_OOPS_METHODOOP_HPP
  26 #define SHARE_VM_OOPS_METHODOOP_HPP
  27 
  28 #include "classfile/vmSymbols.hpp"
  29 #include "code/compressedStream.hpp"
  30 #include "compiler/compilerDefinitions.hpp"
  31 #include "compiler/oopMap.hpp"
  32 #include "interpreter/invocationCounter.hpp"
  33 #include "oops/annotations.hpp"
  34 #include "oops/constantPool.hpp"
  35 #include "oops/methodCounters.hpp"
  36 #include "oops/instanceKlass.hpp"
  37 #include "oops/oop.hpp"
  38 #include "oops/typeArrayOop.hpp"
  39 #include "utilities/accessFlags.hpp"
  40 #include "utilities/align.hpp"
  41 #include "utilities/growableArray.hpp"
  42 
  43 // A Method represents a Java method.
  44 //
  45 // Note that most applications load thousands of methods, so keeping the size of this
  46 // class small has a big impact on footprint.
  47 //
  48 // Note that native_function and signature_handler have to be at fixed offsets
  49 // (required by the interpreter)
  50 //
  51 //  Method embedded field layout (after declared fields):
  52 //   [EMBEDDED native_function       (present only if native) ]
  53 //   [EMBEDDED signature_handler     (present only if native) ]
  54 
  55 class CheckedExceptionElement;
  56 class LocalVariableTableElement;
  57 class AdapterHandlerEntry;
  58 class MethodData;
  59 class MethodCounters;
  60 class ConstMethod;


< prev index next >