Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/memory/cardTableModRefBS.cpp
32285 views
/*1* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#include "precompiled.hpp"25#include "memory/allocation.inline.hpp"26#include "memory/cardTableModRefBS.hpp"27#include "memory/cardTableRS.hpp"28#include "memory/sharedHeap.hpp"29#include "memory/space.hpp"30#include "memory/space.inline.hpp"31#include "memory/universe.hpp"32#include "runtime/java.hpp"33#include "runtime/mutexLocker.hpp"34#include "runtime/virtualspace.hpp"35#include "services/memTracker.hpp"36#include "utilities/macros.hpp"37#ifdef COMPILER138#include "c1/c1_LIR.hpp"39#include "c1/c1_LIRGenerator.hpp"40#endif4142// This kind of "BarrierSet" allows a "CollectedHeap" to detect and43// enumerate ref fields that have been modified (since the last44// enumeration.)4546size_t CardTableModRefBS::compute_byte_map_size()47{48assert(_guard_index == cards_required(_whole_heap.word_size()) - 1,49"unitialized, check declaration order");50assert(_page_size != 0, "unitialized, check declaration order");51const size_t granularity = os::vm_allocation_granularity();52return align_size_up(_guard_index + 1, MAX2(_page_size, granularity));53}5455CardTableModRefBS::CardTableModRefBS(MemRegion whole_heap,56int max_covered_regions):57ModRefBarrierSet(max_covered_regions),58_whole_heap(whole_heap),59_guard_index(0),60_guard_region(),61_last_valid_index(0),62_page_size(os::vm_page_size()),63_byte_map_size(0),64_covered(NULL),65_committed(NULL),66_cur_covered_regions(0),67_byte_map(NULL),68byte_map_base(NULL),69// LNC functionality70_lowest_non_clean(NULL),71_lowest_non_clean_chunk_size(NULL),72_lowest_non_clean_base_chunk_index(NULL),73_last_LNC_resizing_collection(NULL)74{75_kind = BarrierSet::CardTableModRef;7677assert((uintptr_t(_whole_heap.start()) & (card_size - 1)) == 0, "heap must start at card boundary");78assert((uintptr_t(_whole_heap.end()) & (card_size - 1)) == 0, "heap must end at card boundary");7980assert(card_size <= 512, "card_size must be less than 512"); // why?8182_covered = new MemRegion[_max_covered_regions];83if (_covered == NULL) {84vm_exit_during_initialization("Could not allocate card table covered region set.");85}86}8788void CardTableModRefBS::initialize() {89_guard_index = cards_required(_whole_heap.word_size()) - 1;90_last_valid_index = _guard_index - 1;9192_byte_map_size = compute_byte_map_size();9394HeapWord* low_bound = _whole_heap.start();95HeapWord* high_bound = _whole_heap.end();9697_cur_covered_regions = 0;98_committed = new MemRegion[_max_covered_regions];99if (_committed == NULL) {100vm_exit_during_initialization("Could not allocate card table committed region set.");101}102103const size_t rs_align = _page_size == (size_t) os::vm_page_size() ? 0 :104MAX2(_page_size, (size_t) os::vm_allocation_granularity());105ReservedSpace heap_rs(_byte_map_size, rs_align, false);106107MemTracker::record_virtual_memory_type((address)heap_rs.base(), mtGC);108109os::trace_page_sizes("card table", _guard_index + 1, _guard_index + 1,110_page_size, heap_rs.base(), heap_rs.size());111if (!heap_rs.is_reserved()) {112vm_exit_during_initialization("Could not reserve enough space for the "113"card marking array");114}115116// The assember store_check code will do an unsigned shift of the oop,117// then add it to byte_map_base, i.e.118//119// _byte_map = byte_map_base + (uintptr_t(low_bound) >> card_shift)120_byte_map = (jbyte*) heap_rs.base();121byte_map_base = _byte_map - (uintptr_t(low_bound) >> card_shift);122assert(byte_for(low_bound) == &_byte_map[0], "Checking start of map");123assert(byte_for(high_bound-1) <= &_byte_map[_last_valid_index], "Checking end of map");124125jbyte* guard_card = &_byte_map[_guard_index];126uintptr_t guard_page = align_size_down((uintptr_t)guard_card, _page_size);127_guard_region = MemRegion((HeapWord*)guard_page, _page_size);128os::commit_memory_or_exit((char*)guard_page, _page_size, _page_size,129!ExecMem, "card table last card");130*guard_card = last_card;131132_lowest_non_clean =133NEW_C_HEAP_ARRAY(CardArr, _max_covered_regions, mtGC);134_lowest_non_clean_chunk_size =135NEW_C_HEAP_ARRAY(size_t, _max_covered_regions, mtGC);136_lowest_non_clean_base_chunk_index =137NEW_C_HEAP_ARRAY(uintptr_t, _max_covered_regions, mtGC);138_last_LNC_resizing_collection =139NEW_C_HEAP_ARRAY(int, _max_covered_regions, mtGC);140if (_lowest_non_clean == NULL141|| _lowest_non_clean_chunk_size == NULL142|| _lowest_non_clean_base_chunk_index == NULL143|| _last_LNC_resizing_collection == NULL)144vm_exit_during_initialization("couldn't allocate an LNC array.");145for (int i = 0; i < _max_covered_regions; i++) {146_lowest_non_clean[i] = NULL;147_lowest_non_clean_chunk_size[i] = 0;148_last_LNC_resizing_collection[i] = -1;149}150151if (TraceCardTableModRefBS) {152gclog_or_tty->print_cr("CardTableModRefBS::CardTableModRefBS: ");153gclog_or_tty->print_cr(" "154" &_byte_map[0]: " INTPTR_FORMAT155" &_byte_map[_last_valid_index]: " INTPTR_FORMAT,156p2i(&_byte_map[0]),157p2i(&_byte_map[_last_valid_index]));158gclog_or_tty->print_cr(" "159" byte_map_base: " INTPTR_FORMAT,160p2i(byte_map_base));161}162}163164CardTableModRefBS::~CardTableModRefBS() {165if (_covered) {166delete[] _covered;167_covered = NULL;168}169if (_committed) {170delete[] _committed;171_committed = NULL;172}173if (_lowest_non_clean) {174FREE_C_HEAP_ARRAY(CardArr, _lowest_non_clean, mtGC);175_lowest_non_clean = NULL;176}177if (_lowest_non_clean_chunk_size) {178FREE_C_HEAP_ARRAY(size_t, _lowest_non_clean_chunk_size, mtGC);179_lowest_non_clean_chunk_size = NULL;180}181if (_lowest_non_clean_base_chunk_index) {182FREE_C_HEAP_ARRAY(uintptr_t, _lowest_non_clean_base_chunk_index, mtGC);183_lowest_non_clean_base_chunk_index = NULL;184}185if (_last_LNC_resizing_collection) {186FREE_C_HEAP_ARRAY(int, _last_LNC_resizing_collection, mtGC);187_last_LNC_resizing_collection = NULL;188}189}190191int CardTableModRefBS::find_covering_region_by_base(HeapWord* base) {192int i;193for (i = 0; i < _cur_covered_regions; i++) {194if (_covered[i].start() == base) return i;195if (_covered[i].start() > base) break;196}197// If we didn't find it, create a new one.198assert(_cur_covered_regions < _max_covered_regions,199"too many covered regions");200// Move the ones above up, to maintain sorted order.201for (int j = _cur_covered_regions; j > i; j--) {202_covered[j] = _covered[j-1];203_committed[j] = _committed[j-1];204}205int res = i;206_cur_covered_regions++;207_covered[res].set_start(base);208_covered[res].set_word_size(0);209jbyte* ct_start = byte_for(base);210uintptr_t ct_start_aligned = align_size_down((uintptr_t)ct_start, _page_size);211_committed[res].set_start((HeapWord*)ct_start_aligned);212_committed[res].set_word_size(0);213return res;214}215216int CardTableModRefBS::find_covering_region_containing(HeapWord* addr) {217for (int i = 0; i < _cur_covered_regions; i++) {218if (_covered[i].contains(addr)) {219return i;220}221}222assert(0, "address outside of heap?");223return -1;224}225226HeapWord* CardTableModRefBS::largest_prev_committed_end(int ind) const {227HeapWord* max_end = NULL;228for (int j = 0; j < ind; j++) {229HeapWord* this_end = _committed[j].end();230if (this_end > max_end) max_end = this_end;231}232return max_end;233}234235MemRegion CardTableModRefBS::committed_unique_to_self(int self,236MemRegion mr) const {237MemRegion result = mr;238for (int r = 0; r < _cur_covered_regions; r += 1) {239if (r != self) {240result = result.minus(_committed[r]);241}242}243// Never include the guard page.244result = result.minus(_guard_region);245return result;246}247248void CardTableModRefBS::resize_covered_region(MemRegion new_region) {249// We don't change the start of a region, only the end.250assert(_whole_heap.contains(new_region),251"attempt to cover area not in reserved area");252debug_only(verify_guard();)253// collided is true if the expansion would push into another committed region254debug_only(bool collided = false;)255int const ind = find_covering_region_by_base(new_region.start());256MemRegion const old_region = _covered[ind];257assert(old_region.start() == new_region.start(), "just checking");258if (new_region.word_size() != old_region.word_size()) {259// Commit new or uncommit old pages, if necessary.260MemRegion cur_committed = _committed[ind];261// Extend the end of this _commited region262// to cover the end of any lower _committed regions.263// This forms overlapping regions, but never interior regions.264HeapWord* const max_prev_end = largest_prev_committed_end(ind);265if (max_prev_end > cur_committed.end()) {266cur_committed.set_end(max_prev_end);267}268// Align the end up to a page size (starts are already aligned).269jbyte* const new_end = byte_after(new_region.last());270HeapWord* new_end_aligned =271(HeapWord*) align_size_up((uintptr_t)new_end, _page_size);272assert(new_end_aligned >= (HeapWord*) new_end,273"align up, but less");274// Check the other regions (excludes "ind") to ensure that275// the new_end_aligned does not intrude onto the committed276// space of another region.277int ri = 0;278for (ri = 0; ri < _cur_covered_regions; ri++) {279if (ri != ind) {280if (_committed[ri].contains(new_end_aligned)) {281// The prior check included in the assert282// (new_end_aligned >= _committed[ri].start())283// is redundant with the "contains" test.284// Any region containing the new end285// should start at or beyond the region found (ind)286// for the new end (committed regions are not expected to287// be proper subsets of other committed regions).288assert(_committed[ri].start() >= _committed[ind].start(),289"New end of committed region is inconsistent");290new_end_aligned = _committed[ri].start();291// new_end_aligned can be equal to the start of its292// committed region (i.e., of "ind") if a second293// region following "ind" also start at the same location294// as "ind".295assert(new_end_aligned >= _committed[ind].start(),296"New end of committed region is before start");297debug_only(collided = true;)298// Should only collide with 1 region299break;300}301}302}303#ifdef ASSERT304for (++ri; ri < _cur_covered_regions; ri++) {305assert(!_committed[ri].contains(new_end_aligned),306"New end of committed region is in a second committed region");307}308#endif309// The guard page is always committed and should not be committed over.310// "guarded" is used for assertion checking below and recalls the fact311// that the would-be end of the new committed region would have312// penetrated the guard page.313HeapWord* new_end_for_commit = new_end_aligned;314315DEBUG_ONLY(bool guarded = false;)316if (new_end_for_commit > _guard_region.start()) {317new_end_for_commit = _guard_region.start();318DEBUG_ONLY(guarded = true;)319}320321if (new_end_for_commit > cur_committed.end()) {322// Must commit new pages.323MemRegion const new_committed =324MemRegion(cur_committed.end(), new_end_for_commit);325326assert(!new_committed.is_empty(), "Region should not be empty here");327os::commit_memory_or_exit((char*)new_committed.start(),328new_committed.byte_size(), _page_size,329!ExecMem, "card table expansion");330// Use new_end_aligned (as opposed to new_end_for_commit) because331// the cur_committed region may include the guard region.332} else if (new_end_aligned < cur_committed.end()) {333// Must uncommit pages.334MemRegion const uncommit_region =335committed_unique_to_self(ind, MemRegion(new_end_aligned,336cur_committed.end()));337if (!uncommit_region.is_empty()) {338// It is not safe to uncommit cards if the boundary between339// the generations is moving. A shrink can uncommit cards340// owned by generation A but being used by generation B.341if (!UseAdaptiveGCBoundary) {342if (!os::uncommit_memory((char*)uncommit_region.start(),343uncommit_region.byte_size())) {344assert(false, "Card table contraction failed");345// The call failed so don't change the end of the346// committed region. This is better than taking the347// VM down.348new_end_aligned = _committed[ind].end();349}350} else {351new_end_aligned = _committed[ind].end();352}353}354}355// In any case, we can reset the end of the current committed entry.356_committed[ind].set_end(new_end_aligned);357358#ifdef ASSERT359// Check that the last card in the new region is committed according360// to the tables.361bool covered = false;362for (int cr = 0; cr < _cur_covered_regions; cr++) {363if (_committed[cr].contains(new_end - 1)) {364covered = true;365break;366}367}368assert(covered, "Card for end of new region not committed");369#endif370371// The default of 0 is not necessarily clean cards.372jbyte* entry;373if (old_region.last() < _whole_heap.start()) {374entry = byte_for(_whole_heap.start());375} else {376entry = byte_after(old_region.last());377}378assert(index_for(new_region.last()) < _guard_index,379"The guard card will be overwritten");380// This line commented out cleans the newly expanded region and381// not the aligned up expanded region.382// jbyte* const end = byte_after(new_region.last());383jbyte* const end = (jbyte*) new_end_for_commit;384assert((end >= byte_after(new_region.last())) || collided || guarded,385"Expect to be beyond new region unless impacting another region");386// do nothing if we resized downward.387#ifdef ASSERT388for (int ri = 0; ri < _cur_covered_regions; ri++) {389if (ri != ind) {390// The end of the new committed region should not391// be in any existing region unless it matches392// the start of the next region.393assert(!_committed[ri].contains(end) ||394(_committed[ri].start() == (HeapWord*) end),395"Overlapping committed regions");396}397}398#endif399if (entry < end) {400memset(entry, clean_card, pointer_delta(end, entry, sizeof(jbyte)));401}402}403// In any case, the covered size changes.404_covered[ind].set_word_size(new_region.word_size());405if (TraceCardTableModRefBS) {406gclog_or_tty->print_cr("CardTableModRefBS::resize_covered_region: ");407gclog_or_tty->print_cr(" "408" _covered[%d].start(): " INTPTR_FORMAT409" _covered[%d].last(): " INTPTR_FORMAT,410ind, p2i(_covered[ind].start()),411ind, p2i(_covered[ind].last()));412gclog_or_tty->print_cr(" "413" _committed[%d].start(): " INTPTR_FORMAT414" _committed[%d].last(): " INTPTR_FORMAT,415ind, p2i(_committed[ind].start()),416ind, p2i(_committed[ind].last()));417gclog_or_tty->print_cr(" "418" byte_for(start): " INTPTR_FORMAT419" byte_for(last): " INTPTR_FORMAT,420p2i(byte_for(_covered[ind].start())),421p2i(byte_for(_covered[ind].last())));422gclog_or_tty->print_cr(" "423" addr_for(start): " INTPTR_FORMAT424" addr_for(last): " INTPTR_FORMAT,425p2i(addr_for((jbyte*) _committed[ind].start())),426p2i(addr_for((jbyte*) _committed[ind].last())));427}428// Touch the last card of the covered region to show that it429// is committed (or SEGV).430debug_only((void) (*byte_for(_covered[ind].last()));)431debug_only(verify_guard();)432}433434// Note that these versions are precise! The scanning code has to handle the435// fact that the write barrier may be either precise or imprecise.436437void CardTableModRefBS::write_ref_field_work(void* field, oop newVal, bool release) {438inline_write_ref_field(field, newVal, release);439}440441442void CardTableModRefBS::non_clean_card_iterate_possibly_parallel(Space* sp,443MemRegion mr,444OopsInGenClosure* cl,445CardTableRS* ct) {446if (!mr.is_empty()) {447// Caller (process_roots()) claims that all GC threads448// execute this call. With UseDynamicNumberOfGCThreads now all449// active GC threads execute this call. The number of active GC450// threads needs to be passed to par_non_clean_card_iterate_work()451// to get proper partitioning and termination.452//453// This is an example of where n_par_threads() is used instead454// of workers()->active_workers(). n_par_threads can be set to 0 to455// turn off parallelism. For example when this code is called as456// part of verification and SharedHeap::process_roots() is being457// used, then n_par_threads() may have been set to 0. active_workers458// is not overloaded with the meaning that it is a switch to disable459// parallelism and so keeps the meaning of the number of460// active gc workers. If parallelism has not been shut off by461// setting n_par_threads to 0, then n_par_threads should be462// equal to active_workers. When a different mechanism for shutting463// off parallelism is used, then active_workers can be used in464// place of n_par_threads.465// This is an example of a path where n_par_threads is466// set to 0 to turn off parallism.467// [7] CardTableModRefBS::non_clean_card_iterate()468// [8] CardTableRS::younger_refs_in_space_iterate()469// [9] Generation::younger_refs_in_space_iterate()470// [10] OneContigSpaceCardGeneration::younger_refs_iterate()471// [11] CompactingPermGenGen::younger_refs_iterate()472// [12] CardTableRS::younger_refs_iterate()473// [13] SharedHeap::process_strong_roots()474// [14] G1CollectedHeap::verify()475// [15] Universe::verify()476// [16] G1CollectedHeap::do_collection_pause_at_safepoint()477//478int n_threads = SharedHeap::heap()->n_par_threads();479bool is_par = n_threads > 0;480if (is_par) {481#if INCLUDE_ALL_GCS482assert(SharedHeap::heap()->n_par_threads() ==483SharedHeap::heap()->workers()->active_workers(), "Mismatch");484non_clean_card_iterate_parallel_work(sp, mr, cl, ct, n_threads);485#else // INCLUDE_ALL_GCS486fatal("Parallel gc not supported here.");487#endif // INCLUDE_ALL_GCS488} else {489// We do not call the non_clean_card_iterate_serial() version below because490// we want to clear the cards (which non_clean_card_iterate_serial() does not491// do for us): clear_cl here does the work of finding contiguous dirty ranges492// of cards to process and clear.493494DirtyCardToOopClosure* dcto_cl = sp->new_dcto_cl(cl, precision(),495cl->gen_boundary());496ClearNoncleanCardWrapper clear_cl(dcto_cl, ct);497498clear_cl.do_MemRegion(mr);499}500}501}502503// The iterator itself is not MT-aware, but504// MT-aware callers and closures can use this to505// accomplish dirty card iteration in parallel. The506// iterator itself does not clear the dirty cards, or507// change their values in any manner.508void CardTableModRefBS::non_clean_card_iterate_serial(MemRegion mr,509MemRegionClosure* cl) {510bool is_par = (SharedHeap::heap()->n_par_threads() > 0);511assert(!is_par ||512(SharedHeap::heap()->n_par_threads() ==513SharedHeap::heap()->workers()->active_workers()), "Mismatch");514for (int i = 0; i < _cur_covered_regions; i++) {515MemRegion mri = mr.intersection(_covered[i]);516if (mri.word_size() > 0) {517jbyte* cur_entry = byte_for(mri.last());518jbyte* limit = byte_for(mri.start());519while (cur_entry >= limit) {520jbyte* next_entry = cur_entry - 1;521if (*cur_entry != clean_card) {522size_t non_clean_cards = 1;523// Should the next card be included in this range of dirty cards.524while (next_entry >= limit && *next_entry != clean_card) {525non_clean_cards++;526cur_entry = next_entry;527next_entry--;528}529// The memory region may not be on a card boundary. So that530// objects beyond the end of the region are not processed, make531// cur_cards precise with regard to the end of the memory region.532MemRegion cur_cards(addr_for(cur_entry),533non_clean_cards * card_size_in_words);534MemRegion dirty_region = cur_cards.intersection(mri);535cl->do_MemRegion(dirty_region);536}537cur_entry = next_entry;538}539}540}541}542543void CardTableModRefBS::dirty_MemRegion(MemRegion mr) {544assert((HeapWord*)align_size_down((uintptr_t)mr.start(), HeapWordSize) == mr.start(), "Unaligned start");545assert((HeapWord*)align_size_up ((uintptr_t)mr.end(), HeapWordSize) == mr.end(), "Unaligned end" );546jbyte* cur = byte_for(mr.start());547jbyte* last = byte_after(mr.last());548while (cur < last) {549*cur = dirty_card;550cur++;551}552}553554void CardTableModRefBS::invalidate(MemRegion mr, bool whole_heap) {555assert((HeapWord*)align_size_down((uintptr_t)mr.start(), HeapWordSize) == mr.start(), "Unaligned start");556assert((HeapWord*)align_size_up ((uintptr_t)mr.end(), HeapWordSize) == mr.end(), "Unaligned end" );557for (int i = 0; i < _cur_covered_regions; i++) {558MemRegion mri = mr.intersection(_covered[i]);559if (!mri.is_empty()) dirty_MemRegion(mri);560}561}562563void CardTableModRefBS::clear_MemRegion(MemRegion mr) {564// Be conservative: only clean cards entirely contained within the565// region.566jbyte* cur;567if (mr.start() == _whole_heap.start()) {568cur = byte_for(mr.start());569} else {570assert(mr.start() > _whole_heap.start(), "mr is not covered.");571cur = byte_after(mr.start() - 1);572}573jbyte* last = byte_after(mr.last());574memset(cur, clean_card, pointer_delta(last, cur, sizeof(jbyte)));575}576577void CardTableModRefBS::clear(MemRegion mr) {578for (int i = 0; i < _cur_covered_regions; i++) {579MemRegion mri = mr.intersection(_covered[i]);580if (!mri.is_empty()) clear_MemRegion(mri);581}582}583584void CardTableModRefBS::dirty(MemRegion mr) {585jbyte* first = byte_for(mr.start());586jbyte* last = byte_after(mr.last());587memset(first, dirty_card, last-first);588}589590// Unlike several other card table methods, dirty_card_iterate()591// iterates over dirty cards ranges in increasing address order.592void CardTableModRefBS::dirty_card_iterate(MemRegion mr,593MemRegionClosure* cl) {594for (int i = 0; i < _cur_covered_regions; i++) {595MemRegion mri = mr.intersection(_covered[i]);596if (!mri.is_empty()) {597jbyte *cur_entry, *next_entry, *limit;598for (cur_entry = byte_for(mri.start()), limit = byte_for(mri.last());599cur_entry <= limit;600cur_entry = next_entry) {601next_entry = cur_entry + 1;602if (*cur_entry == dirty_card) {603size_t dirty_cards;604// Accumulate maximal dirty card range, starting at cur_entry605for (dirty_cards = 1;606next_entry <= limit && *next_entry == dirty_card;607dirty_cards++, next_entry++);608MemRegion cur_cards(addr_for(cur_entry),609dirty_cards*card_size_in_words);610cl->do_MemRegion(cur_cards);611}612}613}614}615}616617MemRegion CardTableModRefBS::dirty_card_range_after_reset(MemRegion mr,618bool reset,619int reset_val) {620for (int i = 0; i < _cur_covered_regions; i++) {621MemRegion mri = mr.intersection(_covered[i]);622if (!mri.is_empty()) {623jbyte* cur_entry, *next_entry, *limit;624for (cur_entry = byte_for(mri.start()), limit = byte_for(mri.last());625cur_entry <= limit;626cur_entry = next_entry) {627next_entry = cur_entry + 1;628if (*cur_entry == dirty_card) {629size_t dirty_cards;630// Accumulate maximal dirty card range, starting at cur_entry631for (dirty_cards = 1;632next_entry <= limit && *next_entry == dirty_card;633dirty_cards++, next_entry++);634MemRegion cur_cards(addr_for(cur_entry),635dirty_cards*card_size_in_words);636if (reset) {637for (size_t i = 0; i < dirty_cards; i++) {638cur_entry[i] = reset_val;639}640}641return cur_cards;642}643}644}645}646return MemRegion(mr.end(), mr.end());647}648649uintx CardTableModRefBS::ct_max_alignment_constraint() {650return card_size * os::vm_page_size();651}652653void CardTableModRefBS::verify_guard() {654// For product build verification655guarantee(_byte_map[_guard_index] == last_card,656"card table guard has been modified");657}658659void CardTableModRefBS::verify() {660verify_guard();661}662663#ifndef PRODUCT664void CardTableModRefBS::verify_region(MemRegion mr,665jbyte val, bool val_equals) {666jbyte* start = byte_for(mr.start());667jbyte* end = byte_for(mr.last());668bool failures = false;669for (jbyte* curr = start; curr <= end; ++curr) {670jbyte curr_val = *curr;671bool failed = (val_equals) ? (curr_val != val) : (curr_val == val);672if (failed) {673if (!failures) {674tty->cr();675tty->print_cr("== CT verification failed: [" INTPTR_FORMAT "," INTPTR_FORMAT "]", p2i(start), p2i(end));676tty->print_cr("== %sexpecting value: %d",677(val_equals) ? "" : "not ", val);678failures = true;679}680tty->print_cr("== card " PTR_FORMAT " [" PTR_FORMAT "," PTR_FORMAT "], "681"val: %d", p2i(curr), p2i(addr_for(curr)),682p2i((HeapWord*) (((size_t) addr_for(curr)) + card_size)),683(int) curr_val);684}685}686guarantee(!failures, "there should not have been any failures");687}688689void CardTableModRefBS::verify_not_dirty_region(MemRegion mr) {690verify_region(mr, dirty_card, false /* val_equals */);691}692693void CardTableModRefBS::verify_dirty_region(MemRegion mr) {694verify_region(mr, dirty_card, true /* val_equals */);695}696#endif697698void CardTableModRefBS::print_on(outputStream* st) const {699st->print_cr("Card table byte_map: [" INTPTR_FORMAT "," INTPTR_FORMAT "] byte_map_base: " INTPTR_FORMAT,700p2i(_byte_map), p2i(_byte_map + _byte_map_size), p2i(byte_map_base));701}702703bool CardTableModRefBSForCTRS::card_will_be_scanned(jbyte cv) {704return705CardTableModRefBS::card_will_be_scanned(cv) ||706_rs->is_prev_nonclean_card_val(cv);707};708709bool CardTableModRefBSForCTRS::card_may_have_been_dirty(jbyte cv) {710return711cv != clean_card &&712(CardTableModRefBS::card_may_have_been_dirty(cv) ||713CardTableRS::youngergen_may_have_been_dirty(cv));714};715716717