1 /*
   2  * Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "gc/g1/concurrentG1Refine.hpp"
  27 #include "gc/g1/dirtyCardQueue.hpp"
  28 #include "gc/g1/g1BlockOffsetTable.inline.hpp"
  29 #include "gc/g1/g1CollectedHeap.inline.hpp"
  30 #include "gc/g1/g1FromCardCache.hpp"
  31 #include "gc/g1/g1GCPhaseTimes.hpp"
  32 #include "gc/g1/g1HotCardCache.hpp"
  33 #include "gc/g1/g1OopClosures.inline.hpp"
  34 #include "gc/g1/g1RemSet.inline.hpp"
  35 #include "gc/g1/g1SATBCardTableModRefBS.inline.hpp"
  36 #include "gc/g1/heapRegion.inline.hpp"
  37 #include "gc/g1/heapRegionManager.inline.hpp"
  38 #include "gc/g1/heapRegionRemSet.hpp"
  39 #include "gc/shared/gcTraceTime.inline.hpp"
  40 #include "memory/iterator.hpp"
  41 #include "memory/resourceArea.hpp"
  42 #include "oops/oop.inline.hpp"
  43 #include "utilities/globalDefinitions.hpp"
  44 #include "utilities/intHisto.hpp"
  45 #include "utilities/stack.inline.hpp"
  46 
  47 // Collects information about the overall remembered set scan progress during an evacuation.
  48 class G1RemSetScanState : public CHeapObj<mtGC> {
  49 private:
  50   class G1ClearCardTableTask : public AbstractGangTask {
  51     G1CollectedHeap* _g1h;
  52     uint* _dirty_region_list;
  53     size_t _num_dirty_regions;
  54     size_t _chunk_length;
  55 
  56     size_t volatile _cur_dirty_regions;
  57   public:
  58     G1ClearCardTableTask(G1CollectedHeap* g1h,
  59                          uint* dirty_region_list,
  60                          size_t num_dirty_regions,
  61                          size_t chunk_length) :
  62       AbstractGangTask("G1 Clear Card Table Task"),
  63       _g1h(g1h),
  64       _dirty_region_list(dirty_region_list),
  65       _num_dirty_regions(num_dirty_regions),
  66       _chunk_length(chunk_length),
  67       _cur_dirty_regions(0) {
  68 
  69       assert(chunk_length > 0, "must be");
  70     }
  71 
  72     static size_t chunk_size() { return M; }
  73 
  74     void work(uint worker_id) {
  75       G1SATBCardTableModRefBS* ct_bs = _g1h->g1_barrier_set();
  76 
  77       while (_cur_dirty_regions < _num_dirty_regions) {
  78         size_t next = Atomic::add(_chunk_length, &_cur_dirty_regions) - _chunk_length;
  79         size_t max = MIN2(next + _chunk_length, _num_dirty_regions);
  80 
  81         for (size_t i = next; i < max; i++) {
  82           HeapRegion* r = _g1h->region_at(_dirty_region_list[i]);
  83           if (!r->is_survivor()) {
  84             ct_bs->clear(MemRegion(r->bottom(), r->end()));
  85           }
  86         }
  87       }
  88     }
  89   };
  90 
  91   size_t _max_regions;
  92 
  93   // Scan progress for the remembered set of a single region. Transitions from
  94   // Unclaimed -> Claimed -> Complete.
  95   // At each of the transitions the thread that does the transition needs to perform
  96   // some special action once. This is the reason for the extra "Claimed" state.
  97   typedef jint G1RemsetIterState;
  98 
  99   static const G1RemsetIterState Unclaimed = 0; // The remembered set has not been scanned yet.
 100   static const G1RemsetIterState Claimed = 1;   // The remembered set is currently being scanned.
 101   static const G1RemsetIterState Complete = 2;  // The remembered set has been completely scanned.
 102 
 103   G1RemsetIterState volatile* _iter_states;
 104   // The current location where the next thread should continue scanning in a region's
 105   // remembered set.
 106   size_t volatile* _iter_claims;
 107 
 108   // Temporary buffer holding the regions we used to store remembered set scan duplicate
 109   // information. These are also called "dirty". Valid entries are from [0.._cur_dirty_region)
 110   uint* _dirty_region_buffer;
 111 
 112   typedef jbyte IsDirtyRegionState;
 113   static const IsDirtyRegionState Clean = 0;
 114   static const IsDirtyRegionState Dirty = 1;
 115   // Holds a flag for every region whether it is in the _dirty_region_buffer already
 116   // to avoid duplicates. Uses jbyte since there are no atomic instructions for bools.
 117   IsDirtyRegionState* _in_dirty_region_buffer;
 118   size_t _cur_dirty_region;
 119 public:
 120   G1RemSetScanState() :
 121     _max_regions(0),
 122     _iter_states(NULL),
 123     _iter_claims(NULL),
 124     _dirty_region_buffer(NULL),
 125     _in_dirty_region_buffer(NULL),
 126     _cur_dirty_region(0) {
 127 
 128   }
 129 
 130   ~G1RemSetScanState() {
 131     if (_iter_states != NULL) {
 132       FREE_C_HEAP_ARRAY(G1RemsetIterState, _iter_states);
 133     }
 134     if (_iter_claims != NULL) {
 135       FREE_C_HEAP_ARRAY(size_t, _iter_claims);
 136     }
 137     if (_dirty_region_buffer != NULL) {
 138       FREE_C_HEAP_ARRAY(uint, _dirty_region_buffer);
 139     }
 140     if (_in_dirty_region_buffer != NULL) {
 141       FREE_C_HEAP_ARRAY(IsDirtyRegionState, _in_dirty_region_buffer);
 142     }
 143   }
 144 
 145   void initialize(uint max_regions) {
 146     assert(_iter_states == NULL, "Must not be initialized twice");
 147     assert(_iter_claims == NULL, "Must not be initialized twice");
 148     _max_regions = max_regions;
 149     _iter_states = NEW_C_HEAP_ARRAY(G1RemsetIterState, max_regions, mtGC);
 150     _iter_claims = NEW_C_HEAP_ARRAY(size_t, max_regions, mtGC);
 151     _dirty_region_buffer = NEW_C_HEAP_ARRAY(uint, max_regions, mtGC);
 152     _in_dirty_region_buffer = NEW_C_HEAP_ARRAY(IsDirtyRegionState, max_regions, mtGC);
 153   }
 154 
 155   void reset() {
 156     for (uint i = 0; i < _max_regions; i++) {
 157       _iter_states[i] = Unclaimed;
 158     }
 159     memset((void*)_iter_claims, 0, _max_regions * sizeof(size_t));
 160     memset(_in_dirty_region_buffer, Clean, _max_regions * sizeof(IsDirtyRegionState));
 161     _cur_dirty_region = 0;
 162   }
 163 
 164   // Attempt to claim the remembered set of the region for iteration. Returns true
 165   // if this call caused the transition from Unclaimed to Claimed.
 166   inline bool claim_iter(uint region) {
 167     assert(region < _max_regions, "Tried to access invalid region %u", region);
 168     if (_iter_states[region] != Unclaimed) {
 169       return false;
 170     }
 171     jint res = Atomic::cmpxchg(Claimed, (jint*)(&_iter_states[region]), Unclaimed);
 172     return (res == Unclaimed);
 173   }
 174 
 175   // Try to atomically sets the iteration state to "complete". Returns true for the
 176   // thread that caused the transition.
 177   inline bool set_iter_complete(uint region) {
 178     if (iter_is_complete(region)) {
 179       return false;
 180     }
 181     jint res = Atomic::cmpxchg(Complete, (jint*)(&_iter_states[region]), Claimed);
 182     return (res == Claimed);
 183   }
 184 
 185   // Returns true if the region's iteration is complete.
 186   inline bool iter_is_complete(uint region) const {
 187     assert(region < _max_regions, "Tried to access invalid region %u", region);
 188     return _iter_states[region] == Complete;
 189   }
 190 
 191   // The current position within the remembered set of the given region.
 192   inline size_t iter_claimed(uint region) const {
 193     assert(region < _max_regions, "Tried to access invalid region %u", region);
 194     return _iter_claims[region];
 195   }
 196 
 197   // Claim the next block of cards within the remembered set of the region with
 198   // step size.
 199   inline size_t iter_claimed_next(uint region, size_t step) {
 200     return Atomic::add(step, &_iter_claims[region]) - step;
 201   }
 202 
 203   void add_dirty_region(uint region) {
 204     if (_in_dirty_region_buffer[region] == Dirty) {
 205       return;
 206     }
 207 
 208     bool marked_as_dirty = Atomic::cmpxchg(Dirty, &_in_dirty_region_buffer[region], Clean) == Clean;
 209     if (marked_as_dirty) {
 210       size_t allocated = Atomic::add(1, &_cur_dirty_region) - 1;
 211       _dirty_region_buffer[allocated] = region;
 212     }
 213   }
 214 
 215   // Clear the card table of "dirty" regions.
 216   void clear_card_table(WorkGang* workers) {
 217     if (_cur_dirty_region == 0) {
 218       return;
 219     }
 220 
 221     size_t const num_chunks = align_size_up(_cur_dirty_region * HeapRegion::CardsPerRegion, G1ClearCardTableTask::chunk_size()) / G1ClearCardTableTask::chunk_size();
 222     uint const num_workers = (uint)MIN2(num_chunks, (size_t)workers->active_workers());
 223     size_t const chunk_length = G1ClearCardTableTask::chunk_size() / HeapRegion::CardsPerRegion;
 224 
 225     // Iterate over the dirty cards region list.
 226     G1ClearCardTableTask cl(G1CollectedHeap::heap(), _dirty_region_buffer, _cur_dirty_region, chunk_length);
 227 
 228     log_debug(gc, ergo)("Running %s using %u workers for " SIZE_FORMAT " "
 229                         "units of work for " SIZE_FORMAT " regions.",
 230                         cl.name(), num_workers, num_chunks, _cur_dirty_region);
 231     workers->run_task(&cl, num_workers);
 232 
 233 #ifndef PRODUCT
 234     // Need to synchronize with concurrent cleanup since it needs to
 235     // finish its card table clearing before we can verify.
 236     G1CollectedHeap::heap()->wait_while_free_regions_coming();
 237     G1CollectedHeap::heap()->verifier()->verify_card_table_cleanup();
 238 #endif
 239   }
 240 };
 241 
 242 G1RemSet::G1RemSet(G1CollectedHeap* g1,
 243                    CardTableModRefBS* ct_bs,
 244                    G1HotCardCache* hot_card_cache) :
 245   _g1(g1),
 246   _scan_state(new G1RemSetScanState()),
 247   _conc_refine_cards(0),
 248   _ct_bs(ct_bs),
 249   _g1p(_g1->g1_policy()),
 250   _hot_card_cache(hot_card_cache),
 251   _prev_period_summary(),
 252   _into_cset_dirty_card_queue_set(false)
 253 {
 254   if (log_is_enabled(Trace, gc, remset)) {
 255     _prev_period_summary.initialize(this);
 256   }
 257   // Initialize the card queue set used to hold cards containing
 258   // references into the collection set.
 259   _into_cset_dirty_card_queue_set.initialize(NULL, // Should never be called by the Java code
 260                                              DirtyCardQ_CBL_mon,
 261                                              DirtyCardQ_FL_lock,
 262                                              -1, // never trigger processing
 263                                              -1, // no limit on length
 264                                              Shared_DirtyCardQ_lock,
 265                                              &JavaThread::dirty_card_queue_set());
 266 }
 267 
 268 G1RemSet::~G1RemSet() {
 269   if (_scan_state != NULL) {
 270     delete _scan_state;
 271   }
 272 }
 273 
 274 uint G1RemSet::num_par_rem_sets() {
 275   return MAX2(DirtyCardQueueSet::num_par_ids() + ConcurrentG1Refine::thread_num(), ParallelGCThreads);
 276 }
 277 
 278 void G1RemSet::initialize(size_t capacity, uint max_regions) {
 279   G1FromCardCache::initialize(num_par_rem_sets(), max_regions);
 280   _scan_state->initialize(max_regions);
 281   {
 282     GCTraceTime(Debug, gc, marking)("Initialize Card Live Data");
 283     _card_live_data.initialize(capacity, max_regions);
 284   }
 285   if (G1PretouchAuxiliaryMemory) {
 286     GCTraceTime(Debug, gc, marking)("Pre-Touch Card Live Data");
 287     _card_live_data.pretouch();
 288   }
 289 }
 290 
 291 G1ScanRSClosure::G1ScanRSClosure(G1RemSetScanState* scan_state,
 292                                  G1ParPushHeapRSClosure* push_heap_cl,
 293                                  CodeBlobClosure* code_root_cl,
 294                                  uint worker_i) :
 295   _scan_state(scan_state),
 296   _push_heap_cl(push_heap_cl),
 297   _code_root_cl(code_root_cl),
 298   _strong_code_root_scan_time_sec(0.0),
 299   _cards(0),
 300   _cards_done(0),
 301   _worker_i(worker_i) {
 302   _g1h = G1CollectedHeap::heap();
 303   _bot = _g1h->bot();
 304   _ct_bs = _g1h->g1_barrier_set();
 305   _block_size = MAX2<size_t>(G1RSetScanBlockSize, 1);
 306 }
 307 
 308 void G1ScanRSClosure::scan_card(size_t index, HeapRegion *r) {
 309   // Stack allocate the DirtyCardToOopClosure instance
 310   HeapRegionDCTOC cl(_g1h, r, _push_heap_cl, CardTableModRefBS::Precise);
 311 
 312   // Set the "from" region in the closure.
 313   _push_heap_cl->set_region(r);
 314   MemRegion card_region(_bot->address_for_index(index), BOTConstants::N_words);
 315   MemRegion pre_gc_allocated(r->bottom(), r->scan_top());
 316   MemRegion mr = pre_gc_allocated.intersection(card_region);
 317   if (!mr.is_empty() && !_ct_bs->is_card_claimed(index)) {
 318     // We make the card as "claimed" lazily (so races are possible
 319     // but they're benign), which reduces the number of duplicate
 320     // scans (the rsets of the regions in the cset can intersect).
 321     _ct_bs->set_card_claimed(index);
 322     _cards_done++;
 323     cl.do_MemRegion(mr);
 324   }
 325 }
 326 
 327 void G1ScanRSClosure::scan_strong_code_roots(HeapRegion* r) {
 328   double scan_start = os::elapsedTime();
 329   r->strong_code_roots_do(_code_root_cl);
 330   _strong_code_root_scan_time_sec += (os::elapsedTime() - scan_start);
 331 }
 332 
 333 bool G1ScanRSClosure::doHeapRegion(HeapRegion* r) {
 334   assert(r->in_collection_set(), "should only be called on elements of CS.");
 335   uint region_idx = r->hrm_index();
 336 
 337   if (_scan_state->iter_is_complete(region_idx)) {
 338     return false;
 339   }
 340   if (_scan_state->claim_iter(region_idx)) {
 341     // If we ever free the collection set concurrently, we should also
 342     // clear the card table concurrently therefore we won't need to
 343     // add regions of the collection set to the dirty cards region.
 344     _scan_state->add_dirty_region(region_idx);
 345   }
 346 
 347   HeapRegionRemSetIterator iter(r->rem_set());
 348   size_t card_index;
 349 
 350   // We claim cards in block so as to reduce the contention. The block size is determined by
 351   // the G1RSetScanBlockSize parameter.
 352   size_t claimed_card_block = _scan_state->iter_claimed_next(region_idx, _block_size);
 353   for (size_t current_card = 0; iter.has_next(card_index); current_card++) {
 354     if (current_card >= claimed_card_block + _block_size) {
 355       claimed_card_block = _scan_state->iter_claimed_next(region_idx, _block_size);
 356     }
 357     if (current_card < claimed_card_block) {
 358       continue;
 359     }
 360     HeapWord* card_start = _g1h->bot()->address_for_index(card_index);
 361 
 362     HeapRegion* card_region = _g1h->heap_region_containing(card_start);
 363     _cards++;
 364 
 365     _scan_state->add_dirty_region(card_region->hrm_index());
 366 
 367     // If the card is dirty, then we will scan it during updateRS.
 368     if (!card_region->in_collection_set() &&
 369         !_ct_bs->is_card_dirty(card_index)) {
 370       scan_card(card_index, card_region);
 371     }
 372   }
 373   if (_scan_state->set_iter_complete(region_idx)) {
 374     // Scan the strong code root list attached to the current region
 375     scan_strong_code_roots(r);
 376   }
 377   return false;
 378 }
 379 
 380 size_t G1RemSet::scan_rem_set(G1ParPushHeapRSClosure* oops_in_heap_closure,
 381                               CodeBlobClosure* heap_region_codeblobs,
 382                               uint worker_i) {
 383   double rs_time_start = os::elapsedTime();
 384 
 385   HeapRegion *startRegion = _g1->start_cset_region_for_worker(worker_i);
 386 
 387   G1ScanRSClosure cl(_scan_state, oops_in_heap_closure, heap_region_codeblobs, worker_i);
 388   _g1->collection_set_iterate_from(startRegion, &cl);
 389 
 390    double scan_rs_time_sec = (os::elapsedTime() - rs_time_start) -
 391                               cl.strong_code_root_scan_time_sec();
 392 
 393   _g1p->phase_times()->record_time_secs(G1GCPhaseTimes::ScanRS, worker_i, scan_rs_time_sec);
 394   _g1p->phase_times()->record_time_secs(G1GCPhaseTimes::CodeRoots, worker_i, cl.strong_code_root_scan_time_sec());
 395 
 396   return cl.cards_done();
 397 }
 398 
 399 // Closure used for updating RSets and recording references that
 400 // point into the collection set. Only called during an
 401 // evacuation pause.
 402 
 403 class RefineRecordRefsIntoCSCardTableEntryClosure: public CardTableEntryClosure {
 404   G1RemSet* _g1rs;
 405   DirtyCardQueue* _into_cset_dcq;
 406   G1ParPushHeapRSClosure* _cl;
 407 public:
 408   RefineRecordRefsIntoCSCardTableEntryClosure(G1CollectedHeap* g1h,
 409                                               DirtyCardQueue* into_cset_dcq,
 410                                               G1ParPushHeapRSClosure* cl) :
 411     _g1rs(g1h->g1_rem_set()), _into_cset_dcq(into_cset_dcq), _cl(cl)
 412   {}
 413 
 414   bool do_card_ptr(jbyte* card_ptr, uint worker_i) {
 415     // The only time we care about recording cards that
 416     // contain references that point into the collection set
 417     // is during RSet updating within an evacuation pause.
 418     // In this case worker_i should be the id of a GC worker thread.
 419     assert(SafepointSynchronize::is_at_safepoint(), "not during an evacuation pause");
 420     assert(worker_i < ParallelGCThreads, "should be a GC worker");
 421 
 422     if (_g1rs->refine_card(card_ptr, worker_i, _cl)) {
 423       // 'card_ptr' contains references that point into the collection
 424       // set. We need to record the card in the DCQS
 425       // (_into_cset_dirty_card_queue_set)
 426       // that's used for that purpose.
 427       //
 428       // Enqueue the card
 429       _into_cset_dcq->enqueue(card_ptr);
 430     }
 431     return true;
 432   }
 433 };
 434 
 435 void G1RemSet::update_rem_set(DirtyCardQueue* into_cset_dcq,
 436                               G1ParPushHeapRSClosure* oops_in_heap_closure,
 437                               uint worker_i) {
 438   RefineRecordRefsIntoCSCardTableEntryClosure into_cset_update_rs_cl(_g1, into_cset_dcq, oops_in_heap_closure);
 439 
 440   G1GCParPhaseTimesTracker x(_g1p->phase_times(), G1GCPhaseTimes::UpdateRS, worker_i);
 441   if (G1HotCardCache::default_use_cache()) {
 442     // Apply the closure to the entries of the hot card cache.
 443     G1GCParPhaseTimesTracker y(_g1p->phase_times(), G1GCPhaseTimes::ScanHCC, worker_i);
 444     _g1->iterate_hcc_closure(&into_cset_update_rs_cl, worker_i);
 445   }
 446   // Apply the closure to all remaining log entries.
 447   _g1->iterate_dirty_card_closure(&into_cset_update_rs_cl, worker_i);
 448 }
 449 
 450 void G1RemSet::cleanupHRRS() {
 451   HeapRegionRemSet::cleanup();
 452 }
 453 
 454 size_t G1RemSet::oops_into_collection_set_do(G1ParPushHeapRSClosure* cl,
 455                                              CodeBlobClosure* heap_region_codeblobs,
 456                                              uint worker_i) {
 457   // A DirtyCardQueue that is used to hold cards containing references
 458   // that point into the collection set. This DCQ is associated with a
 459   // special DirtyCardQueueSet (see g1CollectedHeap.hpp).  Under normal
 460   // circumstances (i.e. the pause successfully completes), these cards
 461   // are just discarded (there's no need to update the RSets of regions
 462   // that were in the collection set - after the pause these regions
 463   // are wholly 'free' of live objects. In the event of an evacuation
 464   // failure the cards/buffers in this queue set are passed to the
 465   // DirtyCardQueueSet that is used to manage RSet updates
 466   DirtyCardQueue into_cset_dcq(&_into_cset_dirty_card_queue_set);
 467 
 468   update_rem_set(&into_cset_dcq, cl, worker_i);
 469   return scan_rem_set(cl, heap_region_codeblobs, worker_i);;
 470 }
 471 
 472 void G1RemSet::prepare_for_oops_into_collection_set_do() {
 473   _g1->set_refine_cte_cl_concurrency(false);
 474   DirtyCardQueueSet& dcqs = JavaThread::dirty_card_queue_set();
 475   dcqs.concatenate_logs();
 476 
 477   _scan_state->reset();
 478 }
 479 
 480 void G1RemSet::cleanup_after_oops_into_collection_set_do() {
 481   G1GCPhaseTimes* phase_times = _g1->g1_policy()->phase_times();
 482   // Cleanup after copy
 483   _g1->set_refine_cte_cl_concurrency(true);
 484 
 485   // Set all cards back to clean.
 486   double start = os::elapsedTime();
 487   _scan_state->clear_card_table(_g1->workers());
 488   phase_times->record_clear_ct_time((os::elapsedTime() - start) * 1000.0);
 489 
 490   DirtyCardQueueSet& into_cset_dcqs = _into_cset_dirty_card_queue_set;
 491 
 492   if (_g1->evacuation_failed()) {
 493     double restore_remembered_set_start = os::elapsedTime();
 494 
 495     // Restore remembered sets for the regions pointing into the collection set.
 496     // We just need to transfer the completed buffers from the DirtyCardQueueSet
 497     // used to hold cards that contain references that point into the collection set
 498     // to the DCQS used to hold the deferred RS updates.
 499     _g1->dirty_card_queue_set().merge_bufferlists(&into_cset_dcqs);
 500     phase_times->record_evac_fail_restore_remsets((os::elapsedTime() - restore_remembered_set_start) * 1000.0);
 501   }
 502 
 503   // Free any completed buffers in the DirtyCardQueueSet used to hold cards
 504   // which contain references that point into the collection.
 505   _into_cset_dirty_card_queue_set.clear();
 506   assert(_into_cset_dirty_card_queue_set.completed_buffers_num() == 0,
 507          "all buffers should be freed");
 508   _into_cset_dirty_card_queue_set.clear_n_completed_buffers();
 509 }
 510 
 511 class G1ScrubRSClosure: public HeapRegionClosure {
 512   G1CollectedHeap* _g1h;
 513   G1CardLiveData* _live_data;
 514 public:
 515   G1ScrubRSClosure(G1CardLiveData* live_data) :
 516     _g1h(G1CollectedHeap::heap()),
 517     _live_data(live_data) { }
 518 
 519   bool doHeapRegion(HeapRegion* r) {
 520     if (!r->is_continues_humongous()) {
 521       r->rem_set()->scrub(_live_data);
 522     }
 523     return false;
 524   }
 525 };
 526 
 527 void G1RemSet::scrub(uint worker_num, HeapRegionClaimer *hrclaimer) {
 528   G1ScrubRSClosure scrub_cl(&_card_live_data);
 529   _g1->heap_region_par_iterate(&scrub_cl, worker_num, hrclaimer);
 530 }
 531 
 532 G1TriggerClosure::G1TriggerClosure() :
 533   _triggered(false) { }
 534 
 535 G1InvokeIfNotTriggeredClosure::G1InvokeIfNotTriggeredClosure(G1TriggerClosure* t_cl,
 536                                                              OopClosure* oop_cl)  :
 537   _trigger_cl(t_cl), _oop_cl(oop_cl) { }
 538 
 539 G1Mux2Closure::G1Mux2Closure(OopClosure *c1, OopClosure *c2) :
 540   _c1(c1), _c2(c2) { }
 541 
 542 G1UpdateRSOrPushRefOopClosure::
 543 G1UpdateRSOrPushRefOopClosure(G1CollectedHeap* g1h,
 544                               G1RemSet* rs,
 545                               G1ParPushHeapRSClosure* push_ref_cl,
 546                               bool record_refs_into_cset,
 547                               uint worker_i) :
 548   _g1(g1h), _g1_rem_set(rs), _from(NULL),
 549   _record_refs_into_cset(record_refs_into_cset),
 550   _push_ref_cl(push_ref_cl), _worker_i(worker_i) { }
 551 
 552 // Returns true if the given card contains references that point
 553 // into the collection set, if we're checking for such references;
 554 // false otherwise.
 555 
 556 bool G1RemSet::refine_card(jbyte* card_ptr,
 557                            uint worker_i,
 558                            G1ParPushHeapRSClosure*  oops_in_heap_closure) {
 559   assert(_g1->is_in_exact(_ct_bs->addr_for(card_ptr)),
 560          "Card at " PTR_FORMAT " index " SIZE_FORMAT " representing heap at " PTR_FORMAT " (%u) must be in committed heap",
 561          p2i(card_ptr),
 562          _ct_bs->index_for(_ct_bs->addr_for(card_ptr)),
 563          p2i(_ct_bs->addr_for(card_ptr)),
 564          _g1->addr_to_region(_ct_bs->addr_for(card_ptr)));
 565 
 566   bool check_for_refs_into_cset = oops_in_heap_closure != NULL;
 567 
 568   // If the card is no longer dirty, nothing to do.
 569   if (*card_ptr != CardTableModRefBS::dirty_card_val()) {
 570     // No need to return that this card contains refs that point
 571     // into the collection set.
 572     return false;
 573   }
 574 
 575   // Construct the region representing the card.
 576   HeapWord* start = _ct_bs->addr_for(card_ptr);
 577   // And find the region containing it.
 578   HeapRegion* r = _g1->heap_region_containing(start);
 579 
 580   // Why do we have to check here whether a card is on a young region,
 581   // given that we dirty young regions and, as a result, the
 582   // post-barrier is supposed to filter them out and never to enqueue
 583   // them? When we allocate a new region as the "allocation region" we
 584   // actually dirty its cards after we release the lock, since card
 585   // dirtying while holding the lock was a performance bottleneck. So,
 586   // as a result, it is possible for other threads to actually
 587   // allocate objects in the region (after the acquire the lock)
 588   // before all the cards on the region are dirtied. This is unlikely,
 589   // and it doesn't happen often, but it can happen. So, the extra
 590   // check below filters out those cards.
 591   if (r->is_young()) {
 592     return false;
 593   }
 594 
 595   // While we are processing RSet buffers during the collection, we
 596   // actually don't want to scan any cards on the collection set,
 597   // since we don't want to update remembered sets with entries that
 598   // point into the collection set, given that live objects from the
 599   // collection set are about to move and such entries will be stale
 600   // very soon. This change also deals with a reliability issue which
 601   // involves scanning a card in the collection set and coming across
 602   // an array that was being chunked and looking malformed. Note,
 603   // however, that if evacuation fails, we have to scan any objects
 604   // that were not moved and create any missing entries.
 605   if (r->in_collection_set()) {
 606     return false;
 607   }
 608 
 609   // The result from the hot card cache insert call is either:
 610   //   * pointer to the current card
 611   //     (implying that the current card is not 'hot'),
 612   //   * null
 613   //     (meaning we had inserted the card ptr into the "hot" card cache,
 614   //     which had some headroom),
 615   //   * a pointer to a "hot" card that was evicted from the "hot" cache.
 616   //
 617 
 618   if (_hot_card_cache->use_cache()) {
 619     assert(!check_for_refs_into_cset, "sanity");
 620     assert(!SafepointSynchronize::is_at_safepoint(), "sanity");
 621 
 622     card_ptr = _hot_card_cache->insert(card_ptr);
 623     if (card_ptr == NULL) {
 624       // There was no eviction. Nothing to do.
 625       return false;
 626     }
 627 
 628     start = _ct_bs->addr_for(card_ptr);
 629     r = _g1->heap_region_containing(start);
 630 
 631     // Checking whether the region we got back from the cache
 632     // is young here is inappropriate. The region could have been
 633     // freed, reallocated and tagged as young while in the cache.
 634     // Hence we could see its young type change at any time.
 635   }
 636 
 637   // Don't use addr_for(card_ptr + 1) which can ask for
 638   // a card beyond the heap.  This is not safe without a perm
 639   // gen at the upper end of the heap.
 640   HeapWord* end   = start + CardTableModRefBS::card_size_in_words;
 641   MemRegion dirtyRegion(start, end);
 642 
 643   G1UpdateRSOrPushRefOopClosure update_rs_oop_cl(_g1,
 644                                                  _g1->g1_rem_set(),
 645                                                  oops_in_heap_closure,
 646                                                  check_for_refs_into_cset,
 647                                                  worker_i);
 648   update_rs_oop_cl.set_from(r);
 649 
 650   G1TriggerClosure trigger_cl;
 651   FilterIntoCSClosure into_cs_cl(_g1, &trigger_cl);
 652   G1InvokeIfNotTriggeredClosure invoke_cl(&trigger_cl, &into_cs_cl);
 653   G1Mux2Closure mux(&invoke_cl, &update_rs_oop_cl);
 654 
 655   FilterOutOfRegionClosure filter_then_update_rs_oop_cl(r,
 656                         (check_for_refs_into_cset ?
 657                                 (OopClosure*)&mux :
 658                                 (OopClosure*)&update_rs_oop_cl));
 659 
 660   // The region for the current card may be a young region. The
 661   // current card may have been a card that was evicted from the
 662   // card cache. When the card was inserted into the cache, we had
 663   // determined that its region was non-young. While in the cache,
 664   // the region may have been freed during a cleanup pause, reallocated
 665   // and tagged as young.
 666   //
 667   // We wish to filter out cards for such a region but the current
 668   // thread, if we're running concurrently, may "see" the young type
 669   // change at any time (so an earlier "is_young" check may pass or
 670   // fail arbitrarily). We tell the iteration code to perform this
 671   // filtering when it has been determined that there has been an actual
 672   // allocation in this region and making it safe to check the young type.
 673   bool filter_young = true;
 674 
 675   HeapWord* stop_point =
 676     r->oops_on_card_seq_iterate_careful(dirtyRegion,
 677                                         &filter_then_update_rs_oop_cl,
 678                                         filter_young,
 679                                         card_ptr);
 680 
 681   // If stop_point is non-null, then we encountered an unallocated region
 682   // (perhaps the unfilled portion of a TLAB.)  For now, we'll dirty the
 683   // card and re-enqueue: if we put off the card until a GC pause, then the
 684   // unallocated portion will be filled in.  Alternatively, we might try
 685   // the full complexity of the technique used in "regular" precleaning.
 686   if (stop_point != NULL) {
 687     // The card might have gotten re-dirtied and re-enqueued while we
 688     // worked.  (In fact, it's pretty likely.)
 689     if (*card_ptr != CardTableModRefBS::dirty_card_val()) {
 690       *card_ptr = CardTableModRefBS::dirty_card_val();
 691       MutexLockerEx x(Shared_DirtyCardQ_lock,
 692                       Mutex::_no_safepoint_check_flag);
 693       DirtyCardQueue* sdcq =
 694         JavaThread::dirty_card_queue_set().shared_dirty_card_queue();
 695       sdcq->enqueue(card_ptr);
 696     }
 697   } else {
 698     _conc_refine_cards++;
 699   }
 700 
 701   // This gets set to true if the card being refined has
 702   // references that point into the collection set.
 703   bool has_refs_into_cset = trigger_cl.triggered();
 704 
 705   // We should only be detecting that the card contains references
 706   // that point into the collection set if the current thread is
 707   // a GC worker thread.
 708   assert(!has_refs_into_cset || SafepointSynchronize::is_at_safepoint(),
 709            "invalid result at non safepoint");
 710 
 711   return has_refs_into_cset;
 712 }
 713 
 714 void G1RemSet::print_periodic_summary_info(const char* header, uint period_count) {
 715   if ((G1SummarizeRSetStatsPeriod > 0) && log_is_enabled(Trace, gc, remset) &&
 716       (period_count % G1SummarizeRSetStatsPeriod == 0)) {
 717 
 718     if (!_prev_period_summary.initialized()) {
 719       _prev_period_summary.initialize(this);
 720     }
 721 
 722     G1RemSetSummary current;
 723     current.initialize(this);
 724     _prev_period_summary.subtract_from(&current);
 725 
 726     Log(gc, remset) log;
 727     log.trace("%s", header);
 728     ResourceMark rm;
 729     _prev_period_summary.print_on(log.trace_stream());
 730 
 731     _prev_period_summary.set(&current);
 732   }
 733 }
 734 
 735 void G1RemSet::print_summary_info() {
 736   Log(gc, remset, exit) log;
 737   if (log.is_trace()) {
 738     log.trace(" Cumulative RS summary");
 739     G1RemSetSummary current;
 740     current.initialize(this);
 741     ResourceMark rm;
 742     current.print_on(log.trace_stream());
 743   }
 744 }
 745 
 746 void G1RemSet::prepare_for_verify() {
 747   if (G1HRRSFlushLogBuffersOnVerify &&
 748       (VerifyBeforeGC || VerifyAfterGC)
 749       &&  (!_g1->collector_state()->full_collection() || G1VerifyRSetsDuringFullGC)) {
 750     cleanupHRRS();
 751     _g1->set_refine_cte_cl_concurrency(false);
 752     if (SafepointSynchronize::is_at_safepoint()) {
 753       DirtyCardQueueSet& dcqs = JavaThread::dirty_card_queue_set();
 754       dcqs.concatenate_logs();
 755     }
 756 
 757     bool use_hot_card_cache = _hot_card_cache->use_cache();
 758     _hot_card_cache->set_use_cache(false);
 759 
 760     DirtyCardQueue into_cset_dcq(&_into_cset_dirty_card_queue_set);
 761     update_rem_set(&into_cset_dcq, NULL, 0);
 762     _into_cset_dirty_card_queue_set.clear();
 763 
 764     _hot_card_cache->set_use_cache(use_hot_card_cache);
 765     assert(JavaThread::dirty_card_queue_set().completed_buffers_num() == 0, "All should be consumed");
 766   }
 767 }
 768 
 769 void G1RemSet::create_card_live_data(WorkGang* workers, G1CMBitMap* mark_bitmap) {
 770   _card_live_data.create(workers, mark_bitmap);
 771 }
 772 
 773 void G1RemSet::finalize_card_live_data(WorkGang* workers, G1CMBitMap* mark_bitmap) {
 774   _card_live_data.finalize(workers, mark_bitmap);
 775 }
 776 
 777 void G1RemSet::verify_card_live_data(WorkGang* workers, G1CMBitMap* bitmap) {
 778   _card_live_data.verify(workers, bitmap);
 779 }
 780 
 781 void G1RemSet::clear_card_live_data(WorkGang* workers) {
 782   _card_live_data.clear(workers);
 783 }
 784 
 785 #ifdef ASSERT
 786 void G1RemSet::verify_card_live_data_is_clear() {
 787   _card_live_data.verify_is_clear();
 788 }
 789 #endif