/java-1.7.0-openjdk/openjdk/hotspot/src/share/vm/services/heapDumper.cpp

# · C++ · 2031 lines · 1223 code · 261 blank · 547 comment · 232 complexity · ec6c3d7492ee6b0deea91abfc85a5a36 MD5 · raw file

Large files are truncated click here to view the full file

  1. /*
  2. * Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
  3. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4. *
  5. * This code is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License version 2 only, as
  7. * published by the Free Software Foundation.
  8. *
  9. * This code is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  12. * version 2 for more details (a copy is included in the LICENSE file that
  13. * accompanied this code).
  14. *
  15. * You should have received a copy of the GNU General Public License version
  16. * 2 along with this work; if not, write to the Free Software Foundation,
  17. * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18. *
  19. * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20. * or visit www.oracle.com if you need additional information or have any
  21. * questions.
  22. *
  23. */
  24. #include "precompiled.hpp"
  25. #include "classfile/symbolTable.hpp"
  26. #include "classfile/systemDictionary.hpp"
  27. #include "classfile/vmSymbols.hpp"
  28. #include "gc_implementation/shared/vmGCOperations.hpp"
  29. #include "memory/gcLocker.inline.hpp"
  30. #include "memory/genCollectedHeap.hpp"
  31. #include "memory/universe.hpp"
  32. #include "oops/objArrayKlass.hpp"
  33. #include "runtime/javaCalls.hpp"
  34. #include "runtime/jniHandles.hpp"
  35. #include "runtime/reflectionUtils.hpp"
  36. #include "runtime/vframe.hpp"
  37. #include "runtime/vmThread.hpp"
  38. #include "runtime/vm_operations.hpp"
  39. #include "services/heapDumper.hpp"
  40. #include "services/threadService.hpp"
  41. #include "utilities/ostream.hpp"
  42. #ifndef SERIALGC
  43. #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
  44. #endif
  45. /*
  46. * HPROF binary format - description copied from:
  47. * src/share/demo/jvmti/hprof/hprof_io.c
  48. *
  49. *
  50. * header "JAVA PROFILE 1.0.1" or "JAVA PROFILE 1.0.2"
  51. * (0-terminated)
  52. *
  53. * u4 size of identifiers. Identifiers are used to represent
  54. * UTF8 strings, objects, stack traces, etc. They usually
  55. * have the same size as host pointers. For example, on
  56. * Solaris and Win32, the size is 4.
  57. * u4 high word
  58. * u4 low word number of milliseconds since 0:00 GMT, 1/1/70
  59. * [record]* a sequence of records.
  60. *
  61. *
  62. * Record format:
  63. *
  64. * u1 a TAG denoting the type of the record
  65. * u4 number of *microseconds* since the time stamp in the
  66. * header. (wraps around in a little more than an hour)
  67. * u4 number of bytes *remaining* in the record. Note that
  68. * this number excludes the tag and the length field itself.
  69. * [u1]* BODY of the record (a sequence of bytes)
  70. *
  71. *
  72. * The following TAGs are supported:
  73. *
  74. * TAG BODY notes
  75. *----------------------------------------------------------
  76. * HPROF_UTF8 a UTF8-encoded name
  77. *
  78. * id name ID
  79. * [u1]* UTF8 characters (no trailing zero)
  80. *
  81. * HPROF_LOAD_CLASS a newly loaded class
  82. *
  83. * u4 class serial number (> 0)
  84. * id class object ID
  85. * u4 stack trace serial number
  86. * id class name ID
  87. *
  88. * HPROF_UNLOAD_CLASS an unloading class
  89. *
  90. * u4 class serial_number
  91. *
  92. * HPROF_FRAME a Java stack frame
  93. *
  94. * id stack frame ID
  95. * id method name ID
  96. * id method signature ID
  97. * id source file name ID
  98. * u4 class serial number
  99. * i4 line number. >0: normal
  100. * -1: unknown
  101. * -2: compiled method
  102. * -3: native method
  103. *
  104. * HPROF_TRACE a Java stack trace
  105. *
  106. * u4 stack trace serial number
  107. * u4 thread serial number
  108. * u4 number of frames
  109. * [id]* stack frame IDs
  110. *
  111. *
  112. * HPROF_ALLOC_SITES a set of heap allocation sites, obtained after GC
  113. *
  114. * u2 flags 0x0001: incremental vs. complete
  115. * 0x0002: sorted by allocation vs. live
  116. * 0x0004: whether to force a GC
  117. * u4 cutoff ratio
  118. * u4 total live bytes
  119. * u4 total live instances
  120. * u8 total bytes allocated
  121. * u8 total instances allocated
  122. * u4 number of sites that follow
  123. * [u1 is_array: 0: normal object
  124. * 2: object array
  125. * 4: boolean array
  126. * 5: char array
  127. * 6: float array
  128. * 7: double array
  129. * 8: byte array
  130. * 9: short array
  131. * 10: int array
  132. * 11: long array
  133. * u4 class serial number (may be zero during startup)
  134. * u4 stack trace serial number
  135. * u4 number of bytes alive
  136. * u4 number of instances alive
  137. * u4 number of bytes allocated
  138. * u4]* number of instance allocated
  139. *
  140. * HPROF_START_THREAD a newly started thread.
  141. *
  142. * u4 thread serial number (> 0)
  143. * id thread object ID
  144. * u4 stack trace serial number
  145. * id thread name ID
  146. * id thread group name ID
  147. * id thread group parent name ID
  148. *
  149. * HPROF_END_THREAD a terminating thread.
  150. *
  151. * u4 thread serial number
  152. *
  153. * HPROF_HEAP_SUMMARY heap summary
  154. *
  155. * u4 total live bytes
  156. * u4 total live instances
  157. * u8 total bytes allocated
  158. * u8 total instances allocated
  159. *
  160. * HPROF_HEAP_DUMP denote a heap dump
  161. *
  162. * [heap dump sub-records]*
  163. *
  164. * There are four kinds of heap dump sub-records:
  165. *
  166. * u1 sub-record type
  167. *
  168. * HPROF_GC_ROOT_UNKNOWN unknown root
  169. *
  170. * id object ID
  171. *
  172. * HPROF_GC_ROOT_THREAD_OBJ thread object
  173. *
  174. * id thread object ID (may be 0 for a
  175. * thread newly attached through JNI)
  176. * u4 thread sequence number
  177. * u4 stack trace sequence number
  178. *
  179. * HPROF_GC_ROOT_JNI_GLOBAL JNI global ref root
  180. *
  181. * id object ID
  182. * id JNI global ref ID
  183. *
  184. * HPROF_GC_ROOT_JNI_LOCAL JNI local ref
  185. *
  186. * id object ID
  187. * u4 thread serial number
  188. * u4 frame # in stack trace (-1 for empty)
  189. *
  190. * HPROF_GC_ROOT_JAVA_FRAME Java stack frame
  191. *
  192. * id object ID
  193. * u4 thread serial number
  194. * u4 frame # in stack trace (-1 for empty)
  195. *
  196. * HPROF_GC_ROOT_NATIVE_STACK Native stack
  197. *
  198. * id object ID
  199. * u4 thread serial number
  200. *
  201. * HPROF_GC_ROOT_STICKY_CLASS System class
  202. *
  203. * id object ID
  204. *
  205. * HPROF_GC_ROOT_THREAD_BLOCK Reference from thread block
  206. *
  207. * id object ID
  208. * u4 thread serial number
  209. *
  210. * HPROF_GC_ROOT_MONITOR_USED Busy monitor
  211. *
  212. * id object ID
  213. *
  214. * HPROF_GC_CLASS_DUMP dump of a class object
  215. *
  216. * id class object ID
  217. * u4 stack trace serial number
  218. * id super class object ID
  219. * id class loader object ID
  220. * id signers object ID
  221. * id protection domain object ID
  222. * id reserved
  223. * id reserved
  224. *
  225. * u4 instance size (in bytes)
  226. *
  227. * u2 size of constant pool
  228. * [u2, constant pool index,
  229. * ty, type
  230. * 2: object
  231. * 4: boolean
  232. * 5: char
  233. * 6: float
  234. * 7: double
  235. * 8: byte
  236. * 9: short
  237. * 10: int
  238. * 11: long
  239. * vl]* and value
  240. *
  241. * u2 number of static fields
  242. * [id, static field name,
  243. * ty, type,
  244. * vl]* and value
  245. *
  246. * u2 number of inst. fields (not inc. super)
  247. * [id, instance field name,
  248. * ty]* type
  249. *
  250. * HPROF_GC_INSTANCE_DUMP dump of a normal object
  251. *
  252. * id object ID
  253. * u4 stack trace serial number
  254. * id class object ID
  255. * u4 number of bytes that follow
  256. * [vl]* instance field values (class, followed
  257. * by super, super's super ...)
  258. *
  259. * HPROF_GC_OBJ_ARRAY_DUMP dump of an object array
  260. *
  261. * id array object ID
  262. * u4 stack trace serial number
  263. * u4 number of elements
  264. * id array class ID
  265. * [id]* elements
  266. *
  267. * HPROF_GC_PRIM_ARRAY_DUMP dump of a primitive array
  268. *
  269. * id array object ID
  270. * u4 stack trace serial number
  271. * u4 number of elements
  272. * u1 element type
  273. * 4: boolean array
  274. * 5: char array
  275. * 6: float array
  276. * 7: double array
  277. * 8: byte array
  278. * 9: short array
  279. * 10: int array
  280. * 11: long array
  281. * [u1]* elements
  282. *
  283. * HPROF_CPU_SAMPLES a set of sample traces of running threads
  284. *
  285. * u4 total number of samples
  286. * u4 # of traces
  287. * [u4 # of samples
  288. * u4]* stack trace serial number
  289. *
  290. * HPROF_CONTROL_SETTINGS the settings of on/off switches
  291. *
  292. * u4 0x00000001: alloc traces on/off
  293. * 0x00000002: cpu sampling on/off
  294. * u2 stack trace depth
  295. *
  296. *
  297. * When the header is "JAVA PROFILE 1.0.2" a heap dump can optionally
  298. * be generated as a sequence of heap dump segments. This sequence is
  299. * terminated by an end record. The additional tags allowed by format
  300. * "JAVA PROFILE 1.0.2" are:
  301. *
  302. * HPROF_HEAP_DUMP_SEGMENT denote a heap dump segment
  303. *
  304. * [heap dump sub-records]*
  305. * The same sub-record types allowed by HPROF_HEAP_DUMP
  306. *
  307. * HPROF_HEAP_DUMP_END denotes the end of a heap dump
  308. *
  309. */
  310. // HPROF tags
  311. typedef enum {
  312. // top-level records
  313. HPROF_UTF8 = 0x01,
  314. HPROF_LOAD_CLASS = 0x02,
  315. HPROF_UNLOAD_CLASS = 0x03,
  316. HPROF_FRAME = 0x04,
  317. HPROF_TRACE = 0x05,
  318. HPROF_ALLOC_SITES = 0x06,
  319. HPROF_HEAP_SUMMARY = 0x07,
  320. HPROF_START_THREAD = 0x0A,
  321. HPROF_END_THREAD = 0x0B,
  322. HPROF_HEAP_DUMP = 0x0C,
  323. HPROF_CPU_SAMPLES = 0x0D,
  324. HPROF_CONTROL_SETTINGS = 0x0E,
  325. // 1.0.2 record types
  326. HPROF_HEAP_DUMP_SEGMENT = 0x1C,
  327. HPROF_HEAP_DUMP_END = 0x2C,
  328. // field types
  329. HPROF_ARRAY_OBJECT = 0x01,
  330. HPROF_NORMAL_OBJECT = 0x02,
  331. HPROF_BOOLEAN = 0x04,
  332. HPROF_CHAR = 0x05,
  333. HPROF_FLOAT = 0x06,
  334. HPROF_DOUBLE = 0x07,
  335. HPROF_BYTE = 0x08,
  336. HPROF_SHORT = 0x09,
  337. HPROF_INT = 0x0A,
  338. HPROF_LONG = 0x0B,
  339. // data-dump sub-records
  340. HPROF_GC_ROOT_UNKNOWN = 0xFF,
  341. HPROF_GC_ROOT_JNI_GLOBAL = 0x01,
  342. HPROF_GC_ROOT_JNI_LOCAL = 0x02,
  343. HPROF_GC_ROOT_JAVA_FRAME = 0x03,
  344. HPROF_GC_ROOT_NATIVE_STACK = 0x04,
  345. HPROF_GC_ROOT_STICKY_CLASS = 0x05,
  346. HPROF_GC_ROOT_THREAD_BLOCK = 0x06,
  347. HPROF_GC_ROOT_MONITOR_USED = 0x07,
  348. HPROF_GC_ROOT_THREAD_OBJ = 0x08,
  349. HPROF_GC_CLASS_DUMP = 0x20,
  350. HPROF_GC_INSTANCE_DUMP = 0x21,
  351. HPROF_GC_OBJ_ARRAY_DUMP = 0x22,
  352. HPROF_GC_PRIM_ARRAY_DUMP = 0x23
  353. } hprofTag;
  354. // Default stack trace ID (used for dummy HPROF_TRACE record)
  355. enum {
  356. STACK_TRACE_ID = 1,
  357. INITIAL_CLASS_COUNT = 200
  358. };
  359. // Supports I/O operations on a dump file
  360. class DumpWriter : public StackObj {
  361. private:
  362. enum {
  363. io_buffer_size = 8*M
  364. };
  365. int _fd; // file descriptor (-1 if dump file not open)
  366. jlong _bytes_written; // number of byte written to dump file
  367. char* _buffer; // internal buffer
  368. int _size;
  369. int _pos;
  370. char* _error; // error message when I/O fails
  371. void set_file_descriptor(int fd) { _fd = fd; }
  372. int file_descriptor() const { return _fd; }
  373. char* buffer() const { return _buffer; }
  374. int buffer_size() const { return _size; }
  375. int position() const { return _pos; }
  376. void set_position(int pos) { _pos = pos; }
  377. void set_error(const char* error) { _error = (char*)os::strdup(error); }
  378. // all I/O go through this function
  379. void write_internal(void* s, int len);
  380. public:
  381. DumpWriter(const char* path);
  382. ~DumpWriter();
  383. void close();
  384. bool is_open() const { return file_descriptor() >= 0; }
  385. void flush();
  386. // total number of bytes written to the disk
  387. jlong bytes_written() const { return _bytes_written; }
  388. // adjust the number of bytes written to disk (used to keep the count
  389. // of the number of bytes written in case of rewrites)
  390. void adjust_bytes_written(jlong n) { _bytes_written += n; }
  391. // number of (buffered) bytes as yet unwritten to the dump file
  392. jlong bytes_unwritten() const { return (jlong)position(); }
  393. char* error() const { return _error; }
  394. jlong current_offset();
  395. void seek_to_offset(jlong pos);
  396. // writer functions
  397. void write_raw(void* s, int len);
  398. void write_u1(u1 x) { write_raw((void*)&x, 1); }
  399. void write_u2(u2 x);
  400. void write_u4(u4 x);
  401. void write_u8(u8 x);
  402. void write_objectID(oop o);
  403. void write_symbolID(Symbol* o);
  404. void write_classID(Klass* k);
  405. void write_id(u4 x);
  406. };
  407. DumpWriter::DumpWriter(const char* path) {
  408. // try to allocate an I/O buffer of io_buffer_size. If there isn't
  409. // sufficient memory then reduce size until we can allocate something.
  410. _size = io_buffer_size;
  411. do {
  412. _buffer = (char*)os::malloc(_size);
  413. if (_buffer == NULL) {
  414. _size = _size >> 1;
  415. }
  416. } while (_buffer == NULL && _size > 0);
  417. assert((_size > 0 && _buffer != NULL) || (_size == 0 && _buffer == NULL), "sanity check");
  418. _pos = 0;
  419. _error = NULL;
  420. _bytes_written = 0L;
  421. _fd = os::create_binary_file(path, false); // don't replace existing file
  422. // if the open failed we record the error
  423. if (_fd < 0) {
  424. _error = (char*)os::strdup(strerror(errno));
  425. }
  426. }
  427. DumpWriter::~DumpWriter() {
  428. // flush and close dump file
  429. if (is_open()) {
  430. close();
  431. }
  432. if (_buffer != NULL) os::free(_buffer);
  433. if (_error != NULL) os::free(_error);
  434. }
  435. // closes dump file (if open)
  436. void DumpWriter::close() {
  437. // flush and close dump file
  438. if (is_open()) {
  439. flush();
  440. ::close(file_descriptor());
  441. set_file_descriptor(-1);
  442. }
  443. }
  444. // write directly to the file
  445. void DumpWriter::write_internal(void* s, int len) {
  446. if (is_open()) {
  447. int n = ::write(file_descriptor(), s, len);
  448. if (n > 0) {
  449. _bytes_written += n;
  450. }
  451. if (n != len) {
  452. if (n < 0) {
  453. set_error(strerror(errno));
  454. } else {
  455. set_error("file size limit");
  456. }
  457. ::close(file_descriptor());
  458. set_file_descriptor(-1);
  459. }
  460. }
  461. }
  462. // write raw bytes
  463. void DumpWriter::write_raw(void* s, int len) {
  464. if (is_open()) {
  465. // flush buffer to make toom
  466. if ((position()+ len) >= buffer_size()) {
  467. flush();
  468. }
  469. // buffer not available or too big to buffer it
  470. if ((buffer() == NULL) || (len >= buffer_size())) {
  471. write_internal(s, len);
  472. } else {
  473. // Should optimize this for u1/u2/u4/u8 sizes.
  474. memcpy(buffer() + position(), s, len);
  475. set_position(position() + len);
  476. }
  477. }
  478. }
  479. // flush any buffered bytes to the file
  480. void DumpWriter::flush() {
  481. if (is_open() && position() > 0) {
  482. write_internal(buffer(), position());
  483. set_position(0);
  484. }
  485. }
  486. jlong DumpWriter::current_offset() {
  487. if (is_open()) {
  488. // the offset is the file offset plus whatever we have buffered
  489. jlong offset = os::current_file_offset(file_descriptor());
  490. assert(offset >= 0, "lseek failed");
  491. return offset + (jlong)position();
  492. } else {
  493. return (jlong)-1;
  494. }
  495. }
  496. void DumpWriter::seek_to_offset(jlong off) {
  497. assert(off >= 0, "bad offset");
  498. // need to flush before seeking
  499. flush();
  500. // may be closed due to I/O error
  501. if (is_open()) {
  502. jlong n = os::seek_to_file_offset(file_descriptor(), off);
  503. assert(n >= 0, "lseek failed");
  504. }
  505. }
  506. void DumpWriter::write_u2(u2 x) {
  507. u2 v;
  508. Bytes::put_Java_u2((address)&v, x);
  509. write_raw((void*)&v, 2);
  510. }
  511. void DumpWriter::write_u4(u4 x) {
  512. u4 v;
  513. Bytes::put_Java_u4((address)&v, x);
  514. write_raw((void*)&v, 4);
  515. }
  516. void DumpWriter::write_u8(u8 x) {
  517. u8 v;
  518. Bytes::put_Java_u8((address)&v, x);
  519. write_raw((void*)&v, 8);
  520. }
  521. void DumpWriter::write_objectID(oop o) {
  522. address a = (address)((uintptr_t)o);
  523. #ifdef _LP64
  524. write_u8((u8)a);
  525. #else
  526. write_u4((u4)a);
  527. #endif
  528. }
  529. void DumpWriter::write_symbolID(Symbol* s) {
  530. address a = (address)((uintptr_t)s);
  531. #ifdef _LP64
  532. write_u8((u8)a);
  533. #else
  534. write_u4((u4)a);
  535. #endif
  536. }
  537. void DumpWriter::write_id(u4 x) {
  538. #ifdef _LP64
  539. write_u8((u8) x);
  540. #else
  541. write_u4(x);
  542. #endif
  543. }
  544. // We use java mirror as the class ID
  545. void DumpWriter::write_classID(Klass* k) {
  546. write_objectID(k->java_mirror());
  547. }
  548. // Support class with a collection of functions used when dumping the heap
  549. class DumperSupport : AllStatic {
  550. public:
  551. // write a header of the given type
  552. static void write_header(DumpWriter* writer, hprofTag tag, u4 len);
  553. // returns hprof tag for the given type signature
  554. static hprofTag sig2tag(Symbol* sig);
  555. // returns hprof tag for the given basic type
  556. static hprofTag type2tag(BasicType type);
  557. // returns the size of the instance of the given class
  558. static u4 instance_size(klassOop k);
  559. // dump a jfloat
  560. static void dump_float(DumpWriter* writer, jfloat f);
  561. // dump a jdouble
  562. static void dump_double(DumpWriter* writer, jdouble d);
  563. // dumps the raw value of the given field
  564. static void dump_field_value(DumpWriter* writer, char type, address addr);
  565. // dumps static fields of the given class
  566. static void dump_static_fields(DumpWriter* writer, klassOop k);
  567. // dump the raw values of the instance fields of the given object
  568. static void dump_instance_fields(DumpWriter* writer, oop o);
  569. // dumps the definition of the instance fields for a given class
  570. static void dump_instance_field_descriptors(DumpWriter* writer, klassOop k);
  571. // creates HPROF_GC_INSTANCE_DUMP record for the given object
  572. static void dump_instance(DumpWriter* writer, oop o);
  573. // creates HPROF_GC_CLASS_DUMP record for the given class and each of its
  574. // array classes
  575. static void dump_class_and_array_classes(DumpWriter* writer, klassOop k);
  576. // creates HPROF_GC_CLASS_DUMP record for a given primitive array
  577. // class (and each multi-dimensional array class too)
  578. static void dump_basic_type_array_class(DumpWriter* writer, klassOop k);
  579. // creates HPROF_GC_OBJ_ARRAY_DUMP record for the given object array
  580. static void dump_object_array(DumpWriter* writer, objArrayOop array);
  581. // creates HPROF_GC_PRIM_ARRAY_DUMP record for the given type array
  582. static void dump_prim_array(DumpWriter* writer, typeArrayOop array);
  583. // create HPROF_FRAME record for the given method and bci
  584. static void dump_stack_frame(DumpWriter* writer, int frame_serial_num, int class_serial_num, methodOop m, int bci);
  585. };
  586. // write a header of the given type
  587. void DumperSupport:: write_header(DumpWriter* writer, hprofTag tag, u4 len) {
  588. writer->write_u1((u1)tag);
  589. writer->write_u4(0); // current ticks
  590. writer->write_u4(len);
  591. }
  592. // returns hprof tag for the given type signature
  593. hprofTag DumperSupport::sig2tag(Symbol* sig) {
  594. switch (sig->byte_at(0)) {
  595. case JVM_SIGNATURE_CLASS : return HPROF_NORMAL_OBJECT;
  596. case JVM_SIGNATURE_ARRAY : return HPROF_NORMAL_OBJECT;
  597. case JVM_SIGNATURE_BYTE : return HPROF_BYTE;
  598. case JVM_SIGNATURE_CHAR : return HPROF_CHAR;
  599. case JVM_SIGNATURE_FLOAT : return HPROF_FLOAT;
  600. case JVM_SIGNATURE_DOUBLE : return HPROF_DOUBLE;
  601. case JVM_SIGNATURE_INT : return HPROF_INT;
  602. case JVM_SIGNATURE_LONG : return HPROF_LONG;
  603. case JVM_SIGNATURE_SHORT : return HPROF_SHORT;
  604. case JVM_SIGNATURE_BOOLEAN : return HPROF_BOOLEAN;
  605. default : ShouldNotReachHere(); /* to shut up compiler */ return HPROF_BYTE;
  606. }
  607. }
  608. hprofTag DumperSupport::type2tag(BasicType type) {
  609. switch (type) {
  610. case T_BYTE : return HPROF_BYTE;
  611. case T_CHAR : return HPROF_CHAR;
  612. case T_FLOAT : return HPROF_FLOAT;
  613. case T_DOUBLE : return HPROF_DOUBLE;
  614. case T_INT : return HPROF_INT;
  615. case T_LONG : return HPROF_LONG;
  616. case T_SHORT : return HPROF_SHORT;
  617. case T_BOOLEAN : return HPROF_BOOLEAN;
  618. default : ShouldNotReachHere(); /* to shut up compiler */ return HPROF_BYTE;
  619. }
  620. }
  621. // dump a jfloat
  622. void DumperSupport::dump_float(DumpWriter* writer, jfloat f) {
  623. if (g_isnan(f)) {
  624. writer->write_u4(0x7fc00000); // collapsing NaNs
  625. } else {
  626. union {
  627. int i;
  628. float f;
  629. } u;
  630. u.f = (float)f;
  631. writer->write_u4((u4)u.i);
  632. }
  633. }
  634. // dump a jdouble
  635. void DumperSupport::dump_double(DumpWriter* writer, jdouble d) {
  636. union {
  637. jlong l;
  638. double d;
  639. } u;
  640. if (g_isnan(d)) { // collapsing NaNs
  641. u.l = (jlong)(0x7ff80000);
  642. u.l = (u.l << 32);
  643. } else {
  644. u.d = (double)d;
  645. }
  646. writer->write_u8((u8)u.l);
  647. }
  648. // dumps the raw value of the given field
  649. void DumperSupport::dump_field_value(DumpWriter* writer, char type, address addr) {
  650. switch (type) {
  651. case JVM_SIGNATURE_CLASS :
  652. case JVM_SIGNATURE_ARRAY : {
  653. oop o;
  654. if (UseCompressedOops) {
  655. o = oopDesc::load_decode_heap_oop((narrowOop*)addr);
  656. } else {
  657. o = oopDesc::load_decode_heap_oop((oop*)addr);
  658. }
  659. // reflection and sun.misc.Unsafe classes may have a reference to a
  660. // klassOop so filter it out.
  661. if (o != NULL && o->is_klass()) {
  662. o = NULL;
  663. }
  664. // FIXME: When sharing is enabled we don't emit field references to objects
  665. // in shared spaces. We can remove this once we write records for the classes
  666. // and strings that are shared.
  667. if (o != NULL && o->is_shared()) {
  668. o = NULL;
  669. }
  670. writer->write_objectID(o);
  671. break;
  672. }
  673. case JVM_SIGNATURE_BYTE : {
  674. jbyte* b = (jbyte*)addr;
  675. writer->write_u1((u1)*b);
  676. break;
  677. }
  678. case JVM_SIGNATURE_CHAR : {
  679. jchar* c = (jchar*)addr;
  680. writer->write_u2((u2)*c);
  681. break;
  682. }
  683. case JVM_SIGNATURE_SHORT : {
  684. jshort* s = (jshort*)addr;
  685. writer->write_u2((u2)*s);
  686. break;
  687. }
  688. case JVM_SIGNATURE_FLOAT : {
  689. jfloat* f = (jfloat*)addr;
  690. dump_float(writer, *f);
  691. break;
  692. }
  693. case JVM_SIGNATURE_DOUBLE : {
  694. jdouble* f = (jdouble*)addr;
  695. dump_double(writer, *f);
  696. break;
  697. }
  698. case JVM_SIGNATURE_INT : {
  699. jint* i = (jint*)addr;
  700. writer->write_u4((u4)*i);
  701. break;
  702. }
  703. case JVM_SIGNATURE_LONG : {
  704. jlong* l = (jlong*)addr;
  705. writer->write_u8((u8)*l);
  706. break;
  707. }
  708. case JVM_SIGNATURE_BOOLEAN : {
  709. jboolean* b = (jboolean*)addr;
  710. writer->write_u1((u1)*b);
  711. break;
  712. }
  713. default : ShouldNotReachHere();
  714. }
  715. }
  716. // returns the size of the instance of the given class
  717. u4 DumperSupport::instance_size(klassOop k) {
  718. HandleMark hm;
  719. instanceKlassHandle ikh = instanceKlassHandle(Thread::current(), k);
  720. int size = 0;
  721. for (FieldStream fld(ikh, false, false); !fld.eos(); fld.next()) {
  722. if (!fld.access_flags().is_static()) {
  723. Symbol* sig = fld.signature();
  724. switch (sig->byte_at(0)) {
  725. case JVM_SIGNATURE_CLASS :
  726. case JVM_SIGNATURE_ARRAY : size += oopSize; break;
  727. case JVM_SIGNATURE_BYTE :
  728. case JVM_SIGNATURE_BOOLEAN : size += 1; break;
  729. case JVM_SIGNATURE_CHAR :
  730. case JVM_SIGNATURE_SHORT : size += 2; break;
  731. case JVM_SIGNATURE_INT :
  732. case JVM_SIGNATURE_FLOAT : size += 4; break;
  733. case JVM_SIGNATURE_LONG :
  734. case JVM_SIGNATURE_DOUBLE : size += 8; break;
  735. default : ShouldNotReachHere();
  736. }
  737. }
  738. }
  739. return (u4)size;
  740. }
  741. // dumps static fields of the given class
  742. void DumperSupport::dump_static_fields(DumpWriter* writer, klassOop k) {
  743. HandleMark hm;
  744. instanceKlassHandle ikh = instanceKlassHandle(Thread::current(), k);
  745. // pass 1 - count the static fields
  746. u2 field_count = 0;
  747. for (FieldStream fldc(ikh, true, true); !fldc.eos(); fldc.next()) {
  748. if (fldc.access_flags().is_static()) field_count++;
  749. }
  750. writer->write_u2(field_count);
  751. // pass 2 - dump the field descriptors and raw values
  752. for (FieldStream fld(ikh, true, true); !fld.eos(); fld.next()) {
  753. if (fld.access_flags().is_static()) {
  754. Symbol* sig = fld.signature();
  755. writer->write_symbolID(fld.name()); // name
  756. writer->write_u1(sig2tag(sig)); // type
  757. // value
  758. int offset = fld.offset();
  759. address addr = (address)ikh->java_mirror() + offset;
  760. dump_field_value(writer, sig->byte_at(0), addr);
  761. }
  762. }
  763. }
  764. // dump the raw values of the instance fields of the given object
  765. void DumperSupport::dump_instance_fields(DumpWriter* writer, oop o) {
  766. HandleMark hm;
  767. instanceKlassHandle ikh = instanceKlassHandle(Thread::current(), o->klass());
  768. for (FieldStream fld(ikh, false, false); !fld.eos(); fld.next()) {
  769. if (!fld.access_flags().is_static()) {
  770. Symbol* sig = fld.signature();
  771. address addr = (address)o + fld.offset();
  772. dump_field_value(writer, sig->byte_at(0), addr);
  773. }
  774. }
  775. }
  776. // dumps the definition of the instance fields for a given class
  777. void DumperSupport::dump_instance_field_descriptors(DumpWriter* writer, klassOop k) {
  778. HandleMark hm;
  779. instanceKlassHandle ikh = instanceKlassHandle(Thread::current(), k);
  780. // pass 1 - count the instance fields
  781. u2 field_count = 0;
  782. for (FieldStream fldc(ikh, true, true); !fldc.eos(); fldc.next()) {
  783. if (!fldc.access_flags().is_static()) field_count++;
  784. }
  785. writer->write_u2(field_count);
  786. // pass 2 - dump the field descriptors
  787. for (FieldStream fld(ikh, true, true); !fld.eos(); fld.next()) {
  788. if (!fld.access_flags().is_static()) {
  789. Symbol* sig = fld.signature();
  790. writer->write_symbolID(fld.name()); // name
  791. writer->write_u1(sig2tag(sig)); // type
  792. }
  793. }
  794. }
  795. // creates HPROF_GC_INSTANCE_DUMP record for the given object
  796. void DumperSupport::dump_instance(DumpWriter* writer, oop o) {
  797. klassOop k = o->klass();
  798. writer->write_u1(HPROF_GC_INSTANCE_DUMP);
  799. writer->write_objectID(o);
  800. writer->write_u4(STACK_TRACE_ID);
  801. // class ID
  802. writer->write_classID(Klass::cast(k));
  803. // number of bytes that follow
  804. writer->write_u4(instance_size(k) );
  805. // field values
  806. dump_instance_fields(writer, o);
  807. }
  808. // creates HPROF_GC_CLASS_DUMP record for the given class and each of
  809. // its array classes
  810. void DumperSupport::dump_class_and_array_classes(DumpWriter* writer, klassOop k) {
  811. Klass* klass = Klass::cast(k);
  812. assert(klass->oop_is_instance(), "not an instanceKlass");
  813. instanceKlass* ik = (instanceKlass*)klass;
  814. writer->write_u1(HPROF_GC_CLASS_DUMP);
  815. // class ID
  816. writer->write_classID(ik);
  817. writer->write_u4(STACK_TRACE_ID);
  818. // super class ID
  819. klassOop java_super = ik->java_super();
  820. if (java_super == NULL) {
  821. writer->write_objectID(NULL);
  822. } else {
  823. writer->write_classID(Klass::cast(java_super));
  824. }
  825. writer->write_objectID(ik->class_loader());
  826. writer->write_objectID(ik->signers());
  827. writer->write_objectID(ik->protection_domain());
  828. // reserved
  829. writer->write_objectID(NULL);
  830. writer->write_objectID(NULL);
  831. // instance size
  832. writer->write_u4(DumperSupport::instance_size(k));
  833. // size of constant pool - ignored by HAT 1.1
  834. writer->write_u2(0);
  835. // number of static fields
  836. dump_static_fields(writer, k);
  837. // description of instance fields
  838. dump_instance_field_descriptors(writer, k);
  839. // array classes
  840. k = klass->array_klass_or_null();
  841. while (k != NULL) {
  842. Klass* klass = Klass::cast(k);
  843. assert(klass->oop_is_objArray(), "not an objArrayKlass");
  844. writer->write_u1(HPROF_GC_CLASS_DUMP);
  845. writer->write_classID(klass);
  846. writer->write_u4(STACK_TRACE_ID);
  847. // super class of array classes is java.lang.Object
  848. java_super = klass->java_super();
  849. assert(java_super != NULL, "checking");
  850. writer->write_classID(Klass::cast(java_super));
  851. writer->write_objectID(ik->class_loader());
  852. writer->write_objectID(ik->signers());
  853. writer->write_objectID(ik->protection_domain());
  854. writer->write_objectID(NULL); // reserved
  855. writer->write_objectID(NULL);
  856. writer->write_u4(0); // instance size
  857. writer->write_u2(0); // constant pool
  858. writer->write_u2(0); // static fields
  859. writer->write_u2(0); // instance fields
  860. // get the array class for the next rank
  861. k = klass->array_klass_or_null();
  862. }
  863. }
  864. // creates HPROF_GC_CLASS_DUMP record for a given primitive array
  865. // class (and each multi-dimensional array class too)
  866. void DumperSupport::dump_basic_type_array_class(DumpWriter* writer, klassOop k) {
  867. // array classes
  868. while (k != NULL) {
  869. Klass* klass = Klass::cast(k);
  870. writer->write_u1(HPROF_GC_CLASS_DUMP);
  871. writer->write_classID(klass);
  872. writer->write_u4(STACK_TRACE_ID);
  873. // super class of array classes is java.lang.Object
  874. klassOop java_super = klass->java_super();
  875. assert(java_super != NULL, "checking");
  876. writer->write_classID(Klass::cast(java_super));
  877. writer->write_objectID(NULL); // loader
  878. writer->write_objectID(NULL); // signers
  879. writer->write_objectID(NULL); // protection domain
  880. writer->write_objectID(NULL); // reserved
  881. writer->write_objectID(NULL);
  882. writer->write_u4(0); // instance size
  883. writer->write_u2(0); // constant pool
  884. writer->write_u2(0); // static fields
  885. writer->write_u2(0); // instance fields
  886. // get the array class for the next rank
  887. k = klass->array_klass_or_null();
  888. }
  889. }
  890. // creates HPROF_GC_OBJ_ARRAY_DUMP record for the given object array
  891. void DumperSupport::dump_object_array(DumpWriter* writer, objArrayOop array) {
  892. // filter this
  893. if (array->klass() == Universe::systemObjArrayKlassObj()) return;
  894. writer->write_u1(HPROF_GC_OBJ_ARRAY_DUMP);
  895. writer->write_objectID(array);
  896. writer->write_u4(STACK_TRACE_ID);
  897. writer->write_u4((u4)array->length());
  898. // array class ID
  899. writer->write_classID(Klass::cast(array->klass()));
  900. // [id]* elements
  901. for (int index=0; index<array->length(); index++) {
  902. oop o = array->obj_at(index);
  903. writer->write_objectID(o);
  904. }
  905. }
  906. #define WRITE_ARRAY(Array, Type, Size) \
  907. for (int i=0; i<Array->length(); i++) { writer->write_##Size((Size)array->Type##_at(i)); }
  908. // creates HPROF_GC_PRIM_ARRAY_DUMP record for the given type array
  909. void DumperSupport::dump_prim_array(DumpWriter* writer, typeArrayOop array) {
  910. BasicType type = typeArrayKlass::cast(array->klass())->element_type();
  911. writer->write_u1(HPROF_GC_PRIM_ARRAY_DUMP);
  912. writer->write_objectID(array);
  913. writer->write_u4(STACK_TRACE_ID);
  914. writer->write_u4((u4)array->length());
  915. writer->write_u1(type2tag(type));
  916. // nothing to copy
  917. if (array->length() == 0) {
  918. return;
  919. }
  920. // If the byte ordering is big endian then we can copy most types directly
  921. int length_in_bytes = array->length() * type2aelembytes(type);
  922. assert(length_in_bytes > 0, "nothing to copy");
  923. switch (type) {
  924. case T_INT : {
  925. if (Bytes::is_Java_byte_ordering_different()) {
  926. WRITE_ARRAY(array, int, u4);
  927. } else {
  928. writer->write_raw((void*)(array->int_at_addr(0)), length_in_bytes);
  929. }
  930. break;
  931. }
  932. case T_BYTE : {
  933. writer->write_raw((void*)(array->byte_at_addr(0)), length_in_bytes);
  934. break;
  935. }
  936. case T_CHAR : {
  937. if (Bytes::is_Java_byte_ordering_different()) {
  938. WRITE_ARRAY(array, char, u2);
  939. } else {
  940. writer->write_raw((void*)(array->char_at_addr(0)), length_in_bytes);
  941. }
  942. break;
  943. }
  944. case T_SHORT : {
  945. if (Bytes::is_Java_byte_ordering_different()) {
  946. WRITE_ARRAY(array, short, u2);
  947. } else {
  948. writer->write_raw((void*)(array->short_at_addr(0)), length_in_bytes);
  949. }
  950. break;
  951. }
  952. case T_BOOLEAN : {
  953. if (Bytes::is_Java_byte_ordering_different()) {
  954. WRITE_ARRAY(array, bool, u1);
  955. } else {
  956. writer->write_raw((void*)(array->bool_at_addr(0)), length_in_bytes);
  957. }
  958. break;
  959. }
  960. case T_LONG : {
  961. if (Bytes::is_Java_byte_ordering_different()) {
  962. WRITE_ARRAY(array, long, u8);
  963. } else {
  964. writer->write_raw((void*)(array->long_at_addr(0)), length_in_bytes);
  965. }
  966. break;
  967. }
  968. // handle float/doubles in a special value to ensure than NaNs are
  969. // written correctly. TO DO: Check if we can avoid this on processors that
  970. // use IEEE 754.
  971. case T_FLOAT : {
  972. for (int i=0; i<array->length(); i++) {
  973. dump_float( writer, array->float_at(i) );
  974. }
  975. break;
  976. }
  977. case T_DOUBLE : {
  978. for (int i=0; i<array->length(); i++) {
  979. dump_double( writer, array->double_at(i) );
  980. }
  981. break;
  982. }
  983. default : ShouldNotReachHere();
  984. }
  985. }
  986. // create a HPROF_FRAME record of the given methodOop and bci
  987. void DumperSupport::dump_stack_frame(DumpWriter* writer,
  988. int frame_serial_num,
  989. int class_serial_num,
  990. methodOop m,
  991. int bci) {
  992. int line_number;
  993. if (m->is_native()) {
  994. line_number = -3; // native frame
  995. } else {
  996. line_number = m->line_number_from_bci(bci);
  997. }
  998. write_header(writer, HPROF_FRAME, 4*oopSize + 2*sizeof(u4));
  999. writer->write_id(frame_serial_num); // frame serial number
  1000. writer->write_symbolID(m->name()); // method's name
  1001. writer->write_symbolID(m->signature()); // method's signature
  1002. assert(Klass::cast(m->method_holder())->oop_is_instance(), "not instanceKlass");
  1003. writer->write_symbolID(instanceKlass::cast(m->method_holder())->source_file_name()); // source file name
  1004. writer->write_u4(class_serial_num); // class serial number
  1005. writer->write_u4((u4) line_number); // line number
  1006. }
  1007. // Support class used to generate HPROF_UTF8 records from the entries in the
  1008. // SymbolTable.
  1009. class SymbolTableDumper : public SymbolClosure {
  1010. private:
  1011. DumpWriter* _writer;
  1012. DumpWriter* writer() const { return _writer; }
  1013. public:
  1014. SymbolTableDumper(DumpWriter* writer) { _writer = writer; }
  1015. void do_symbol(Symbol** p);
  1016. };
  1017. void SymbolTableDumper::do_symbol(Symbol** p) {
  1018. ResourceMark rm;
  1019. Symbol* sym = load_symbol(p);
  1020. int len = sym->utf8_length();
  1021. if (len > 0) {
  1022. char* s = sym->as_utf8();
  1023. DumperSupport::write_header(writer(), HPROF_UTF8, oopSize + len);
  1024. writer()->write_symbolID(sym);
  1025. writer()->write_raw(s, len);
  1026. }
  1027. }
  1028. // Support class used to generate HPROF_GC_ROOT_JNI_LOCAL records
  1029. class JNILocalsDumper : public OopClosure {
  1030. private:
  1031. DumpWriter* _writer;
  1032. u4 _thread_serial_num;
  1033. int _frame_num;
  1034. DumpWriter* writer() const { return _writer; }
  1035. public:
  1036. JNILocalsDumper(DumpWriter* writer, u4 thread_serial_num) {
  1037. _writer = writer;
  1038. _thread_serial_num = thread_serial_num;
  1039. _frame_num = -1; // default - empty stack
  1040. }
  1041. void set_frame_number(int n) { _frame_num = n; }
  1042. void do_oop(oop* obj_p);
  1043. void do_oop(narrowOop* obj_p) { ShouldNotReachHere(); }
  1044. };
  1045. void JNILocalsDumper::do_oop(oop* obj_p) {
  1046. // ignore null or deleted handles
  1047. oop o = *obj_p;
  1048. if (o != NULL && o != JNIHandles::deleted_handle()) {
  1049. writer()->write_u1(HPROF_GC_ROOT_JNI_LOCAL);
  1050. writer()->write_objectID(o);
  1051. writer()->write_u4(_thread_serial_num);
  1052. writer()->write_u4((u4)_frame_num);
  1053. }
  1054. }
  1055. // Support class used to generate HPROF_GC_ROOT_JNI_GLOBAL records
  1056. class JNIGlobalsDumper : public OopClosure {
  1057. private:
  1058. DumpWriter* _writer;
  1059. DumpWriter* writer() const { return _writer; }
  1060. public:
  1061. JNIGlobalsDumper(DumpWriter* writer) {
  1062. _writer = writer;
  1063. }
  1064. void do_oop(oop* obj_p);
  1065. void do_oop(narrowOop* obj_p) { ShouldNotReachHere(); }
  1066. };
  1067. void JNIGlobalsDumper::do_oop(oop* obj_p) {
  1068. oop o = *obj_p;
  1069. // ignore these
  1070. if (o == NULL || o == JNIHandles::deleted_handle()) return;
  1071. // we ignore global ref to symbols and other internal objects
  1072. if (o->is_instance() || o->is_objArray() || o->is_typeArray()) {
  1073. writer()->write_u1(HPROF_GC_ROOT_JNI_GLOBAL);
  1074. writer()->write_objectID(o);
  1075. writer()->write_objectID((oopDesc*)obj_p); // global ref ID
  1076. }
  1077. };
  1078. // Support class used to generate HPROF_GC_ROOT_MONITOR_USED records
  1079. class MonitorUsedDumper : public OopClosure {
  1080. private:
  1081. DumpWriter* _writer;
  1082. DumpWriter* writer() const { return _writer; }
  1083. public:
  1084. MonitorUsedDumper(DumpWriter* writer) {
  1085. _writer = writer;
  1086. }
  1087. void do_oop(oop* obj_p) {
  1088. writer()->write_u1(HPROF_GC_ROOT_MONITOR_USED);
  1089. writer()->write_objectID(*obj_p);
  1090. }
  1091. void do_oop(narrowOop* obj_p) { ShouldNotReachHere(); }
  1092. };
  1093. // Support class used to generate HPROF_GC_ROOT_STICKY_CLASS records
  1094. class StickyClassDumper : public OopClosure {
  1095. private:
  1096. DumpWriter* _writer;
  1097. DumpWriter* writer() const { return _writer; }
  1098. public:
  1099. StickyClassDumper(DumpWriter* writer) {
  1100. _writer = writer;
  1101. }
  1102. void do_oop(oop* obj_p);
  1103. void do_oop(narrowOop* obj_p) { ShouldNotReachHere(); }
  1104. };
  1105. void StickyClassDumper::do_oop(oop* obj_p) {
  1106. if (*obj_p != NULL) {
  1107. oop o = *obj_p;
  1108. if (o->is_klass()) {
  1109. klassOop k = klassOop(o);
  1110. if (Klass::cast(k)->oop_is_instance()) {
  1111. instanceKlass* ik = instanceKlass::cast(k);
  1112. writer()->write_u1(HPROF_GC_ROOT_STICKY_CLASS);
  1113. writer()->write_classID(ik);
  1114. }
  1115. }
  1116. }
  1117. }
  1118. class VM_HeapDumper;
  1119. // Support class using when iterating over the heap.
  1120. class HeapObjectDumper : public ObjectClosure {
  1121. private:
  1122. VM_HeapDumper* _dumper;
  1123. DumpWriter* _writer;
  1124. VM_HeapDumper* dumper() { return _dumper; }
  1125. DumpWriter* writer() { return _writer; }
  1126. // used to indicate that a record has been writen
  1127. void mark_end_of_record();
  1128. public:
  1129. HeapObjectDumper(VM_HeapDumper* dumper, DumpWriter* writer) {
  1130. _dumper = dumper;
  1131. _writer = writer;
  1132. }
  1133. // called for each object in the heap
  1134. void do_object(oop o);
  1135. };
  1136. void HeapObjectDumper::do_object(oop o) {
  1137. // hide the sentinel for deleted handles
  1138. if (o == JNIHandles::deleted_handle()) return;
  1139. // ignore KlassKlass objects
  1140. if (o->is_klass()) return;
  1141. // skip classes as these emitted as HPROF_GC_CLASS_DUMP records
  1142. if (o->klass() == SystemDictionary::Class_klass()) {
  1143. if (!java_lang_Class::is_primitive(o)) {
  1144. return;
  1145. }
  1146. }
  1147. // create a HPROF_GC_INSTANCE record for each object
  1148. if (o->is_instance()) {
  1149. DumperSupport::dump_instance(writer(), o);
  1150. mark_end_of_record();
  1151. } else {
  1152. // create a HPROF_GC_OBJ_ARRAY_DUMP record for each object array
  1153. if (o->is_objArray()) {
  1154. DumperSupport::dump_object_array(writer(), objArrayOop(o));
  1155. mark_end_of_record();
  1156. } else {
  1157. // create a HPROF_GC_PRIM_ARRAY_DUMP record for each type array
  1158. if (o->is_typeArray()) {
  1159. DumperSupport::dump_prim_array(writer(), typeArrayOop(o));
  1160. mark_end_of_record();
  1161. }
  1162. }
  1163. }
  1164. }
  1165. // The VM operation that performs the heap dump
  1166. class VM_HeapDumper : public VM_GC_Operation {
  1167. private:
  1168. static VM_HeapDumper* _global_dumper;
  1169. static DumpWriter* _global_writer;
  1170. DumpWriter* _local_writer;
  1171. JavaThread* _oome_thread;
  1172. methodOop _oome_constructor;
  1173. bool _gc_before_heap_dump;
  1174. bool _is_segmented_dump;
  1175. jlong _dump_start;
  1176. GrowableArray<Klass*>* _klass_map;
  1177. ThreadStackTrace** _stack_traces;
  1178. int _num_threads;
  1179. // accessors and setters
  1180. static VM_HeapDumper* dumper() { assert(_global_dumper != NULL, "Error"); return _global_dumper; }
  1181. static DumpWriter* writer() { assert(_global_writer != NULL, "Error"); return _global_writer; }
  1182. void set_global_dumper() {
  1183. assert(_global_dumper == NULL, "Error");
  1184. _global_dumper = this;
  1185. }
  1186. void set_global_writer() {
  1187. assert(_global_writer == NULL, "Error");
  1188. _global_writer = _local_writer;
  1189. }
  1190. void clear_global_dumper() { _global_dumper = NULL; }
  1191. void clear_global_writer() { _global_writer = NULL; }
  1192. bool is_segmented_dump() const { return _is_segmented_dump; }
  1193. void set_segmented_dump() { _is_segmented_dump = true; }
  1194. jlong dump_start() const { return _dump_start; }
  1195. void set_dump_start(jlong pos);
  1196. bool skip_operation() const;
  1197. // writes a HPROF_LOAD_CLASS record
  1198. static void do_load_class(klassOop k);
  1199. // writes a HPROF_GC_CLASS_DUMP record for the given class
  1200. // (and each array class too)
  1201. static void do_class_dump(klassOop k);
  1202. // writes a HPROF_GC_CLASS_DUMP records for a given basic type
  1203. // array (and each multi-dimensional array too)
  1204. static void do_basic_type_array_class_dump(klassOop k);
  1205. // HPROF_GC_ROOT_THREAD_OBJ records
  1206. int do_thread(JavaThread* thread, u4 thread_serial_num);
  1207. void do_threads();
  1208. void add_class_serial_number(Klass* k, int serial_num) {
  1209. _klass_map->at_put_grow(serial_num, k);
  1210. }
  1211. // HPROF_TRACE and HPROF_FRAME records
  1212. void dump_stack_traces();
  1213. // writes a HPROF_HEAP_DUMP or HPROF_HEAP_DUMP_SEGMENT record
  1214. void write_dump_header();
  1215. // fixes up the length of the current dump record
  1216. void write_current_dump_record_length();
  1217. // fixes up the current dump record )and writes HPROF_HEAP_DUMP_END
  1218. // record in the case of a segmented heap dump)
  1219. void end_of_dump();
  1220. public:
  1221. VM_HeapDumper(DumpWriter* writer, bool gc_before_heap_dump, bool oome) :
  1222. VM_GC_Operation(0 /* total collections, dummy, ignored */,
  1223. GCCause::_heap_dump /* GC Cause */,
  1224. 0 /* total full collections, dummy, ignored */,
  1225. gc_before_heap_dump) {
  1226. _local_writer = writer;
  1227. _gc_before_heap_dump = gc_before_heap_dump;
  1228. _is_segmented_dump = false;
  1229. _dump_start = (jlong)-1;
  1230. _klass_map = new (ResourceObj::C_HEAP) GrowableArray<Klass*>(INITIAL_CLASS_COUNT, true);
  1231. _stack_traces = NULL;
  1232. _num_threads = 0;
  1233. if (oome) {
  1234. assert(!Thread::current()->is_VM_thread(), "Dump from OutOfMemoryError cannot be called by the VMThread");
  1235. // get OutOfMemoryError zero-parameter constructor
  1236. instanceKlass* oome_ik = instanceKlass::cast(SystemDictionary::OutOfMemoryError_klass());
  1237. _oome_constructor = oome_ik->find_method(vmSymbols::object_initializer_name(),
  1238. vmSymbols::void_method_signature());
  1239. // get thread throwing OOME when generating the heap dump at OOME
  1240. _oome_thread = JavaThread::current();
  1241. } else {
  1242. _oome_thread = NULL;
  1243. _oome_constructor = NULL;
  1244. }
  1245. }
  1246. ~VM_HeapDumper() {
  1247. if (_stack_traces != NULL) {
  1248. for (int i=0; i < _num_threads; i++) {
  1249. delete _stack_traces[i];
  1250. }
  1251. FREE_C_HEAP_ARRAY(ThreadStackTrace*, _stack_traces);
  1252. }
  1253. delete _klass_map;
  1254. }
  1255. VMOp_Type type() const { return VMOp_HeapDumper; }
  1256. // used to mark sub-record boundary
  1257. void check_segment_length();
  1258. void doit();
  1259. };
  1260. VM_HeapDumper* VM_HeapDumper::_global_dumper = NULL;
  1261. DumpWriter* VM_HeapDumper::_global_writer = NULL;
  1262. bool VM_HeapDumper::skip_operation() const {
  1263. return false;
  1264. }
  1265. // sets the dump starting position
  1266. void VM_HeapDumper::set_dump_start(jlong pos) {
  1267. _dump_start = pos;
  1268. }
  1269. // writes a HPROF_HEAP_DUMP or HPROF_HEAP_DUMP_SEGMENT record
  1270. void VM_HeapDumper::write_dump_header() {
  1271. if (writer()->is_open()) {
  1272. if (is_segmented_dump()) {
  1273. writer()->write_u1(HPROF_HEAP_DUMP_SEGMENT);
  1274. } else {
  1275. writer()->write_u1(HPROF_HEAP_DUMP);
  1276. }
  1277. writer()->write_u4(0); // current ticks
  1278. // record the starting position for the dump (its length will be fixed up later)
  1279. set_dump_start(writer()->current_offset());
  1280. writer()->write_u4(0);
  1281. }
  1282. }
  1283. // fixes up the length of the current dump record
  1284. void VM_HeapDumper::write_current_dump_record_length() {
  1285. if (writer()->is_open()) {
  1286. assert(dump_start() >= 0, "no dump start recorded");
  1287. // calculate the size of the dump record
  1288. jlong dump_end = writer()->current_offset();
  1289. jlong dump_len = (dump_end - dump_start() - 4);
  1290. // record length must fit in a u4
  1291. if (dump_len > (jlong)(4L*(jlong)G)) {
  1292. warning("record is too large");
  1293. }
  1294. // seek to the dump start and fix-up the length
  1295. writer()->seek_to_offset(dump_start());
  1296. writer()->write_u4((u4)dump_len);
  1297. // adjust the total size written to keep the bytes written correct.
  1298. writer()->adjust_bytes_written(-((long) sizeof(u4)));
  1299. // seek to dump end so we can continue
  1300. writer()->seek_to_offset(dump_end);
  1301. // no current dump record
  1302. set_dump_start((jlong)-1);
  1303. }
  1304. }
  1305. // used on a sub-record boundary to check if we need to start a
  1306. // new segment.
  1307. void VM_HeapDumper::check_segment_length() {
  1308. if (writer()->is_open()) {
  1309. if (is_segmented_dump()) {
  1310. // don't use current_offset that would be too expensive on a per record basis
  1311. jlong dump_end = writer()->bytes_written() + writer()->bytes_unwritten();
  1312. assert(dump_end == writer()->current_offset(), "checking");
  1313. jlong dump_len = (dump_end - dump_start() - 4);
  1314. assert(dump_len >= 0 && dump_len <= max_juint, "bad dump length");
  1315. if (dump_len > (jlong)HeapDumpSegmentSize) {
  1316. write_current_dump_record_length();
  1317. write_dump_header();
  1318. }
  1319. }
  1320. }
  1321. }
  1322. // fixes up the current dump record )and writes HPROF_HEAP_DUMP_END
  1323. // record in the case of a segmented heap dump)
  1324. void VM_HeapDumper::end_of_dump() {
  1325. if (writer()->is_open()) {
  1326. write_current_dump_record_length();
  1327. // for segmented dump we write the end record
  1328. if (is_segmented_dump()) {
  1329. writer()->write_u1(HPROF_HEAP_DUMP_END);
  1330. writer()->write_u4(0);
  1331. writer()->write_u4(0);
  1332. }
  1333. }
  1334. }
  1335. // marks sub-record boundary
  1336. void HeapObjectDumper::mark_end_of_record() {
  1337. dumper()->check_segment_length();
  1338. }
  1339. // writes a HPROF_LOAD_CLASS record for the class (and each of its
  1340. // array classes)
  1341. void VM_HeapDumper::do_load_class(klassOop k) {
  1342. static u4 class_serial_num = 0;
  1343. // len of HPROF_LOAD_CLASS record
  1344. u4 remaining = 2*oopSize + 2*sizeof(u4);
  1345. // write a HPROF_LOAD_CLASS for the class and each array class
  1346. do {
  1347. DumperSupport::write_header(writer(), HPROF_LOAD_CLASS, remaining);
  1348. // class serial number is just a number
  1349. writer()->write_u4(++class_serial_num);
  1350. // class ID
  1351. Klass* klass = Klass::cast(k);
  1352. writer()->write_classID(klass);
  1353. // add the klassOop and class serial number pair
  1354. dumper()->add_class_serial_number(klass, class_serial_num);
  1355. writer()->write_u4(STACK_TRACE_ID);
  1356. // class name ID
  1357. Symbol* name = klass->name()