mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
7157141: crash in 64 bit with corrupted oops
Reviewed-by: kvn, iveresov
This commit is contained in:
parent
cdd9c702ac
commit
8fc6b2ef2a
6 changed files with 20 additions and 21 deletions
|
@ -711,6 +711,11 @@ void CardTableModRefBS::verify_dirty_region(MemRegion mr) {
|
|||
}
|
||||
#endif
|
||||
|
||||
void CardTableModRefBS::print_on(outputStream* st) const {
|
||||
st->print_cr("Card table byte_map: [" INTPTR_FORMAT "," INTPTR_FORMAT "] byte_map_base: " INTPTR_FORMAT,
|
||||
_byte_map, _byte_map + _byte_map_size, byte_map_base);
|
||||
}
|
||||
|
||||
bool CardTableModRefBSForCTRS::card_will_be_scanned(jbyte cv) {
|
||||
return
|
||||
CardTableModRefBS::card_will_be_scanned(cv) ||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue