src/os/bsd/dtrace/generateJvmOffsets.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8068352.02 Sdiff src/os/bsd/dtrace

src/os/bsd/dtrace/generateJvmOffsets.cpp

Print this page




  28  * contents of __JvmOffsets[] table.
  29  * The __JvmOffsets[] table is located in generated JvmOffsets.cpp.
  30  *
  31  * GENOFFS_SCCS_VER 34
  32  */
  33 
  34 #include "generateJvmOffsets.h"
  35 
  36 /* A workaround for private and protected fields */
  37 #define private   public
  38 #define protected public
  39 
  40 // not on macosx #include <proc_service.h>
  41 #include "code/codeBlob.hpp"
  42 #include "code/nmethod.hpp"
  43 #include "code/pcDesc.hpp"
  44 #include "gc_interface/collectedHeap.hpp"
  45 #include "memory/heap.hpp"
  46 #include "memory/memRegion.hpp"
  47 #include "memory/universe.hpp"

  48 #include "oops/constMethod.hpp"
  49 #include "oops/klass.hpp"
  50 #include "oops/method.hpp"
  51 #include "oops/oop.hpp"
  52 #include "oops/symbol.hpp"
  53 #include "runtime/virtualspace.hpp"
  54 #include "runtime/vmStructs.hpp"
  55 #include "utilities/accessFlags.hpp"
  56 #include "utilities/globalDefinitions.hpp"
  57 
  58 // These are defined somewhere for Solaris
  59 #define PR_MODEL_ILP32 1
  60 #define PR_MODEL_LP64  2
  61 
  62 #ifdef COMPILER1
  63 #ifdef ASSERT
  64 
  65 /*
  66  * To avoid the most part of potential link errors
  67  * we link this program with -z nodefs .
  68  *
  69  * But for 'debug1' and 'fastdebug1' we still have to provide
  70  * a particular workaround for the following symbols below.
  71  * It will be good to find out a generic way in the future.
  72  */
  73 




  28  * contents of __JvmOffsets[] table.
  29  * The __JvmOffsets[] table is located in generated JvmOffsets.cpp.
  30  *
  31  * GENOFFS_SCCS_VER 34
  32  */
  33 
  34 #include "generateJvmOffsets.h"
  35 
  36 /* A workaround for private and protected fields */
  37 #define private   public
  38 #define protected public
  39 
  40 // not on macosx #include <proc_service.h>
  41 #include "code/codeBlob.hpp"
  42 #include "code/nmethod.hpp"
  43 #include "code/pcDesc.hpp"
  44 #include "gc_interface/collectedHeap.hpp"
  45 #include "memory/heap.hpp"
  46 #include "memory/memRegion.hpp"
  47 #include "memory/universe.hpp"
  48 #include "memory/virtualspace.hpp"
  49 #include "oops/constMethod.hpp"
  50 #include "oops/klass.hpp"
  51 #include "oops/method.hpp"
  52 #include "oops/oop.hpp"
  53 #include "oops/symbol.hpp"

  54 #include "runtime/vmStructs.hpp"
  55 #include "utilities/accessFlags.hpp"
  56 #include "utilities/globalDefinitions.hpp"
  57 
  58 // These are defined somewhere for Solaris
  59 #define PR_MODEL_ILP32 1
  60 #define PR_MODEL_LP64  2
  61 
  62 #ifdef COMPILER1
  63 #ifdef ASSERT
  64 
  65 /*
  66  * To avoid the most part of potential link errors
  67  * we link this program with -z nodefs .
  68  *
  69  * But for 'debug1' and 'fastdebug1' we still have to provide
  70  * a particular workaround for the following symbols below.
  71  * It will be good to find out a generic way in the future.
  72  */
  73 


src/os/bsd/dtrace/generateJvmOffsets.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File