Skip to content

Commit 11c073b

Browse files
committedJan 8, 2020
8234510: Remove file seeking requirement for writing a heap dump
Reviewed-by: clanger, rrich
1 parent ea83ced commit 11c073b

File tree

1 file changed

+231
-258
lines changed

1 file changed

+231
-258
lines changed
 

‎src/hotspot/share/services/heapDumper.cpp

+231-258
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,9 @@ enum {
381381
class DumpWriter : public StackObj {
382382
private:
383383
enum {
384-
io_buffer_size = 8*M
384+
io_buffer_max_size = 8*M,
385+
io_buffer_min_size = 64*K,
386+
dump_segment_header_size = 9
385387
};
386388

387389
int _fd; // file descriptor (-1 if dump file not open)
@@ -391,13 +393,19 @@ class DumpWriter : public StackObj {
391393
size_t _size;
392394
size_t _pos;
393395

394-
jlong _dump_start;
396+
bool _in_dump_segment; // Are we currently in a dump segment?
397+
bool _is_huge_sub_record; // Are we writing a sub-record larger than the buffer size?
398+
DEBUG_ONLY(size_t _sub_record_left;) // The bytes not written for the current sub-record.
399+
DEBUG_ONLY(bool _sub_record_ended;) // True if we have called the end_sub_record().
395400

396401
char* _error; // error message when I/O fails
397402

398403
void set_file_descriptor(int fd) { _fd = fd; }
399404
int file_descriptor() const { return _fd; }
400405

406+
bool is_open() const { return file_descriptor() >= 0; }
407+
void flush();
408+
401409
char* buffer() const { return _buffer; }
402410
size_t buffer_size() const { return _size; }
403411
size_t position() const { return _pos; }
@@ -413,28 +421,12 @@ class DumpWriter : public StackObj {
413421
~DumpWriter();
414422

415423
void close();
416-
bool is_open() const { return file_descriptor() >= 0; }
417-
void flush();
418-
419-
jlong dump_start() const { return _dump_start; }
420-
void set_dump_start(jlong pos);
421-
julong current_record_length();
422424

423425
// total number of bytes written to the disk
424426
julong bytes_written() const { return _bytes_written; }
425427

426-
// adjust the number of bytes written to disk (used to keep the count
427-
// of the number of bytes written in case of rewrites)
428-
void adjust_bytes_written(jlong n) { _bytes_written += n; }
429-
430-
// number of (buffered) bytes as yet unwritten to the dump file
431-
size_t bytes_unwritten() const { return position(); }
432-
433428
char* error() const { return _error; }
434429

435-
jlong current_offset();
436-
void seek_to_offset(jlong pos);
437-
438430
// writer functions
439431
void write_raw(void* s, size_t len);
440432
void write_u1(u1 x) { write_raw((void*)&x, 1); }
@@ -445,38 +437,43 @@ class DumpWriter : public StackObj {
445437
void write_symbolID(Symbol* o);
446438
void write_classID(Klass* k);
447439
void write_id(u4 x);
440+
441+
// Start a new sub-record. Starts a new heap dump segment if needed.
442+
void start_sub_record(u1 tag, u4 len);
443+
// Ends the current sub-record.
444+
void end_sub_record();
445+
// Finishes the current dump segment if not already finished.
446+
void finish_dump_segment();
448447
};
449448

450-
DumpWriter::DumpWriter(const char* path) {
449+
DumpWriter::DumpWriter(const char* path) : _fd(-1), _bytes_written(0), _pos(0),
450+
_in_dump_segment(false), _error(NULL) {
451451
// try to allocate an I/O buffer of io_buffer_size. If there isn't
452452
// sufficient memory then reduce size until we can allocate something.
453-
_size = io_buffer_size;
453+
_size = io_buffer_max_size;
454454
do {
455455
_buffer = (char*)os::malloc(_size, mtInternal);
456456
if (_buffer == NULL) {
457457
_size = _size >> 1;
458458
}
459-
} while (_buffer == NULL && _size > 0);
460-
assert((_size > 0 && _buffer != NULL) || (_size == 0 && _buffer == NULL), "sanity check");
461-
_pos = 0;
462-
_error = NULL;
463-
_bytes_written = 0L;
464-
_dump_start = (jlong)-1;
465-
_fd = os::create_binary_file(path, false); // don't replace existing file
466-
467-
// if the open failed we record the error
468-
if (_fd < 0) {
469-
_error = (char*)os::strdup(os::strerror(errno));
459+
} while (_buffer == NULL && _size >= io_buffer_min_size);
460+
461+
if (_buffer == NULL) {
462+
set_error("Could not allocate buffer memory for heap dump");
463+
} else {
464+
_fd = os::create_binary_file(path, false); // don't replace existing file
465+
466+
// if the open failed we record the error
467+
if (_fd < 0) {
468+
set_error(os::strerror(errno));
469+
}
470470
}
471471
}
472472

473473
DumpWriter::~DumpWriter() {
474-
// flush and close dump file
475-
if (is_open()) {
476-
close();
477-
}
478-
if (_buffer != NULL) os::free(_buffer);
479-
if (_error != NULL) os::free(_error);
474+
close();
475+
os::free(_buffer);
476+
os::free(_error);
480477
}
481478

482479
// closes dump file (if open)
@@ -489,29 +486,13 @@ void DumpWriter::close() {
489486
}
490487
}
491488

492-
// sets the dump starting position
493-
void DumpWriter::set_dump_start(jlong pos) {
494-
_dump_start = pos;
495-
}
496-
497-
julong DumpWriter::current_record_length() {
498-
if (is_open()) {
499-
// calculate the size of the dump record
500-
julong dump_end = bytes_written() + bytes_unwritten();
501-
assert(dump_end == (size_t)current_offset(), "checking");
502-
julong dump_len = dump_end - dump_start() - 4;
503-
return dump_len;
504-
}
505-
return 0;
506-
}
507-
508489
// write directly to the file
509490
void DumpWriter::write_internal(void* s, size_t len) {
510491
if (is_open()) {
511492
const char* pos = (char*)s;
512493
ssize_t n = 0;
513494
while (len > 0) {
514-
uint tmp = (uint)MIN2(len, (size_t)UINT_MAX);
495+
uint tmp = (uint)MIN2(len, (size_t)INT_MAX);
515496
n = os::write(file_descriptor(), pos, tmp);
516497

517498
if (n < 0) {
@@ -531,53 +512,30 @@ void DumpWriter::write_internal(void* s, size_t len) {
531512

532513
// write raw bytes
533514
void DumpWriter::write_raw(void* s, size_t len) {
534-
if (is_open()) {
535-
// flush buffer to make room
536-
if ((position() + len) >= buffer_size()) {
537-
flush();
538-
}
515+
assert(!_in_dump_segment || (_sub_record_left >= len), "sub-record too large");
516+
debug_only(_sub_record_left -= len);
517+
518+
// flush buffer to make room
519+
if (len > buffer_size() - position()) {
520+
assert(!_in_dump_segment || _is_huge_sub_record, "Cannot overflow in non-huge sub-record.");
521+
flush();
539522

540-
// buffer not available or too big to buffer it
541-
if ((buffer() == NULL) || (len >= buffer_size())) {
523+
// If larger than the buffer, just write it directly.
524+
if (len > buffer_size()) {
542525
write_internal(s, len);
543-
} else {
544-
// Should optimize this for u1/u2/u4/u8 sizes.
545-
memcpy(buffer() + position(), s, len);
546-
set_position(position() + len);
526+
527+
return;
547528
}
548529
}
530+
531+
memcpy(buffer() + position(), s, len);
532+
set_position(position() + len);
549533
}
550534

551535
// flush any buffered bytes to the file
552536
void DumpWriter::flush() {
553-
if (is_open() && position() > 0) {
554-
write_internal(buffer(), position());
555-
set_position(0);
556-
}
557-
}
558-
559-
jlong DumpWriter::current_offset() {
560-
if (is_open()) {
561-
// the offset is the file offset plus whatever we have buffered
562-
jlong offset = os::current_file_offset(file_descriptor());
563-
assert(offset >= 0, "lseek failed");
564-
return offset + position();
565-
} else {
566-
return (jlong)-1;
567-
}
568-
}
569-
570-
void DumpWriter::seek_to_offset(jlong off) {
571-
assert(off >= 0, "bad offset");
572-
573-
// need to flush before seeking
574-
flush();
575-
576-
// may be closed due to I/O error
577-
if (is_open()) {
578-
jlong n = os::seek_to_file_offset(file_descriptor(), off);
579-
assert(n >= 0, "lseek failed");
580-
}
537+
write_internal(buffer(), position());
538+
set_position(0);
581539
}
582540

583541
void DumpWriter::write_u2(u2 x) {
@@ -629,7 +587,58 @@ void DumpWriter::write_classID(Klass* k) {
629587
write_objectID(k->java_mirror());
630588
}
631589

590+
void DumpWriter::finish_dump_segment() {
591+
if (_in_dump_segment) {
592+
assert(_sub_record_left == 0, "Last sub-record not written completely");
593+
assert(_sub_record_ended, "sub-record must have ended");
594+
595+
// Fix up the dump segment length if we haven't written a huge sub-record last
596+
// (in which case the segment length was already set to the correct value initially).
597+
if (!_is_huge_sub_record) {
598+
assert(position() > dump_segment_header_size, "Dump segment should have some content");
599+
Bytes::put_Java_u4((address) (buffer() + 5), (u4) (position() - dump_segment_header_size));
600+
}
601+
602+
flush();
603+
_in_dump_segment = false;
604+
}
605+
}
606+
607+
void DumpWriter::start_sub_record(u1 tag, u4 len) {
608+
if (!_in_dump_segment) {
609+
if (position() > 0) {
610+
flush();
611+
assert(position() == 0, "Must be at the start");
612+
}
632613

614+
write_u1(HPROF_HEAP_DUMP_SEGMENT);
615+
write_u4(0); // timestamp
616+
// Will be fixed up later if we add more sub-records. If this is a huge sub-record,
617+
// this is already the correct length, since we don't add more sub-records.
618+
write_u4(len);
619+
_in_dump_segment = true;
620+
_is_huge_sub_record = len > buffer_size() - dump_segment_header_size;
621+
} else if (_is_huge_sub_record || (len > buffer_size() - position())) {
622+
// This object will not fit in completely or the last sub-record was huge.
623+
// Finish the current segement and try again.
624+
finish_dump_segment();
625+
start_sub_record(tag, len);
626+
627+
return;
628+
}
629+
630+
debug_only(_sub_record_left = len);
631+
debug_only(_sub_record_ended = false);
632+
633+
write_u1(tag);
634+
}
635+
636+
void DumpWriter::end_sub_record() {
637+
assert(_in_dump_segment, "must be in dump segment");
638+
assert(_sub_record_left == 0, "sub-record not written completely");
639+
assert(!_sub_record_ended, "Must not have ended yet");
640+
debug_only(_sub_record_ended = true);
641+
}
633642

634643
// Support class with a collection of functions used when dumping the heap
635644

@@ -643,6 +652,8 @@ class DumperSupport : AllStatic {
643652
static hprofTag sig2tag(Symbol* sig);
644653
// returns hprof tag for the given basic type
645654
static hprofTag type2tag(BasicType type);
655+
// Returns the size of the data to write.
656+
static u4 sig2size(Symbol* sig);
646657

647658
// returns the size of the instance of the given class
648659
static u4 instance_size(Klass* k);
@@ -653,10 +664,14 @@ class DumperSupport : AllStatic {
653664
static void dump_double(DumpWriter* writer, jdouble d);
654665
// dumps the raw value of the given field
655666
static void dump_field_value(DumpWriter* writer, char type, oop obj, int offset);
667+
// returns the size of the static fields; also counts the static fields
668+
static u4 get_static_fields_size(InstanceKlass* ik, u2& field_count);
656669
// dumps static fields of the given class
657670
static void dump_static_fields(DumpWriter* writer, Klass* k);
658671
// dump the raw values of the instance fields of the given object
659672
static void dump_instance_fields(DumpWriter* writer, oop o);
673+
// get the count of the instance fields for a given class
674+
static u2 get_instance_fields_count(InstanceKlass* ik);
660675
// dumps the definition of the instance fields for a given class
661676
static void dump_instance_field_descriptors(DumpWriter* writer, Klass* k);
662677
// creates HPROF_GC_INSTANCE_DUMP record for the given object
@@ -678,12 +693,6 @@ class DumperSupport : AllStatic {
678693
// check if we need to truncate an array
679694
static int calculate_array_max_length(DumpWriter* writer, arrayOop array, short header_size);
680695

681-
// writes a HPROF_HEAP_DUMP_SEGMENT record
682-
static void write_dump_header(DumpWriter* writer);
683-
684-
// fixes up the length of the current dump record
685-
static void write_current_dump_record_length(DumpWriter* writer);
686-
687696
// fixes up the current dump record and writes HPROF_HEAP_DUMP_END record
688697
static void end_of_dump(DumpWriter* writer);
689698

@@ -736,6 +745,22 @@ hprofTag DumperSupport::type2tag(BasicType type) {
736745
}
737746
}
738747

748+
u4 DumperSupport::sig2size(Symbol* sig) {
749+
switch (sig->char_at(0)) {
750+
case JVM_SIGNATURE_CLASS:
751+
case JVM_SIGNATURE_ARRAY: return sizeof(address);
752+
case JVM_SIGNATURE_BOOLEAN:
753+
case JVM_SIGNATURE_BYTE: return 1;
754+
case JVM_SIGNATURE_SHORT:
755+
case JVM_SIGNATURE_CHAR: return 2;
756+
case JVM_SIGNATURE_INT:
757+
case JVM_SIGNATURE_FLOAT: return 4;
758+
case JVM_SIGNATURE_LONG:
759+
case JVM_SIGNATURE_DOUBLE: return 8;
760+
default: ShouldNotReachHere(); /* to shut up compiler */ return 0;
761+
}
762+
}
763+
739764
// dump a jfloat
740765
void DumperSupport::dump_float(DumpWriter* writer, jfloat f) {
741766
if (g_isnan(f)) {
@@ -833,44 +858,26 @@ void DumperSupport::dump_field_value(DumpWriter* writer, char type, oop obj, int
833858
u4 DumperSupport::instance_size(Klass* k) {
834859
HandleMark hm;
835860
InstanceKlass* ik = InstanceKlass::cast(k);
836-
837861
u4 size = 0;
838862

839863
for (FieldStream fld(ik, false, false); !fld.eos(); fld.next()) {
840864
if (!fld.access_flags().is_static()) {
841-
Symbol* sig = fld.signature();
842-
switch (sig->char_at(0)) {
843-
case JVM_SIGNATURE_CLASS :
844-
case JVM_SIGNATURE_ARRAY : size += oopSize; break;
845-
846-
case JVM_SIGNATURE_BYTE :
847-
case JVM_SIGNATURE_BOOLEAN : size += 1; break;
848-
849-
case JVM_SIGNATURE_CHAR :
850-
case JVM_SIGNATURE_SHORT : size += 2; break;
851-
852-
case JVM_SIGNATURE_INT :
853-
case JVM_SIGNATURE_FLOAT : size += 4; break;
854-
855-
case JVM_SIGNATURE_LONG :
856-
case JVM_SIGNATURE_DOUBLE : size += 8; break;
857-
858-
default : ShouldNotReachHere();
859-
}
865+
size += sig2size(fld.signature());
860866
}
861867
}
862868
return size;
863869
}
864870

865-
// dumps static fields of the given class
866-
void DumperSupport::dump_static_fields(DumpWriter* writer, Klass* k) {
871+
u4 DumperSupport::get_static_fields_size(InstanceKlass* ik, u2& field_count) {
867872
HandleMark hm;
868-
InstanceKlass* ik = InstanceKlass::cast(k);
873+
field_count = 0;
874+
u4 size = 0;
869875

870-
// pass 1 - count the static fields
871-
u2 field_count = 0;
872876
for (FieldStream fldc(ik, true, true); !fldc.eos(); fldc.next()) {
873-
if (fldc.access_flags().is_static()) field_count++;
877+
if (fldc.access_flags().is_static()) {
878+
field_count++;
879+
size += sig2size(fldc.signature());
880+
}
874881
}
875882

876883
// Add in resolved_references which is referenced by the cpCache
@@ -879,12 +886,14 @@ void DumperSupport::dump_static_fields(DumpWriter* writer, Klass* k) {
879886
oop resolved_references = ik->constants()->resolved_references_or_null();
880887
if (resolved_references != NULL) {
881888
field_count++;
889+
size += sizeof(address);
882890

883891
// Add in the resolved_references of the used previous versions of the class
884892
// in the case of RedefineClasses
885893
InstanceKlass* prev = ik->previous_versions();
886894
while (prev != NULL && prev->constants()->resolved_references_or_null() != NULL) {
887895
field_count++;
896+
size += sizeof(address);
888897
prev = prev->previous_versions();
889898
}
890899
}
@@ -894,11 +903,19 @@ void DumperSupport::dump_static_fields(DumpWriter* writer, Klass* k) {
894903
oop init_lock = ik->init_lock();
895904
if (init_lock != NULL) {
896905
field_count++;
906+
size += sizeof(address);
897907
}
898908

899-
writer->write_u2(field_count);
909+
// We write the value itself plus a name and a one byte type tag per field.
910+
return size + field_count * (sizeof(address) + 1);
911+
}
900912

901-
// pass 2 - dump the field descriptors and raw values
913+
// dumps static fields of the given class
914+
void DumperSupport::dump_static_fields(DumpWriter* writer, Klass* k) {
915+
HandleMark hm;
916+
InstanceKlass* ik = InstanceKlass::cast(k);
917+
918+
// dump the field descriptors and raw values
902919
for (FieldStream fld(ik, true, true); !fld.eos(); fld.next()) {
903920
if (fld.access_flags().is_static()) {
904921
Symbol* sig = fld.signature();
@@ -912,6 +929,7 @@ void DumperSupport::dump_static_fields(DumpWriter* writer, Klass* k) {
912929
}
913930

914931
// Add resolved_references for each class that has them
932+
oop resolved_references = ik->constants()->resolved_references_or_null();
915933
if (resolved_references != NULL) {
916934
writer->write_symbolID(vmSymbols::resolved_references_name()); // name
917935
writer->write_u1(sig2tag(vmSymbols::object_array_signature())); // type
@@ -928,6 +946,7 @@ void DumperSupport::dump_static_fields(DumpWriter* writer, Klass* k) {
928946
}
929947

930948
// Add init lock to the end if the class is not yet initialized
949+
oop init_lock = ik->init_lock();
931950
if (init_lock != NULL) {
932951
writer->write_symbolID(vmSymbols::init_lock_name()); // name
933952
writer->write_u1(sig2tag(vmSymbols::int_array_signature())); // type
@@ -949,19 +968,23 @@ void DumperSupport::dump_instance_fields(DumpWriter* writer, oop o) {
949968
}
950969

951970
// dumps the definition of the instance fields for a given class
952-
void DumperSupport::dump_instance_field_descriptors(DumpWriter* writer, Klass* k) {
971+
u2 DumperSupport::get_instance_fields_count(InstanceKlass* ik) {
953972
HandleMark hm;
954-
InstanceKlass* ik = InstanceKlass::cast(k);
955-
956-
// pass 1 - count the instance fields
957973
u2 field_count = 0;
974+
958975
for (FieldStream fldc(ik, true, true); !fldc.eos(); fldc.next()) {
959976
if (!fldc.access_flags().is_static()) field_count++;
960977
}
961978

962-
writer->write_u2(field_count);
979+
return field_count;
980+
}
963981

964-
// pass 2 - dump the field descriptors
982+
// dumps the definition of the instance fields for a given class
983+
void DumperSupport::dump_instance_field_descriptors(DumpWriter* writer, Klass* k) {
984+
HandleMark hm;
985+
InstanceKlass* ik = InstanceKlass::cast(k);
986+
987+
// dump the field descriptors
965988
for (FieldStream fld(ik, true, true); !fld.eos(); fld.next()) {
966989
if (!fld.access_flags().is_static()) {
967990
Symbol* sig = fld.signature();
@@ -974,20 +997,24 @@ void DumperSupport::dump_instance_field_descriptors(DumpWriter* writer, Klass* k
974997

975998
// creates HPROF_GC_INSTANCE_DUMP record for the given object
976999
void DumperSupport::dump_instance(DumpWriter* writer, oop o) {
977-
Klass* k = o->klass();
1000+
InstanceKlass* ik = InstanceKlass::cast(o->klass());
1001+
u4 is = instance_size(ik);
1002+
u4 size = 1 + sizeof(address) + 4 + sizeof(address) + 4 + is;
9781003

979-
writer->write_u1(HPROF_GC_INSTANCE_DUMP);
1004+
writer->start_sub_record(HPROF_GC_INSTANCE_DUMP, size);
9801005
writer->write_objectID(o);
9811006
writer->write_u4(STACK_TRACE_ID);
9821007

9831008
// class ID
984-
writer->write_classID(k);
1009+
writer->write_classID(ik);
9851010

9861011
// number of bytes that follow
987-
writer->write_u4(instance_size(k) );
1012+
writer->write_u4(is);
9881013

9891014
// field values
9901015
dump_instance_fields(writer, o);
1016+
1017+
writer->end_sub_record();
9911018
}
9921019

9931020
// creates HPROF_GC_CLASS_DUMP record for the given class and each of
@@ -1002,7 +1029,13 @@ void DumperSupport::dump_class_and_array_classes(DumpWriter* writer, Klass* k) {
10021029
return;
10031030
}
10041031

1005-
writer->write_u1(HPROF_GC_CLASS_DUMP);
1032+
u2 static_fields_count = 0;
1033+
u4 static_size = get_static_fields_size(ik, static_fields_count);
1034+
u2 instance_fields_count = get_instance_fields_count(ik);
1035+
u4 instance_fields_size = instance_fields_count * (sizeof(address) + 1);
1036+
u4 size = 1 + sizeof(address) + 4 + 6 * sizeof(address) + 4 + 2 + 2 + static_size + 2 + instance_fields_size;
1037+
1038+
writer->start_sub_record(HPROF_GC_CLASS_DUMP, size);
10061039

10071040
// class ID
10081041
writer->write_classID(ik);
@@ -1025,29 +1058,33 @@ void DumperSupport::dump_class_and_array_classes(DumpWriter* writer, Klass* k) {
10251058
writer->write_objectID(oop(NULL));
10261059

10271060
// instance size
1028-
writer->write_u4(DumperSupport::instance_size(k));
1061+
writer->write_u4(DumperSupport::instance_size(ik));
10291062

10301063
// size of constant pool - ignored by HAT 1.1
10311064
writer->write_u2(0);
10321065

1033-
// number of static fields
1034-
dump_static_fields(writer, k);
1066+
// static fields
1067+
writer->write_u2(static_fields_count);
1068+
dump_static_fields(writer, ik);
10351069

10361070
// description of instance fields
1037-
dump_instance_field_descriptors(writer, k);
1071+
writer->write_u2(instance_fields_count);
1072+
dump_instance_field_descriptors(writer, ik);
1073+
1074+
writer->end_sub_record();
10381075

10391076
// array classes
1040-
k = k->array_klass_or_null();
1077+
k = ik->array_klass_or_null();
10411078
while (k != NULL) {
1042-
Klass* klass = k;
1043-
assert(klass->is_objArray_klass(), "not an ObjArrayKlass");
1079+
assert(k->is_objArray_klass(), "not an ObjArrayKlass");
10441080

1045-
writer->write_u1(HPROF_GC_CLASS_DUMP);
1046-
writer->write_classID(klass);
1081+
u4 size = 1 + sizeof(address) + 4 + 6 * sizeof(address) + 4 + 2 + 2 + 2;
1082+
writer->start_sub_record(HPROF_GC_CLASS_DUMP, size);
1083+
writer->write_classID(k);
10471084
writer->write_u4(STACK_TRACE_ID);
10481085

10491086
// super class of array classes is java.lang.Object
1050-
java_super = klass->java_super();
1087+
java_super = k->java_super();
10511088
assert(java_super != NULL, "checking");
10521089
writer->write_classID(java_super);
10531090

@@ -1062,8 +1099,10 @@ void DumperSupport::dump_class_and_array_classes(DumpWriter* writer, Klass* k) {
10621099
writer->write_u2(0); // static fields
10631100
writer->write_u2(0); // instance fields
10641101

1102+
writer->end_sub_record();
1103+
10651104
// get the array class for the next rank
1066-
k = klass->array_klass_or_null();
1105+
k = k->array_klass_or_null();
10671106
}
10681107
}
10691108

@@ -1074,7 +1113,8 @@ void DumperSupport::dump_basic_type_array_class(DumpWriter* writer, Klass* k) {
10741113
while (k != NULL) {
10751114
Klass* klass = k;
10761115

1077-
writer->write_u1(HPROF_GC_CLASS_DUMP);
1116+
u4 size = 1 + sizeof(address) + 4 + 6 * sizeof(address) + 4 + 2 + 2 + 2;
1117+
writer->start_sub_record(HPROF_GC_CLASS_DUMP, size);
10781118
writer->write_classID(klass);
10791119
writer->write_u4(STACK_TRACE_ID);
10801120

@@ -1094,6 +1134,8 @@ void DumperSupport::dump_basic_type_array_class(DumpWriter* writer, Klass* k) {
10941134
writer->write_u2(0); // static fields
10951135
writer->write_u2(0); // instance fields
10961136

1137+
writer->end_sub_record();
1138+
10971139
// get the array class for the next rank
10981140
k = klass->array_klass_or_null();
10991141
}
@@ -1115,23 +1157,8 @@ int DumperSupport::calculate_array_max_length(DumpWriter* writer, arrayOop array
11151157
}
11161158

11171159
size_t length_in_bytes = (size_t)length * type_size;
1160+
uint max_bytes = max_juint - header_size;
11181161

1119-
// Create a new record if the current record is non-empty and the array can't fit.
1120-
julong current_record_length = writer->current_record_length();
1121-
if (current_record_length > 0 &&
1122-
(current_record_length + header_size + length_in_bytes) > max_juint) {
1123-
write_current_dump_record_length(writer);
1124-
write_dump_header(writer);
1125-
1126-
// We now have an empty record.
1127-
current_record_length = 0;
1128-
}
1129-
1130-
// Calculate max bytes we can use.
1131-
uint max_bytes = max_juint - (header_size + current_record_length);
1132-
1133-
// Array too long for the record?
1134-
// Calculate max length and return it.
11351162
if (length_in_bytes > max_bytes) {
11361163
length = max_bytes / type_size;
11371164
length_in_bytes = (size_t)length * type_size;
@@ -1146,10 +1173,10 @@ int DumperSupport::calculate_array_max_length(DumpWriter* writer, arrayOop array
11461173
void DumperSupport::dump_object_array(DumpWriter* writer, objArrayOop array) {
11471174
// sizeof(u1) + 2 * sizeof(u4) + sizeof(objectID) + sizeof(classID)
11481175
short header_size = 1 + 2 * 4 + 2 * sizeof(address);
1149-
11501176
int length = calculate_array_max_length(writer, array, header_size);
1177+
u4 size = header_size + length * sizeof(address);
11511178

1152-
writer->write_u1(HPROF_GC_OBJ_ARRAY_DUMP);
1179+
writer->start_sub_record(HPROF_GC_OBJ_ARRAY_DUMP, size);
11531180
writer->write_objectID(array);
11541181
writer->write_u4(STACK_TRACE_ID);
11551182
writer->write_u4(length);
@@ -1169,6 +1196,8 @@ void DumperSupport::dump_object_array(DumpWriter* writer, objArrayOop array) {
11691196
o = mask_dormant_archived_object(o);
11701197
writer->write_objectID(o);
11711198
}
1199+
1200+
writer->end_sub_record();
11721201
}
11731202

11741203
#define WRITE_ARRAY(Array, Type, Size, Length) \
@@ -1184,15 +1213,17 @@ void DumperSupport::dump_prim_array(DumpWriter* writer, typeArrayOop array) {
11841213
int length = calculate_array_max_length(writer, array, header_size);
11851214
int type_size = type2aelembytes(type);
11861215
u4 length_in_bytes = (u4)length * type_size;
1216+
u4 size = header_size + length_in_bytes;
11871217

1188-
writer->write_u1(HPROF_GC_PRIM_ARRAY_DUMP);
1218+
writer->start_sub_record(HPROF_GC_PRIM_ARRAY_DUMP, size);
11891219
writer->write_objectID(array);
11901220
writer->write_u4(STACK_TRACE_ID);
11911221
writer->write_u4(length);
11921222
writer->write_u1(type2tag(type));
11931223

11941224
// nothing to copy
11951225
if (length == 0) {
1226+
writer->end_sub_record();
11961227
return;
11971228
}
11981229

@@ -1262,6 +1293,8 @@ void DumperSupport::dump_prim_array(DumpWriter* writer, typeArrayOop array) {
12621293
}
12631294
default : ShouldNotReachHere();
12641295
}
1296+
1297+
writer->end_sub_record();
12651298
}
12661299

12671300
// create a HPROF_FRAME record of the given Method* and bci
@@ -1337,10 +1370,12 @@ void JNILocalsDumper::do_oop(oop* obj_p) {
13371370
// ignore null handles
13381371
oop o = *obj_p;
13391372
if (o != NULL) {
1340-
writer()->write_u1(HPROF_GC_ROOT_JNI_LOCAL);
1373+
u4 size = 1 + sizeof(address) + 4 + 4;
1374+
writer()->start_sub_record(HPROF_GC_ROOT_JNI_LOCAL, size);
13411375
writer()->write_objectID(o);
13421376
writer()->write_u4(_thread_serial_num);
13431377
writer()->write_u4((u4)_frame_num);
1378+
writer()->end_sub_record();
13441379
}
13451380
}
13461381

@@ -1368,9 +1403,11 @@ void JNIGlobalsDumper::do_oop(oop* obj_p) {
13681403

13691404
// we ignore global ref to symbols and other internal objects
13701405
if (o->is_instance() || o->is_objArray() || o->is_typeArray()) {
1371-
writer()->write_u1(HPROF_GC_ROOT_JNI_GLOBAL);
1406+
u4 size = 1 + 2 * sizeof(address);
1407+
writer()->start_sub_record(HPROF_GC_ROOT_JNI_GLOBAL, size);
13721408
writer()->write_objectID(o);
13731409
writer()->write_objectID((oopDesc*)obj_p); // global ref ID
1410+
writer()->end_sub_record();
13741411
}
13751412
};
13761413

@@ -1386,8 +1423,10 @@ class MonitorUsedDumper : public OopClosure {
13861423
_writer = writer;
13871424
}
13881425
void do_oop(oop* obj_p) {
1389-
writer()->write_u1(HPROF_GC_ROOT_MONITOR_USED);
1426+
u4 size = 1 + sizeof(address);
1427+
writer()->start_sub_record(HPROF_GC_ROOT_MONITOR_USED, size);
13901428
writer()->write_objectID(*obj_p);
1429+
writer()->end_sub_record();
13911430
}
13921431
void do_oop(narrowOop* obj_p) { ShouldNotReachHere(); }
13931432
};
@@ -1406,10 +1445,12 @@ class StickyClassDumper : public KlassClosure {
14061445
void do_klass(Klass* k) {
14071446
if (k->is_instance_klass()) {
14081447
InstanceKlass* ik = InstanceKlass::cast(k);
1409-
writer()->write_u1(HPROF_GC_ROOT_STICKY_CLASS);
1410-
writer()->write_classID(ik);
1411-
}
1448+
u4 size = 1 + sizeof(address);
1449+
writer()->start_sub_record(HPROF_GC_ROOT_STICKY_CLASS, size);
1450+
writer()->write_classID(ik);
1451+
writer()->end_sub_record();
14121452
}
1453+
}
14131454
};
14141455

14151456

@@ -1425,9 +1466,6 @@ class HeapObjectDumper : public ObjectClosure {
14251466
VM_HeapDumper* dumper() { return _dumper; }
14261467
DumpWriter* writer() { return _writer; }
14271468

1428-
// used to indicate that a record has been writen
1429-
void mark_end_of_record();
1430-
14311469
public:
14321470
HeapObjectDumper(VM_HeapDumper* dumper, DumpWriter* writer) {
14331471
_dumper = dumper;
@@ -1454,15 +1492,12 @@ void HeapObjectDumper::do_object(oop o) {
14541492
if (o->is_instance()) {
14551493
// create a HPROF_GC_INSTANCE record for each object
14561494
DumperSupport::dump_instance(writer(), o);
1457-
mark_end_of_record();
14581495
} else if (o->is_objArray()) {
14591496
// create a HPROF_GC_OBJ_ARRAY_DUMP record for each object array
14601497
DumperSupport::dump_object_array(writer(), objArrayOop(o));
1461-
mark_end_of_record();
14621498
} else if (o->is_typeArray()) {
14631499
// create a HPROF_GC_PRIM_ARRAY_DUMP record for each type array
14641500
DumperSupport::dump_prim_array(writer(), typeArrayOop(o));
1465-
mark_end_of_record();
14661501
}
14671502
}
14681503

@@ -1553,8 +1588,6 @@ class VM_HeapDumper : public VM_GC_Operation {
15531588
}
15541589

15551590
VMOp_Type type() const { return VMOp_HeapDumper; }
1556-
// used to mark sub-record boundary
1557-
void check_segment_length();
15581591
void doit();
15591592
};
15601593

@@ -1565,72 +1598,13 @@ bool VM_HeapDumper::skip_operation() const {
15651598
return false;
15661599
}
15671600

1568-
// writes a HPROF_HEAP_DUMP_SEGMENT record
1569-
void DumperSupport::write_dump_header(DumpWriter* writer) {
1570-
if (writer->is_open()) {
1571-
writer->write_u1(HPROF_HEAP_DUMP_SEGMENT);
1572-
writer->write_u4(0); // current ticks
1573-
1574-
// record the starting position for the dump (its length will be fixed up later)
1575-
writer->set_dump_start(writer->current_offset());
1576-
writer->write_u4(0);
1577-
}
1578-
}
1579-
1580-
// fixes up the length of the current dump record
1581-
void DumperSupport::write_current_dump_record_length(DumpWriter* writer) {
1582-
if (writer->is_open()) {
1583-
julong dump_end = writer->bytes_written() + writer->bytes_unwritten();
1584-
julong dump_len = writer->current_record_length();
1585-
1586-
// record length must fit in a u4
1587-
if (dump_len > max_juint) {
1588-
warning("record is too large");
1589-
}
1590-
1591-
// seek to the dump start and fix-up the length
1592-
assert(writer->dump_start() >= 0, "no dump start recorded");
1593-
writer->seek_to_offset(writer->dump_start());
1594-
writer->write_u4((u4)dump_len);
1595-
1596-
// adjust the total size written to keep the bytes written correct.
1597-
writer->adjust_bytes_written(-((jlong) sizeof(u4)));
1598-
1599-
// seek to dump end so we can continue
1600-
writer->seek_to_offset(dump_end);
1601-
1602-
// no current dump record
1603-
writer->set_dump_start((jlong)-1);
1604-
}
1605-
}
1606-
1607-
// used on a sub-record boundary to check if we need to start a
1608-
// new segment.
1609-
void VM_HeapDumper::check_segment_length() {
1610-
if (writer()->is_open()) {
1611-
julong dump_len = writer()->current_record_length();
1612-
1613-
if (dump_len > 2UL*G) {
1614-
DumperSupport::write_current_dump_record_length(writer());
1615-
DumperSupport::write_dump_header(writer());
1616-
}
1617-
}
1618-
}
1619-
16201601
// fixes up the current dump record and writes HPROF_HEAP_DUMP_END record
16211602
void DumperSupport::end_of_dump(DumpWriter* writer) {
1622-
if (writer->is_open()) {
1623-
write_current_dump_record_length(writer);
1603+
writer->finish_dump_segment();
16241604

1625-
writer->write_u1(HPROF_HEAP_DUMP_END);
1626-
writer->write_u4(0);
1627-
writer->write_u4(0);
1628-
}
1629-
}
1630-
1631-
// marks sub-record boundary
1632-
void HeapObjectDumper::mark_end_of_record() {
1633-
dumper()->check_segment_length();
1605+
writer->write_u1(HPROF_HEAP_DUMP_END);
1606+
writer->write_u4(0);
1607+
writer->write_u4(0);
16341608
}
16351609

16361610
// writes a HPROF_LOAD_CLASS record for the class (and each of its
@@ -1720,10 +1694,12 @@ int VM_HeapDumper::do_thread(JavaThread* java_thread, u4 thread_serial_num) {
17201694
oop o = locals->obj_at(slot)();
17211695

17221696
if (o != NULL) {
1723-
writer()->write_u1(HPROF_GC_ROOT_JAVA_FRAME);
1697+
u4 size = 1 + sizeof(address) + 4 + 4;
1698+
writer()->start_sub_record(HPROF_GC_ROOT_JAVA_FRAME, size);
17241699
writer()->write_objectID(o);
17251700
writer()->write_u4(thread_serial_num);
17261701
writer()->write_u4((u4) (stack_depth + extra_frames));
1702+
writer()->end_sub_record();
17271703
}
17281704
}
17291705
}
@@ -1732,10 +1708,12 @@ int VM_HeapDumper::do_thread(JavaThread* java_thread, u4 thread_serial_num) {
17321708
if (exprs->at(index)->type() == T_OBJECT) {
17331709
oop o = exprs->obj_at(index)();
17341710
if (o != NULL) {
1735-
writer()->write_u1(HPROF_GC_ROOT_JAVA_FRAME);
1711+
u4 size = 1 + sizeof(address) + 4 + 4;
1712+
writer()->start_sub_record(HPROF_GC_ROOT_JAVA_FRAME, size);
17361713
writer()->write_objectID(o);
17371714
writer()->write_u4(thread_serial_num);
17381715
writer()->write_u4((u4) (stack_depth + extra_frames));
1716+
writer()->end_sub_record();
17391717
}
17401718
}
17411719
}
@@ -1783,10 +1761,12 @@ void VM_HeapDumper::do_threads() {
17831761
oop threadObj = thread->threadObj();
17841762
u4 thread_serial_num = i+1;
17851763
u4 stack_serial_num = thread_serial_num + STACK_TRACE_ID;
1786-
writer()->write_u1(HPROF_GC_ROOT_THREAD_OBJ);
1764+
u4 size = 1 + sizeof(address) + 4 + 4;
1765+
writer()->start_sub_record(HPROF_GC_ROOT_THREAD_OBJ, size);
17871766
writer()->write_objectID(threadObj);
17881767
writer()->write_u4(thread_serial_num); // thread number
17891768
writer()->write_u4(stack_serial_num); // stack trace serial number
1769+
writer()->end_sub_record();
17901770
int num_frames = do_thread(thread, thread_serial_num);
17911771
assert(num_frames == _stack_traces[i]->get_stack_depth(),
17921772
"total number of Java frames not matched");
@@ -1864,16 +1844,12 @@ void VM_HeapDumper::doit() {
18641844
// this must be called after _klass_map is built when iterating the classes above.
18651845
dump_stack_traces();
18661846

1867-
// write HPROF_HEAP_DUMP_SEGMENT
1868-
DumperSupport::write_dump_header(writer());
1869-
18701847
// Writes HPROF_GC_CLASS_DUMP records
18711848
{
18721849
LockedClassesDo locked_dump_class(&do_class_dump);
18731850
ClassLoaderDataGraph::classes_do(&locked_dump_class);
18741851
}
18751852
Universe::basic_type_classes_do(&do_basic_type_array_class_dump);
1876-
check_segment_length();
18771853

18781854
// writes HPROF_GC_INSTANCE_DUMP records.
18791855
// After each sub-record is written check_segment_length will be invoked
@@ -1886,27 +1862,24 @@ void VM_HeapDumper::doit() {
18861862

18871863
// HPROF_GC_ROOT_THREAD_OBJ + frames + jni locals
18881864
do_threads();
1889-
check_segment_length();
18901865

18911866
// HPROF_GC_ROOT_MONITOR_USED
18921867
MonitorUsedDumper mon_dumper(writer());
18931868
ObjectSynchronizer::oops_do(&mon_dumper);
1894-
check_segment_length();
18951869

18961870
// HPROF_GC_ROOT_JNI_GLOBAL
18971871
JNIGlobalsDumper jni_dumper(writer());
18981872
JNIHandles::oops_do(&jni_dumper);
18991873
Universe::oops_do(&jni_dumper); // technically not jni roots, but global roots
19001874
// for things like preallocated throwable backtraces
1901-
check_segment_length();
19021875

19031876
// HPROF_GC_ROOT_STICKY_CLASS
19041877
// These should be classes in the NULL class loader data, and not all classes
19051878
// if !ClassUnloading
19061879
StickyClassDumper class_dumper(writer());
19071880
ClassLoaderData::the_null_class_loader_data()->classes_do(&class_dumper);
19081881

1909-
// fixes up the length of the dump record and writes the HPROF_HEAP_DUMP_END record.
1882+
// Writes the HPROF_HEAP_DUMP_END record.
19101883
DumperSupport::end_of_dump(writer());
19111884

19121885
// Now we clear the global variables, so that a future dumper might run.
@@ -1980,7 +1953,7 @@ int HeapDumper::dump(const char* path, outputStream* out) {
19801953

19811954
// create the dump writer. If the file can be opened then bail
19821955
DumpWriter writer(path);
1983-
if (!writer.is_open()) {
1956+
if (writer.error() != NULL) {
19841957
set_error(writer.error());
19851958
if (out != NULL) {
19861959
out->print_cr("Unable to create %s: %s", path,

0 commit comments

Comments
 (0)
Please sign in to comment.