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

8329766: Serial: Refactor SerialBlockOffsetTable API #18651

Closed
wants to merge 3 commits into from
Closed
Changes from 2 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
6 changes: 3 additions & 3 deletions src/hotspot/share/gc/serial/serialBlockOffsetTable.cpp
Original file line number Diff line number Diff line change
@@ -77,9 +77,9 @@ void SerialBlockOffsetTable::resize(size_t new_word_size) {
}
}

static void fill_range(uint8_t* start, uint8_t* end, uint8_t v) {
// + 1 for inclusive
memset(start, v, pointer_delta(end, start, sizeof(uint8_t)) + 1);
static void fill_range(uint8_t* start, uint8_t* end, uint8_t value) {
// + 1 for inclusive.
memset(start, value, pointer_delta(end, start, sizeof(uint8_t)) + 1);
}

// Write the backskip value for each logarithmic region (array slots containing the same entry value).
4 changes: 2 additions & 2 deletions src/hotspot/share/gc/serial/serialBlockOffsetTable.hpp
Original file line number Diff line number Diff line change
@@ -62,10 +62,10 @@ class SerialBlockOffsetTable: public CHeapObj<mtGC> {
return ReservedSpace::allocation_align_size_up(number_of_slots);
}

// Mapping from address to object start array entry
// Mapping from address to object start array entry.
uint8_t* entry_for_addr(const void* const p) const;

// Mapping from object start array entry to address of first word
// Mapping from object start array entry to address of first word.
HeapWord* addr_for_entry(const uint8_t* const p) const;

void update_for_block_work(HeapWord* blk_start, HeapWord* blk_end);