Skip to content

Commit 93be099

Browse files
committedOct 27, 2021
4718400: Many quantities are held as signed that should be unsigned
Reviewed-by: coleenp, rbackman, dholmes
1 parent 168081e commit 93be099

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+95
-110
lines changed
 

‎src/hotspot/share/cds/heapShared.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ void HeapShared::copy_open_objects(GrowableArray<MemRegion>* open_regions) {
429429
// Copy _pending_archive_roots into an objArray
430430
void HeapShared::copy_roots() {
431431
int length = _pending_roots != NULL ? _pending_roots->length() : 0;
432-
int size = objArrayOopDesc::object_size(length);
432+
size_t size = objArrayOopDesc::object_size(length);
433433
Klass* k = Universe::objectArrayKlassObj(); // already relocated to point to archived klass
434434
HeapWord* mem = G1CollectedHeap::heap()->archive_mem_allocate(size);
435435

@@ -448,7 +448,7 @@ void HeapShared::copy_roots() {
448448
for (int i = 0; i < length; i++) {
449449
roots()->obj_at_put(i, _pending_roots->at(i));
450450
}
451-
log_info(cds)("archived obj roots[%d] = %d words, klass = %p, obj = %p", length, size, k, mem);
451+
log_info(cds)("archived obj roots[%d] = " SIZE_FORMAT " words, klass = %p, obj = %p", length, size, k, mem);
452452
}
453453

454454
void HeapShared::init_narrow_oop_decoding(address base, int shift) {
@@ -912,7 +912,7 @@ class WalkOopAndArchiveClosure: public BasicOopIterateClosure {
912912

913913
if (!_record_klasses_only && log_is_enabled(Debug, cds, heap)) {
914914
ResourceMark rm;
915-
log_debug(cds, heap)("(%d) %s[" SIZE_FORMAT "] ==> " PTR_FORMAT " size %d %s", _level,
915+
log_debug(cds, heap)("(%d) %s[" SIZE_FORMAT "] ==> " PTR_FORMAT " size " SIZE_FORMAT " %s", _level,
916916
_orig_referencing_obj->klass()->external_name(), field_delta,
917917
p2i(obj), obj->size() * HeapWordSize, obj->klass()->external_name());
918918
LogTarget(Trace, cds, heap) log;
@@ -1023,7 +1023,7 @@ oop HeapShared::archive_reachable_objects_from(int level,
10231023
ResourceMark rm;
10241024
log_error(cds, heap)(
10251025
"Cannot archive the sub-graph referenced from %s object ("
1026-
PTR_FORMAT ") size %d, skipped.",
1026+
PTR_FORMAT ") size " SIZE_FORMAT ", skipped.",
10271027
orig_obj->klass()->external_name(), p2i(orig_obj), orig_obj->size() * HeapWordSize);
10281028
if (level == 1) {
10291029
// Don't archive a subgraph root that's too big. For archives static fields, that's OK

‎src/hotspot/share/classfile/javaClasses.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -1377,10 +1377,11 @@ void java_lang_Class::fixup_module_field(Klass* k, Handle module) {
13771377
java_lang_Class::set_module(k->java_mirror(), module());
13781378
}
13791379

1380-
void java_lang_Class::set_oop_size(HeapWord* java_class, int size) {
1380+
void java_lang_Class::set_oop_size(HeapWord* java_class, size_t size) {
13811381
assert(_oop_size_offset != 0, "must be set");
1382-
assert(size > 0, "Oop size must be greater than zero, not %d", size);
1383-
*(int*)(((char*)java_class) + _oop_size_offset) = size;
1382+
assert(size > 0, "Oop size must be greater than zero, not " SIZE_FORMAT, size);
1383+
assert(size <= INT_MAX, "Lossy conversion: " SIZE_FORMAT, size);
1384+
*(int*)(((char*)java_class) + _oop_size_offset) = (int)size;
13841385
}
13851386

13861387
int java_lang_Class::static_oop_field_count(oop java_class) {

0 commit comments

Comments
 (0)