Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8329994: Zap alignment padding bits for ArrayOops in non-release builds #18714

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/hotspot/share/gc/shared/memAllocator.cpp
Original file line number Diff line number Diff line change
@@ -388,13 +388,28 @@ oop ObjArrayAllocator::initialize(HeapWord* mem) const {
assert(_length >= 0, "length should be non-negative");
if (_do_zero) {
mem_clear(mem);
mem_zap_start_padding(mem);
mem_zap_end_padding(mem);
}
arrayOopDesc::set_length(mem, _length);
return finish(mem);
}

#ifndef PRODUCT
void ObjArrayAllocator::mem_zap_start_padding(HeapWord* mem) const {
const BasicType element_type = ArrayKlass::cast(_klass)->element_type();
const size_t base_offset_in_bytes = arrayOopDesc::base_offset_in_bytes(element_type);
const size_t header_size_in_bytes = arrayOopDesc::header_size_in_bytes();

const address base = reinterpret_cast<address>(mem) + base_offset_in_bytes;
const address header_end = reinterpret_cast<address>(mem) + header_size_in_bytes;

if (header_end < base) {
const size_t padding_in_bytes = base - header_end;
Copy::fill_to_bytes(header_end, padding_in_bytes, heapPaddingByteVal);
}
}

void ObjArrayAllocator::mem_zap_end_padding(HeapWord* mem) const {
const size_t length_in_bytes = static_cast<size_t>(_length) << ArrayKlass::cast(_klass)->log2_element_size();
const BasicType element_type = ArrayKlass::cast(_klass)->element_type();
1 change: 1 addition & 0 deletions src/hotspot/share/gc/shared/memAllocator.hpp
Original file line number Diff line number Diff line change
@@ -94,6 +94,7 @@ class ObjArrayAllocator: public MemAllocator {
const int _length;
const bool _do_zero;

void mem_zap_start_padding(HeapWord* mem) const PRODUCT_RETURN;
void mem_zap_end_padding(HeapWord* mem) const PRODUCT_RETURN;

public:
2 changes: 2 additions & 0 deletions src/hotspot/share/gc/z/zObjArrayAllocator.cpp
Original file line number Diff line number Diff line change
@@ -139,6 +139,8 @@ oop ZObjArrayAllocator::initialize(HeapWord* mem) const {
return true;
};

mem_zap_start_padding(mem);

if (!initialize_memory()) {
// Re-color with 11 remset bits if we got intercepted by a GC safepoint
const bool result = initialize_memory();