< prev index next >

src/hotspot/share/services/heapDumper.cpp

Print this page
rev 52821 : [mq]: 8214850-rename-vm_operations


  31 #include "classfile/vmSymbols.hpp"
  32 #include "gc/shared/gcLocker.hpp"
  33 #include "gc/shared/vmGCOperations.hpp"
  34 #include "memory/allocation.inline.hpp"
  35 #include "memory/resourceArea.hpp"
  36 #include "memory/universe.hpp"
  37 #include "oops/objArrayKlass.hpp"
  38 #include "oops/objArrayOop.inline.hpp"
  39 #include "oops/oop.inline.hpp"
  40 #include "oops/typeArrayOop.inline.hpp"
  41 #include "runtime/frame.inline.hpp"
  42 #include "runtime/handles.inline.hpp"
  43 #include "runtime/javaCalls.hpp"
  44 #include "runtime/jniHandles.hpp"
  45 #include "runtime/os.inline.hpp"
  46 #include "runtime/reflectionUtils.hpp"
  47 #include "runtime/thread.inline.hpp"
  48 #include "runtime/threadSMR.hpp"
  49 #include "runtime/vframe.hpp"
  50 #include "runtime/vmThread.hpp"
  51 #include "runtime/vm_operations.hpp"
  52 #include "services/heapDumper.hpp"
  53 #include "services/threadService.hpp"
  54 #include "utilities/macros.hpp"
  55 #include "utilities/ostream.hpp"
  56 
  57 /*
  58  * HPROF binary format - description copied from:
  59  *   src/share/demo/jvmti/hprof/hprof_io.c
  60  *
  61  *
  62  *  header    "JAVA PROFILE 1.0.2" (0-terminated)
  63  *
  64  *  u4        size of identifiers. Identifiers are used to represent
  65  *            UTF8 strings, objects, stack traces, etc. They usually
  66  *            have the same size as host pointers. For example, on
  67  *            Solaris and Win32, the size is 4.
  68  * u4         high word
  69  * u4         low word    number of milliseconds since 0:00 GMT, 1/1/70
  70  * [record]*  a sequence of records.
  71  *




  31 #include "classfile/vmSymbols.hpp"
  32 #include "gc/shared/gcLocker.hpp"
  33 #include "gc/shared/vmGCOperations.hpp"
  34 #include "memory/allocation.inline.hpp"
  35 #include "memory/resourceArea.hpp"
  36 #include "memory/universe.hpp"
  37 #include "oops/objArrayKlass.hpp"
  38 #include "oops/objArrayOop.inline.hpp"
  39 #include "oops/oop.inline.hpp"
  40 #include "oops/typeArrayOop.inline.hpp"
  41 #include "runtime/frame.inline.hpp"
  42 #include "runtime/handles.inline.hpp"
  43 #include "runtime/javaCalls.hpp"
  44 #include "runtime/jniHandles.hpp"
  45 #include "runtime/os.inline.hpp"
  46 #include "runtime/reflectionUtils.hpp"
  47 #include "runtime/thread.inline.hpp"
  48 #include "runtime/threadSMR.hpp"
  49 #include "runtime/vframe.hpp"
  50 #include "runtime/vmThread.hpp"
  51 #include "runtime/vmOperations.hpp"
  52 #include "services/heapDumper.hpp"
  53 #include "services/threadService.hpp"
  54 #include "utilities/macros.hpp"
  55 #include "utilities/ostream.hpp"
  56 
  57 /*
  58  * HPROF binary format - description copied from:
  59  *   src/share/demo/jvmti/hprof/hprof_io.c
  60  *
  61  *
  62  *  header    "JAVA PROFILE 1.0.2" (0-terminated)
  63  *
  64  *  u4        size of identifiers. Identifiers are used to represent
  65  *            UTF8 strings, objects, stack traces, etc. They usually
  66  *            have the same size as host pointers. For example, on
  67  *            Solaris and Win32, the size is 4.
  68  * u4         high word
  69  * u4         low word    number of milliseconds since 0:00 GMT, 1/1/70
  70  * [record]*  a sequence of records.
  71  *


< prev index next >