src/share/vm/gc_implementation/g1/concurrentMark.hpp

Tue, 12 Oct 2010 09:36:48 -0700

author
johnc
date
Tue, 12 Oct 2010 09:36:48 -0700
changeset 2216
c32059ef4dc0
parent 2190
4805b9f4779e
child 2314
f95d63e2154a
permissions
-rw-r--r--

6971296: G1: simplify G1RemSet class hierarchy
Summary: Remove G1RemSet base class and StupidG1RemSet class; rename HRInto_G1RemSet to just G1RemSet.
Reviewed-by: ysr, tonyp

ysr@777 1 /*
trims@1907 2 * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
ysr@777 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ysr@777 4 *
ysr@777 5 * This code is free software; you can redistribute it and/or modify it
ysr@777 6 * under the terms of the GNU General Public License version 2 only, as
ysr@777 7 * published by the Free Software Foundation.
ysr@777 8 *
ysr@777 9 * This code is distributed in the hope that it will be useful, but WITHOUT
ysr@777 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ysr@777 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ysr@777 12 * version 2 for more details (a copy is included in the LICENSE file that
ysr@777 13 * accompanied this code).
ysr@777 14 *
ysr@777 15 * You should have received a copy of the GNU General Public License version
ysr@777 16 * 2 along with this work; if not, write to the Free Software Foundation,
ysr@777 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ysr@777 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
ysr@777 22 *
ysr@777 23 */
ysr@777 24
ysr@777 25 class G1CollectedHeap;
ysr@777 26 class CMTask;
jcoomes@1746 27 typedef GenericTaskQueue<oop> CMTaskQueue;
jcoomes@1746 28 typedef GenericTaskQueueSet<CMTaskQueue> CMTaskQueueSet;
ysr@777 29
ysr@777 30 // A generic CM bit map. This is essentially a wrapper around the BitMap
ysr@777 31 // class, with one bit per (1<<_shifter) HeapWords.
ysr@777 32
apetrusenko@984 33 class CMBitMapRO VALUE_OBJ_CLASS_SPEC {
ysr@777 34 protected:
ysr@777 35 HeapWord* _bmStartWord; // base address of range covered by map
ysr@777 36 size_t _bmWordSize; // map size (in #HeapWords covered)
ysr@777 37 const int _shifter; // map to char or bit
ysr@777 38 VirtualSpace _virtual_space; // underlying the bit map
ysr@777 39 BitMap _bm; // the bit map itself
ysr@777 40
ysr@777 41 public:
ysr@777 42 // constructor
ysr@777 43 CMBitMapRO(ReservedSpace rs, int shifter);
ysr@777 44
ysr@777 45 enum { do_yield = true };
ysr@777 46
ysr@777 47 // inquiries
ysr@777 48 HeapWord* startWord() const { return _bmStartWord; }
ysr@777 49 size_t sizeInWords() const { return _bmWordSize; }
ysr@777 50 // the following is one past the last word in space
ysr@777 51 HeapWord* endWord() const { return _bmStartWord + _bmWordSize; }
ysr@777 52
ysr@777 53 // read marks
ysr@777 54
ysr@777 55 bool isMarked(HeapWord* addr) const {
ysr@777 56 assert(_bmStartWord <= addr && addr < (_bmStartWord + _bmWordSize),
ysr@777 57 "outside underlying space?");
ysr@777 58 return _bm.at(heapWordToOffset(addr));
ysr@777 59 }
ysr@777 60
ysr@777 61 // iteration
ysr@777 62 bool iterate(BitMapClosure* cl) { return _bm.iterate(cl); }
ysr@777 63 bool iterate(BitMapClosure* cl, MemRegion mr);
ysr@777 64
ysr@777 65 // Return the address corresponding to the next marked bit at or after
ysr@777 66 // "addr", and before "limit", if "limit" is non-NULL. If there is no
ysr@777 67 // such bit, returns "limit" if that is non-NULL, or else "endWord()".
ysr@777 68 HeapWord* getNextMarkedWordAddress(HeapWord* addr,
ysr@777 69 HeapWord* limit = NULL) const;
ysr@777 70 // Return the address corresponding to the next unmarked bit at or after
ysr@777 71 // "addr", and before "limit", if "limit" is non-NULL. If there is no
ysr@777 72 // such bit, returns "limit" if that is non-NULL, or else "endWord()".
ysr@777 73 HeapWord* getNextUnmarkedWordAddress(HeapWord* addr,
ysr@777 74 HeapWord* limit = NULL) const;
ysr@777 75
ysr@777 76 // conversion utilities
ysr@777 77 // XXX Fix these so that offsets are size_t's...
ysr@777 78 HeapWord* offsetToHeapWord(size_t offset) const {
ysr@777 79 return _bmStartWord + (offset << _shifter);
ysr@777 80 }
ysr@777 81 size_t heapWordToOffset(HeapWord* addr) const {
ysr@777 82 return pointer_delta(addr, _bmStartWord) >> _shifter;
ysr@777 83 }
ysr@777 84 int heapWordDiffToOffsetDiff(size_t diff) const;
ysr@777 85 HeapWord* nextWord(HeapWord* addr) {
ysr@777 86 return offsetToHeapWord(heapWordToOffset(addr) + 1);
ysr@777 87 }
ysr@777 88
ysr@777 89 void mostly_disjoint_range_union(BitMap* from_bitmap,
ysr@777 90 size_t from_start_index,
ysr@777 91 HeapWord* to_start_word,
ysr@777 92 size_t word_num);
ysr@777 93
ysr@777 94 // debugging
ysr@777 95 NOT_PRODUCT(bool covers(ReservedSpace rs) const;)
ysr@777 96 };
ysr@777 97
ysr@777 98 class CMBitMap : public CMBitMapRO {
ysr@777 99
ysr@777 100 public:
ysr@777 101 // constructor
ysr@777 102 CMBitMap(ReservedSpace rs, int shifter) :
ysr@777 103 CMBitMapRO(rs, shifter) {}
ysr@777 104
ysr@777 105 // write marks
ysr@777 106 void mark(HeapWord* addr) {
ysr@777 107 assert(_bmStartWord <= addr && addr < (_bmStartWord + _bmWordSize),
ysr@777 108 "outside underlying space?");
ysr@777 109 _bm.at_put(heapWordToOffset(addr), true);
ysr@777 110 }
ysr@777 111 void clear(HeapWord* addr) {
ysr@777 112 assert(_bmStartWord <= addr && addr < (_bmStartWord + _bmWordSize),
ysr@777 113 "outside underlying space?");
ysr@777 114 _bm.at_put(heapWordToOffset(addr), false);
ysr@777 115 }
ysr@777 116 bool parMark(HeapWord* addr) {
ysr@777 117 assert(_bmStartWord <= addr && addr < (_bmStartWord + _bmWordSize),
ysr@777 118 "outside underlying space?");
ysr@777 119 return _bm.par_at_put(heapWordToOffset(addr), true);
ysr@777 120 }
ysr@777 121 bool parClear(HeapWord* addr) {
ysr@777 122 assert(_bmStartWord <= addr && addr < (_bmStartWord + _bmWordSize),
ysr@777 123 "outside underlying space?");
ysr@777 124 return _bm.par_at_put(heapWordToOffset(addr), false);
ysr@777 125 }
ysr@777 126 void markRange(MemRegion mr);
ysr@777 127 void clearAll();
ysr@777 128 void clearRange(MemRegion mr);
ysr@777 129
ysr@777 130 // Starting at the bit corresponding to "addr" (inclusive), find the next
ysr@777 131 // "1" bit, if any. This bit starts some run of consecutive "1"'s; find
ysr@777 132 // the end of this run (stopping at "end_addr"). Return the MemRegion
ysr@777 133 // covering from the start of the region corresponding to the first bit
ysr@777 134 // of the run to the end of the region corresponding to the last bit of
ysr@777 135 // the run. If there is no "1" bit at or after "addr", return an empty
ysr@777 136 // MemRegion.
ysr@777 137 MemRegion getAndClearMarkedRegion(HeapWord* addr, HeapWord* end_addr);
ysr@777 138 };
ysr@777 139
ysr@777 140 // Represents a marking stack used by the CM collector.
ysr@777 141 // Ideally this should be GrowableArray<> just like MSC's marking stack(s).
apetrusenko@984 142 class CMMarkStack VALUE_OBJ_CLASS_SPEC {
ysr@777 143 ConcurrentMark* _cm;
ysr@777 144 oop* _base; // bottom of stack
ysr@777 145 jint _index; // one more than last occupied index
ysr@777 146 jint _capacity; // max #elements
ysr@777 147 jint _oops_do_bound; // Number of elements to include in next iteration.
ysr@777 148 NOT_PRODUCT(jint _max_depth;) // max depth plumbed during run
ysr@777 149
ysr@777 150 bool _overflow;
ysr@777 151 DEBUG_ONLY(bool _drain_in_progress;)
ysr@777 152 DEBUG_ONLY(bool _drain_in_progress_yields;)
ysr@777 153
ysr@777 154 public:
ysr@777 155 CMMarkStack(ConcurrentMark* cm);
ysr@777 156 ~CMMarkStack();
ysr@777 157
ysr@777 158 void allocate(size_t size);
ysr@777 159
ysr@777 160 oop pop() {
ysr@777 161 if (!isEmpty()) {
ysr@777 162 return _base[--_index] ;
ysr@777 163 }
ysr@777 164 return NULL;
ysr@777 165 }
ysr@777 166
ysr@777 167 // If overflow happens, don't do the push, and record the overflow.
ysr@777 168 // *Requires* that "ptr" is already marked.
ysr@777 169 void push(oop ptr) {
ysr@777 170 if (isFull()) {
ysr@777 171 // Record overflow.
ysr@777 172 _overflow = true;
ysr@777 173 return;
ysr@777 174 } else {
ysr@777 175 _base[_index++] = ptr;
ysr@777 176 NOT_PRODUCT(_max_depth = MAX2(_max_depth, _index));
ysr@777 177 }
ysr@777 178 }
ysr@777 179 // Non-block impl. Note: concurrency is allowed only with other
ysr@777 180 // "par_push" operations, not with "pop" or "drain". We would need
ysr@777 181 // parallel versions of them if such concurrency was desired.
ysr@777 182 void par_push(oop ptr);
ysr@777 183
ysr@777 184 // Pushes the first "n" elements of "ptr_arr" on the stack.
ysr@777 185 // Non-block impl. Note: concurrency is allowed only with other
ysr@777 186 // "par_adjoin_arr" or "push" operations, not with "pop" or "drain".
ysr@777 187 void par_adjoin_arr(oop* ptr_arr, int n);
ysr@777 188
ysr@777 189 // Pushes the first "n" elements of "ptr_arr" on the stack.
ysr@777 190 // Locking impl: concurrency is allowed only with
ysr@777 191 // "par_push_arr" and/or "par_pop_arr" operations, which use the same
ysr@777 192 // locking strategy.
ysr@777 193 void par_push_arr(oop* ptr_arr, int n);
ysr@777 194
ysr@777 195 // If returns false, the array was empty. Otherwise, removes up to "max"
ysr@777 196 // elements from the stack, and transfers them to "ptr_arr" in an
ysr@777 197 // unspecified order. The actual number transferred is given in "n" ("n
ysr@777 198 // == 0" is deliberately redundant with the return value.) Locking impl:
ysr@777 199 // concurrency is allowed only with "par_push_arr" and/or "par_pop_arr"
ysr@777 200 // operations, which use the same locking strategy.
ysr@777 201 bool par_pop_arr(oop* ptr_arr, int max, int* n);
ysr@777 202
ysr@777 203 // Drain the mark stack, applying the given closure to all fields of
ysr@777 204 // objects on the stack. (That is, continue until the stack is empty,
ysr@777 205 // even if closure applications add entries to the stack.) The "bm"
ysr@777 206 // argument, if non-null, may be used to verify that only marked objects
ysr@777 207 // are on the mark stack. If "yield_after" is "true", then the
ysr@777 208 // concurrent marker performing the drain offers to yield after
ysr@777 209 // processing each object. If a yield occurs, stops the drain operation
ysr@777 210 // and returns false. Otherwise, returns true.
ysr@777 211 template<class OopClosureClass>
ysr@777 212 bool drain(OopClosureClass* cl, CMBitMap* bm, bool yield_after = false);
ysr@777 213
ysr@777 214 bool isEmpty() { return _index == 0; }
ysr@777 215 bool isFull() { return _index == _capacity; }
ysr@777 216 int maxElems() { return _capacity; }
ysr@777 217
ysr@777 218 bool overflow() { return _overflow; }
ysr@777 219 void clear_overflow() { _overflow = false; }
ysr@777 220
ysr@777 221 int size() { return _index; }
ysr@777 222
ysr@777 223 void setEmpty() { _index = 0; clear_overflow(); }
ysr@777 224
ysr@777 225 // Record the current size; a subsequent "oops_do" will iterate only over
ysr@777 226 // indices valid at the time of this call.
ysr@777 227 void set_oops_do_bound(jint bound = -1) {
ysr@777 228 if (bound == -1) {
ysr@777 229 _oops_do_bound = _index;
ysr@777 230 } else {
ysr@777 231 _oops_do_bound = bound;
ysr@777 232 }
ysr@777 233 }
ysr@777 234 jint oops_do_bound() { return _oops_do_bound; }
ysr@777 235 // iterate over the oops in the mark stack, up to the bound recorded via
ysr@777 236 // the call above.
ysr@777 237 void oops_do(OopClosure* f);
ysr@777 238 };
ysr@777 239
apetrusenko@984 240 class CMRegionStack VALUE_OBJ_CLASS_SPEC {
ysr@777 241 MemRegion* _base;
ysr@777 242 jint _capacity;
ysr@777 243 jint _index;
ysr@777 244 jint _oops_do_bound;
ysr@777 245 bool _overflow;
ysr@777 246 public:
ysr@777 247 CMRegionStack();
ysr@777 248 ~CMRegionStack();
ysr@777 249 void allocate(size_t size);
ysr@777 250
ysr@777 251 // This is lock-free; assumes that it will only be called in parallel
ysr@777 252 // with other "push" operations (no pops).
johnc@2190 253 void push_lock_free(MemRegion mr);
tonyp@1793 254
ysr@777 255 // Lock-free; assumes that it will only be called in parallel
ysr@777 256 // with other "pop" operations (no pushes).
johnc@2190 257 MemRegion pop_lock_free();
johnc@2190 258
johnc@2190 259 #if 0
johnc@2190 260 // The routines that manipulate the region stack with a lock are
johnc@2190 261 // not currently used. They should be retained, however, as a
johnc@2190 262 // diagnostic aid.
tonyp@1793 263
tonyp@1793 264 // These two are the implementations that use a lock. They can be
tonyp@1793 265 // called concurrently with each other but they should not be called
tonyp@1793 266 // concurrently with the lock-free versions (push() / pop()).
tonyp@1793 267 void push_with_lock(MemRegion mr);
tonyp@1793 268 MemRegion pop_with_lock();
johnc@2190 269 #endif
ysr@777 270
ysr@777 271 bool isEmpty() { return _index == 0; }
ysr@777 272 bool isFull() { return _index == _capacity; }
ysr@777 273
ysr@777 274 bool overflow() { return _overflow; }
ysr@777 275 void clear_overflow() { _overflow = false; }
ysr@777 276
ysr@777 277 int size() { return _index; }
ysr@777 278
ysr@777 279 // It iterates over the entries in the region stack and it
ysr@777 280 // invalidates (i.e. assigns MemRegion()) the ones that point to
ysr@777 281 // regions in the collection set.
ysr@777 282 bool invalidate_entries_into_cset();
ysr@777 283
ysr@777 284 // This gives an upper bound up to which the iteration in
ysr@777 285 // invalidate_entries_into_cset() will reach. This prevents
ysr@777 286 // newly-added entries to be unnecessarily scanned.
ysr@777 287 void set_oops_do_bound() {
ysr@777 288 _oops_do_bound = _index;
ysr@777 289 }
ysr@777 290
ysr@777 291 void setEmpty() { _index = 0; clear_overflow(); }
ysr@777 292 };
ysr@777 293
ysr@777 294 // this will enable a variety of different statistics per GC task
ysr@777 295 #define _MARKING_STATS_ 0
ysr@777 296 // this will enable the higher verbose levels
ysr@777 297 #define _MARKING_VERBOSE_ 0
ysr@777 298
ysr@777 299 #if _MARKING_STATS_
ysr@777 300 #define statsOnly(statement) \
ysr@777 301 do { \
ysr@777 302 statement ; \
ysr@777 303 } while (0)
ysr@777 304 #else // _MARKING_STATS_
ysr@777 305 #define statsOnly(statement) \
ysr@777 306 do { \
ysr@777 307 } while (0)
ysr@777 308 #endif // _MARKING_STATS_
ysr@777 309
ysr@777 310 typedef enum {
ysr@777 311 no_verbose = 0, // verbose turned off
ysr@777 312 stats_verbose, // only prints stats at the end of marking
ysr@777 313 low_verbose, // low verbose, mostly per region and per major event
ysr@777 314 medium_verbose, // a bit more detailed than low
ysr@777 315 high_verbose // per object verbose
ysr@777 316 } CMVerboseLevel;
ysr@777 317
ysr@777 318
ysr@777 319 class ConcurrentMarkThread;
ysr@777 320
apetrusenko@984 321 class ConcurrentMark: public CHeapObj {
ysr@777 322 friend class ConcurrentMarkThread;
ysr@777 323 friend class CMTask;
ysr@777 324 friend class CMBitMapClosure;
ysr@777 325 friend class CSMarkOopClosure;
ysr@777 326 friend class CMGlobalObjectClosure;
ysr@777 327 friend class CMRemarkTask;
ysr@777 328 friend class CMConcurrentMarkingTask;
ysr@777 329 friend class G1ParNoteEndTask;
ysr@777 330 friend class CalcLiveObjectsClosure;
ysr@777 331
ysr@777 332 protected:
ysr@777 333 ConcurrentMarkThread* _cmThread; // the thread doing the work
ysr@777 334 G1CollectedHeap* _g1h; // the heap.
ysr@777 335 size_t _parallel_marking_threads; // the number of marking
ysr@777 336 // threads we'll use
ysr@777 337 double _sleep_factor; // how much we have to sleep, with
ysr@777 338 // respect to the work we just did, to
ysr@777 339 // meet the marking overhead goal
ysr@777 340 double _marking_task_overhead; // marking target overhead for
ysr@777 341 // a single task
ysr@777 342
ysr@777 343 // same as the two above, but for the cleanup task
ysr@777 344 double _cleanup_sleep_factor;
ysr@777 345 double _cleanup_task_overhead;
ysr@777 346
ysr@777 347 // Stuff related to age cohort processing.
ysr@777 348 struct ParCleanupThreadState {
ysr@777 349 char _pre[64];
ysr@777 350 UncleanRegionList list;
ysr@777 351 char _post[64];
ysr@777 352 };
ysr@777 353 ParCleanupThreadState** _par_cleanup_thread_state;
ysr@777 354
ysr@777 355 // CMS marking support structures
ysr@777 356 CMBitMap _markBitMap1;
ysr@777 357 CMBitMap _markBitMap2;
ysr@777 358 CMBitMapRO* _prevMarkBitMap; // completed mark bitmap
ysr@777 359 CMBitMap* _nextMarkBitMap; // under-construction mark bitmap
ysr@777 360 bool _at_least_one_mark_complete;
ysr@777 361
ysr@777 362 BitMap _region_bm;
ysr@777 363 BitMap _card_bm;
ysr@777 364
ysr@777 365 // Heap bounds
ysr@777 366 HeapWord* _heap_start;
ysr@777 367 HeapWord* _heap_end;
ysr@777 368
ysr@777 369 // For gray objects
ysr@777 370 CMMarkStack _markStack; // Grey objects behind global finger.
ysr@777 371 CMRegionStack _regionStack; // Grey regions behind global finger.
ysr@777 372 HeapWord* volatile _finger; // the global finger, region aligned,
ysr@777 373 // always points to the end of the
ysr@777 374 // last claimed region
ysr@777 375
ysr@777 376 // marking tasks
ysr@777 377 size_t _max_task_num; // maximum task number
ysr@777 378 size_t _active_tasks; // task num currently active
ysr@777 379 CMTask** _tasks; // task queue array (max_task_num len)
ysr@777 380 CMTaskQueueSet* _task_queues; // task queue set
ysr@777 381 ParallelTaskTerminator _terminator; // for termination
ysr@777 382
ysr@777 383 // Two sync barriers that are used to synchronise tasks when an
ysr@777 384 // overflow occurs. The algorithm is the following. All tasks enter
ysr@777 385 // the first one to ensure that they have all stopped manipulating
ysr@777 386 // the global data structures. After they exit it, they re-initialise
ysr@777 387 // their data structures and task 0 re-initialises the global data
ysr@777 388 // structures. Then, they enter the second sync barrier. This
ysr@777 389 // ensure, that no task starts doing work before all data
ysr@777 390 // structures (local and global) have been re-initialised. When they
ysr@777 391 // exit it, they are free to start working again.
ysr@777 392 WorkGangBarrierSync _first_overflow_barrier_sync;
ysr@777 393 WorkGangBarrierSync _second_overflow_barrier_sync;
ysr@777 394
ysr@777 395
ysr@777 396 // this is set by any task, when an overflow on the global data
ysr@777 397 // structures is detected.
ysr@777 398 volatile bool _has_overflown;
ysr@777 399 // true: marking is concurrent, false: we're in remark
ysr@777 400 volatile bool _concurrent;
ysr@777 401 // set at the end of a Full GC so that marking aborts
ysr@777 402 volatile bool _has_aborted;
johnc@2190 403
ysr@777 404 // used when remark aborts due to an overflow to indicate that
ysr@777 405 // another concurrent marking phase should start
ysr@777 406 volatile bool _restart_for_overflow;
ysr@777 407
ysr@777 408 // This is true from the very start of concurrent marking until the
ysr@777 409 // point when all the tasks complete their work. It is really used
ysr@777 410 // to determine the points between the end of concurrent marking and
ysr@777 411 // time of remark.
ysr@777 412 volatile bool _concurrent_marking_in_progress;
ysr@777 413
ysr@777 414 // verbose level
ysr@777 415 CMVerboseLevel _verbose_level;
ysr@777 416
ysr@777 417 // These two fields are used to implement the optimisation that
ysr@777 418 // avoids pushing objects on the global/region stack if there are
ysr@777 419 // no collection set regions above the lowest finger.
ysr@777 420
ysr@777 421 // This is the lowest finger (among the global and local fingers),
ysr@777 422 // which is calculated before a new collection set is chosen.
ysr@777 423 HeapWord* _min_finger;
ysr@777 424 // If this flag is true, objects/regions that are marked below the
ysr@777 425 // finger should be pushed on the stack(s). If this is flag is
ysr@777 426 // false, it is safe not to push them on the stack(s).
ysr@777 427 bool _should_gray_objects;
ysr@777 428
ysr@777 429 // All of these times are in ms.
ysr@777 430 NumberSeq _init_times;
ysr@777 431 NumberSeq _remark_times;
ysr@777 432 NumberSeq _remark_mark_times;
ysr@777 433 NumberSeq _remark_weak_ref_times;
ysr@777 434 NumberSeq _cleanup_times;
ysr@777 435 double _total_counting_time;
ysr@777 436 double _total_rs_scrub_time;
ysr@777 437
ysr@777 438 double* _accum_task_vtime; // accumulated task vtime
ysr@777 439
ysr@777 440 WorkGang* _parallel_workers;
ysr@777 441
ysr@777 442 void weakRefsWork(bool clear_all_soft_refs);
ysr@777 443
ysr@777 444 void swapMarkBitMaps();
ysr@777 445
ysr@777 446 // It resets the global marking data structures, as well as the
ysr@777 447 // task local ones; should be called during initial mark.
ysr@777 448 void reset();
ysr@777 449 // It resets all the marking data structures.
ysr@777 450 void clear_marking_state();
ysr@777 451
ysr@777 452 // It should be called to indicate which phase we're in (concurrent
ysr@777 453 // mark or remark) and how many threads are currently active.
ysr@777 454 void set_phase(size_t active_tasks, bool concurrent);
ysr@777 455 // We do this after we're done with marking so that the marking data
ysr@777 456 // structures are initialised to a sensible and predictable state.
ysr@777 457 void set_non_marking_state();
ysr@777 458
ysr@777 459 // prints all gathered CM-related statistics
ysr@777 460 void print_stats();
ysr@777 461
ysr@777 462 // accessor methods
ysr@777 463 size_t parallel_marking_threads() { return _parallel_marking_threads; }
ysr@777 464 double sleep_factor() { return _sleep_factor; }
ysr@777 465 double marking_task_overhead() { return _marking_task_overhead;}
ysr@777 466 double cleanup_sleep_factor() { return _cleanup_sleep_factor; }
ysr@777 467 double cleanup_task_overhead() { return _cleanup_task_overhead;}
ysr@777 468
ysr@777 469 HeapWord* finger() { return _finger; }
ysr@777 470 bool concurrent() { return _concurrent; }
ysr@777 471 size_t active_tasks() { return _active_tasks; }
ysr@777 472 ParallelTaskTerminator* terminator() { return &_terminator; }
ysr@777 473
ysr@777 474 // It claims the next available region to be scanned by a marking
ysr@777 475 // task. It might return NULL if the next region is empty or we have
ysr@777 476 // run out of regions. In the latter case, out_of_regions()
ysr@777 477 // determines whether we've really run out of regions or the task
ysr@777 478 // should call claim_region() again. This might seem a bit
ysr@777 479 // awkward. Originally, the code was written so that claim_region()
ysr@777 480 // either successfully returned with a non-empty region or there
ysr@777 481 // were no more regions to be claimed. The problem with this was
ysr@777 482 // that, in certain circumstances, it iterated over large chunks of
ysr@777 483 // the heap finding only empty regions and, while it was working, it
ysr@777 484 // was preventing the calling task to call its regular clock
ysr@777 485 // method. So, this way, each task will spend very little time in
ysr@777 486 // claim_region() and is allowed to call the regular clock method
ysr@777 487 // frequently.
ysr@777 488 HeapRegion* claim_region(int task);
ysr@777 489
ysr@777 490 // It determines whether we've run out of regions to scan.
ysr@777 491 bool out_of_regions() { return _finger == _heap_end; }
ysr@777 492
ysr@777 493 // Returns the task with the given id
ysr@777 494 CMTask* task(int id) {
tonyp@1458 495 assert(0 <= id && id < (int) _active_tasks,
tonyp@1458 496 "task id not within active bounds");
ysr@777 497 return _tasks[id];
ysr@777 498 }
ysr@777 499
ysr@777 500 // Returns the task queue with the given id
ysr@777 501 CMTaskQueue* task_queue(int id) {
tonyp@1458 502 assert(0 <= id && id < (int) _active_tasks,
tonyp@1458 503 "task queue id not within active bounds");
ysr@777 504 return (CMTaskQueue*) _task_queues->queue(id);
ysr@777 505 }
ysr@777 506
ysr@777 507 // Returns the task queue set
ysr@777 508 CMTaskQueueSet* task_queues() { return _task_queues; }
ysr@777 509
ysr@777 510 // Access / manipulation of the overflow flag which is set to
ysr@777 511 // indicate that the global stack or region stack has overflown
ysr@777 512 bool has_overflown() { return _has_overflown; }
ysr@777 513 void set_has_overflown() { _has_overflown = true; }
ysr@777 514 void clear_has_overflown() { _has_overflown = false; }
ysr@777 515
ysr@777 516 bool has_aborted() { return _has_aborted; }
ysr@777 517 bool restart_for_overflow() { return _restart_for_overflow; }
ysr@777 518
ysr@777 519 // Methods to enter the two overflow sync barriers
ysr@777 520 void enter_first_sync_barrier(int task_num);
ysr@777 521 void enter_second_sync_barrier(int task_num);
ysr@777 522
ysr@777 523 public:
ysr@777 524 // Manipulation of the global mark stack.
ysr@777 525 // Notice that the first mark_stack_push is CAS-based, whereas the
ysr@777 526 // two below are Mutex-based. This is OK since the first one is only
ysr@777 527 // called during evacuation pauses and doesn't compete with the
ysr@777 528 // other two (which are called by the marking tasks during
ysr@777 529 // concurrent marking or remark).
ysr@777 530 bool mark_stack_push(oop p) {
ysr@777 531 _markStack.par_push(p);
ysr@777 532 if (_markStack.overflow()) {
ysr@777 533 set_has_overflown();
ysr@777 534 return false;
ysr@777 535 }
ysr@777 536 return true;
ysr@777 537 }
ysr@777 538 bool mark_stack_push(oop* arr, int n) {
ysr@777 539 _markStack.par_push_arr(arr, n);
ysr@777 540 if (_markStack.overflow()) {
ysr@777 541 set_has_overflown();
ysr@777 542 return false;
ysr@777 543 }
ysr@777 544 return true;
ysr@777 545 }
ysr@777 546 void mark_stack_pop(oop* arr, int max, int* n) {
ysr@777 547 _markStack.par_pop_arr(arr, max, n);
ysr@777 548 }
ysr@777 549 size_t mark_stack_size() { return _markStack.size(); }
ysr@777 550 size_t partial_mark_stack_size_target() { return _markStack.maxElems()/3; }
ysr@777 551 bool mark_stack_overflow() { return _markStack.overflow(); }
ysr@777 552 bool mark_stack_empty() { return _markStack.isEmpty(); }
ysr@777 553
johnc@2190 554 // (Lock-free) Manipulation of the region stack
johnc@2190 555 bool region_stack_push_lock_free(MemRegion mr) {
tonyp@1793 556 // Currently we only call the lock-free version during evacuation
tonyp@1793 557 // pauses.
tonyp@1793 558 assert(SafepointSynchronize::is_at_safepoint(), "world should be stopped");
tonyp@1793 559
johnc@2190 560 _regionStack.push_lock_free(mr);
ysr@777 561 if (_regionStack.overflow()) {
ysr@777 562 set_has_overflown();
ysr@777 563 return false;
ysr@777 564 }
ysr@777 565 return true;
ysr@777 566 }
johnc@2190 567
johnc@2190 568 // Lock-free version of region-stack pop. Should only be
johnc@2190 569 // called in tandem with other lock-free pops.
johnc@2190 570 MemRegion region_stack_pop_lock_free() {
johnc@2190 571 return _regionStack.pop_lock_free();
johnc@2190 572 }
johnc@2190 573
tonyp@1793 574 #if 0
johnc@2190 575 // The routines that manipulate the region stack with a lock are
johnc@2190 576 // not currently used. They should be retained, however, as a
johnc@2190 577 // diagnostic aid.
tonyp@1793 578
tonyp@1793 579 bool region_stack_push_with_lock(MemRegion mr) {
tonyp@1793 580 // Currently we only call the lock-based version during either
tonyp@1793 581 // concurrent marking or remark.
tonyp@1793 582 assert(!SafepointSynchronize::is_at_safepoint() || !concurrent(),
tonyp@1793 583 "if we are at a safepoint it should be the remark safepoint");
tonyp@1793 584
tonyp@1793 585 _regionStack.push_with_lock(mr);
tonyp@1793 586 if (_regionStack.overflow()) {
tonyp@1793 587 set_has_overflown();
tonyp@1793 588 return false;
tonyp@1793 589 }
tonyp@1793 590 return true;
tonyp@1793 591 }
johnc@2190 592
tonyp@1793 593 MemRegion region_stack_pop_with_lock() {
tonyp@1793 594 // Currently we only call the lock-based version during either
tonyp@1793 595 // concurrent marking or remark.
tonyp@1793 596 assert(!SafepointSynchronize::is_at_safepoint() || !concurrent(),
tonyp@1793 597 "if we are at a safepoint it should be the remark safepoint");
tonyp@1793 598
tonyp@1793 599 return _regionStack.pop_with_lock();
tonyp@1793 600 }
johnc@2190 601 #endif
tonyp@1793 602
ysr@777 603 int region_stack_size() { return _regionStack.size(); }
ysr@777 604 bool region_stack_overflow() { return _regionStack.overflow(); }
ysr@777 605 bool region_stack_empty() { return _regionStack.isEmpty(); }
ysr@777 606
johnc@2190 607 // Iterate over any regions that were aborted while draining the
johnc@2190 608 // region stack (any such regions are saved in the corresponding
johnc@2190 609 // CMTask) and invalidate (i.e. assign to the empty MemRegion())
johnc@2190 610 // any regions that point into the collection set.
johnc@2190 611 bool invalidate_aborted_regions_in_cset();
johnc@2190 612
johnc@2190 613 // Returns true if there are any aborted memory regions.
johnc@2190 614 bool has_aborted_regions();
johnc@2190 615
ysr@777 616 bool concurrent_marking_in_progress() {
ysr@777 617 return _concurrent_marking_in_progress;
ysr@777 618 }
ysr@777 619 void set_concurrent_marking_in_progress() {
ysr@777 620 _concurrent_marking_in_progress = true;
ysr@777 621 }
ysr@777 622 void clear_concurrent_marking_in_progress() {
ysr@777 623 _concurrent_marking_in_progress = false;
ysr@777 624 }
ysr@777 625
ysr@777 626 void update_accum_task_vtime(int i, double vtime) {
ysr@777 627 _accum_task_vtime[i] += vtime;
ysr@777 628 }
ysr@777 629
ysr@777 630 double all_task_accum_vtime() {
ysr@777 631 double ret = 0.0;
ysr@777 632 for (int i = 0; i < (int)_max_task_num; ++i)
ysr@777 633 ret += _accum_task_vtime[i];
ysr@777 634 return ret;
ysr@777 635 }
ysr@777 636
ysr@777 637 // Attempts to steal an object from the task queues of other tasks
ysr@777 638 bool try_stealing(int task_num, int* hash_seed, oop& obj) {
ysr@777 639 return _task_queues->steal(task_num, hash_seed, obj);
ysr@777 640 }
ysr@777 641
ysr@777 642 // It grays an object by first marking it. Then, if it's behind the
ysr@777 643 // global finger, it also pushes it on the global stack.
ysr@777 644 void deal_with_reference(oop obj);
ysr@777 645
ysr@777 646 ConcurrentMark(ReservedSpace rs, int max_regions);
ysr@777 647 ~ConcurrentMark();
ysr@777 648 ConcurrentMarkThread* cmThread() { return _cmThread; }
ysr@777 649
ysr@777 650 CMBitMapRO* prevMarkBitMap() const { return _prevMarkBitMap; }
ysr@777 651 CMBitMap* nextMarkBitMap() const { return _nextMarkBitMap; }
ysr@777 652
ysr@777 653 // The following three are interaction between CM and
ysr@777 654 // G1CollectedHeap
ysr@777 655
ysr@777 656 // This notifies CM that a root during initial-mark needs to be
ysr@777 657 // grayed and it's MT-safe. Currently, we just mark it. But, in the
ysr@777 658 // future, we can experiment with pushing it on the stack and we can
ysr@777 659 // do this without changing G1CollectedHeap.
ysr@777 660 void grayRoot(oop p);
ysr@777 661 // It's used during evacuation pauses to gray a region, if
ysr@777 662 // necessary, and it's MT-safe. It assumes that the caller has
ysr@777 663 // marked any objects on that region. If _should_gray_objects is
ysr@777 664 // true and we're still doing concurrent marking, the region is
ysr@777 665 // pushed on the region stack, if it is located below the global
ysr@777 666 // finger, otherwise we do nothing.
ysr@777 667 void grayRegionIfNecessary(MemRegion mr);
ysr@777 668 // It's used during evacuation pauses to mark and, if necessary,
ysr@777 669 // gray a single object and it's MT-safe. It assumes the caller did
ysr@777 670 // not mark the object. If _should_gray_objects is true and we're
ysr@777 671 // still doing concurrent marking, the objects is pushed on the
ysr@777 672 // global stack, if it is located below the global finger, otherwise
ysr@777 673 // we do nothing.
ysr@777 674 void markAndGrayObjectIfNecessary(oop p);
ysr@777 675
tonyp@1823 676 // It iterates over the heap and for each object it comes across it
tonyp@1823 677 // will dump the contents of its reference fields, as well as
tonyp@1823 678 // liveness information for the object and its referents. The dump
tonyp@1823 679 // will be written to a file with the following name:
tonyp@1823 680 // G1PrintReachableBaseFile + "." + str. use_prev_marking decides
tonyp@1823 681 // whether the prev (use_prev_marking == true) or next
tonyp@1823 682 // (use_prev_marking == false) marking information will be used to
tonyp@1823 683 // determine the liveness of each object / referent. If all is true,
tonyp@1823 684 // all objects in the heap will be dumped, otherwise only the live
tonyp@1823 685 // ones. In the dump the following symbols / abbreviations are used:
tonyp@1823 686 // M : an explicitly live object (its bitmap bit is set)
tonyp@1823 687 // > : an implicitly live object (over tams)
tonyp@1823 688 // O : an object outside the G1 heap (typically: in the perm gen)
tonyp@1823 689 // NOT : a reference field whose referent is not live
tonyp@1823 690 // AND MARKED : indicates that an object is both explicitly and
tonyp@1823 691 // implicitly live (it should be one or the other, not both)
tonyp@1823 692 void print_reachable(const char* str,
tonyp@1823 693 bool use_prev_marking, bool all) PRODUCT_RETURN;
ysr@777 694
ysr@777 695 // Clear the next marking bitmap (will be called concurrently).
ysr@777 696 void clearNextBitmap();
ysr@777 697
ysr@777 698 // main CMS steps and related support
ysr@777 699 void checkpointRootsInitial();
ysr@777 700
ysr@777 701 // These two do the work that needs to be done before and after the
ysr@777 702 // initial root checkpoint. Since this checkpoint can be done at two
ysr@777 703 // different points (i.e. an explicit pause or piggy-backed on a
ysr@777 704 // young collection), then it's nice to be able to easily share the
ysr@777 705 // pre/post code. It might be the case that we can put everything in
ysr@777 706 // the post method. TP
ysr@777 707 void checkpointRootsInitialPre();
ysr@777 708 void checkpointRootsInitialPost();
ysr@777 709
ysr@777 710 // Do concurrent phase of marking, to a tentative transitive closure.
ysr@777 711 void markFromRoots();
ysr@777 712
ysr@777 713 // Process all unprocessed SATB buffers. It is called at the
ysr@777 714 // beginning of an evacuation pause.
ysr@777 715 void drainAllSATBBuffers();
ysr@777 716
ysr@777 717 void checkpointRootsFinal(bool clear_all_soft_refs);
ysr@777 718 void checkpointRootsFinalWork();
ysr@777 719 void calcDesiredRegions();
ysr@777 720 void cleanup();
ysr@777 721 void completeCleanup();
ysr@777 722
ysr@777 723 // Mark in the previous bitmap. NB: this is usually read-only, so use
ysr@777 724 // this carefully!
ysr@777 725 void markPrev(oop p);
ysr@777 726 void clear(oop p);
ysr@777 727 // Clears marks for all objects in the given range, for both prev and
ysr@777 728 // next bitmaps. NB: the previous bitmap is usually read-only, so use
ysr@777 729 // this carefully!
ysr@777 730 void clearRangeBothMaps(MemRegion mr);
ysr@777 731
ysr@777 732 // Record the current top of the mark and region stacks; a
ysr@777 733 // subsequent oops_do() on the mark stack and
ysr@777 734 // invalidate_entries_into_cset() on the region stack will iterate
ysr@777 735 // only over indices valid at the time of this call.
ysr@777 736 void set_oops_do_bound() {
ysr@777 737 _markStack.set_oops_do_bound();
ysr@777 738 _regionStack.set_oops_do_bound();
ysr@777 739 }
ysr@777 740 // Iterate over the oops in the mark stack and all local queues. It
ysr@777 741 // also calls invalidate_entries_into_cset() on the region stack.
ysr@777 742 void oops_do(OopClosure* f);
ysr@777 743 // It is called at the end of an evacuation pause during marking so
ysr@777 744 // that CM is notified of where the new end of the heap is. It
ysr@777 745 // doesn't do anything if concurrent_marking_in_progress() is false,
ysr@777 746 // unless the force parameter is true.
ysr@777 747 void update_g1_committed(bool force = false);
ysr@777 748
ysr@777 749 void complete_marking_in_collection_set();
ysr@777 750
ysr@777 751 // It indicates that a new collection set is being chosen.
ysr@777 752 void newCSet();
ysr@777 753 // It registers a collection set heap region with CM. This is used
ysr@777 754 // to determine whether any heap regions are located above the finger.
ysr@777 755 void registerCSetRegion(HeapRegion* hr);
ysr@777 756
johnc@1829 757 // Registers the maximum region-end associated with a set of
johnc@1829 758 // regions with CM. Again this is used to determine whether any
johnc@1829 759 // heap regions are located above the finger.
johnc@1829 760 void register_collection_set_finger(HeapWord* max_finger) {
johnc@1829 761 // max_finger is the highest heap region end of the regions currently
johnc@1829 762 // contained in the collection set. If this value is larger than
johnc@1829 763 // _min_finger then we need to gray objects.
johnc@1829 764 // This routine is like registerCSetRegion but for an entire
johnc@1829 765 // collection of regions.
johnc@1829 766 if (max_finger > _min_finger)
johnc@1829 767 _should_gray_objects = true;
johnc@1829 768 }
johnc@1829 769
ysr@777 770 // Returns "true" if at least one mark has been completed.
ysr@777 771 bool at_least_one_mark_complete() { return _at_least_one_mark_complete; }
ysr@777 772
ysr@777 773 bool isMarked(oop p) const {
ysr@777 774 assert(p != NULL && p->is_oop(), "expected an oop");
ysr@777 775 HeapWord* addr = (HeapWord*)p;
ysr@777 776 assert(addr >= _nextMarkBitMap->startWord() ||
ysr@777 777 addr < _nextMarkBitMap->endWord(), "in a region");
ysr@777 778
ysr@777 779 return _nextMarkBitMap->isMarked(addr);
ysr@777 780 }
ysr@777 781
ysr@777 782 inline bool not_yet_marked(oop p) const;
ysr@777 783
ysr@777 784 // XXX Debug code
ysr@777 785 bool containing_card_is_marked(void* p);
ysr@777 786 bool containing_cards_are_marked(void* start, void* last);
ysr@777 787
ysr@777 788 bool isPrevMarked(oop p) const {
ysr@777 789 assert(p != NULL && p->is_oop(), "expected an oop");
ysr@777 790 HeapWord* addr = (HeapWord*)p;
ysr@777 791 assert(addr >= _prevMarkBitMap->startWord() ||
ysr@777 792 addr < _prevMarkBitMap->endWord(), "in a region");
ysr@777 793
ysr@777 794 return _prevMarkBitMap->isMarked(addr);
ysr@777 795 }
ysr@777 796
ysr@777 797 inline bool do_yield_check(int worker_i = 0);
ysr@777 798 inline bool should_yield();
ysr@777 799
ysr@777 800 // Called to abort the marking cycle after a Full GC takes palce.
ysr@777 801 void abort();
ysr@777 802
ysr@777 803 // This prints the global/local fingers. It is used for debugging.
ysr@777 804 NOT_PRODUCT(void print_finger();)
ysr@777 805
ysr@777 806 void print_summary_info();
ysr@777 807
tonyp@1454 808 void print_worker_threads_on(outputStream* st) const;
tonyp@1454 809
ysr@777 810 // The following indicate whether a given verbose level has been
ysr@777 811 // set. Notice that anything above stats is conditional to
ysr@777 812 // _MARKING_VERBOSE_ having been set to 1
ysr@777 813 bool verbose_stats()
ysr@777 814 { return _verbose_level >= stats_verbose; }
ysr@777 815 bool verbose_low()
ysr@777 816 { return _MARKING_VERBOSE_ && _verbose_level >= low_verbose; }
ysr@777 817 bool verbose_medium()
ysr@777 818 { return _MARKING_VERBOSE_ && _verbose_level >= medium_verbose; }
ysr@777 819 bool verbose_high()
ysr@777 820 { return _MARKING_VERBOSE_ && _verbose_level >= high_verbose; }
ysr@777 821 };
ysr@777 822
ysr@777 823 // A class representing a marking task.
ysr@777 824 class CMTask : public TerminatorTerminator {
ysr@777 825 private:
ysr@777 826 enum PrivateConstants {
ysr@777 827 // the regular clock call is called once the scanned words reaches
ysr@777 828 // this limit
ysr@777 829 words_scanned_period = 12*1024,
ysr@777 830 // the regular clock call is called once the number of visited
ysr@777 831 // references reaches this limit
ysr@777 832 refs_reached_period = 384,
ysr@777 833 // initial value for the hash seed, used in the work stealing code
ysr@777 834 init_hash_seed = 17,
ysr@777 835 // how many entries will be transferred between global stack and
ysr@777 836 // local queues
ysr@777 837 global_stack_transfer_size = 16
ysr@777 838 };
ysr@777 839
ysr@777 840 int _task_id;
ysr@777 841 G1CollectedHeap* _g1h;
ysr@777 842 ConcurrentMark* _cm;
ysr@777 843 CMBitMap* _nextMarkBitMap;
ysr@777 844 // the task queue of this task
ysr@777 845 CMTaskQueue* _task_queue;
ysr@1280 846 private:
ysr@777 847 // the task queue set---needed for stealing
ysr@777 848 CMTaskQueueSet* _task_queues;
ysr@777 849 // indicates whether the task has been claimed---this is only for
ysr@777 850 // debugging purposes
ysr@777 851 bool _claimed;
ysr@777 852
ysr@777 853 // number of calls to this task
ysr@777 854 int _calls;
ysr@777 855
ysr@777 856 // when the virtual timer reaches this time, the marking step should
ysr@777 857 // exit
ysr@777 858 double _time_target_ms;
ysr@777 859 // the start time of the current marking step
ysr@777 860 double _start_time_ms;
ysr@777 861
ysr@777 862 // the oop closure used for iterations over oops
ysr@777 863 OopClosure* _oop_closure;
ysr@777 864
ysr@777 865 // the region this task is scanning, NULL if we're not scanning any
ysr@777 866 HeapRegion* _curr_region;
ysr@777 867 // the local finger of this task, NULL if we're not scanning a region
ysr@777 868 HeapWord* _finger;
ysr@777 869 // limit of the region this task is scanning, NULL if we're not scanning one
ysr@777 870 HeapWord* _region_limit;
ysr@777 871
ysr@777 872 // This is used only when we scan regions popped from the region
ysr@777 873 // stack. It records what the last object on such a region we
ysr@777 874 // scanned was. It is used to ensure that, if we abort region
ysr@777 875 // iteration, we do not rescan the first part of the region. This
ysr@777 876 // should be NULL when we're not scanning a region from the region
ysr@777 877 // stack.
ysr@777 878 HeapWord* _region_finger;
ysr@777 879
johnc@2190 880 // If we abort while scanning a region we record the remaining
johnc@2190 881 // unscanned portion and check this field when marking restarts.
johnc@2190 882 // This avoids having to push on the region stack while other
johnc@2190 883 // marking threads may still be popping regions.
johnc@2190 884 // If we were to push the unscanned portion directly to the
johnc@2190 885 // region stack then we would need to using locking versions
johnc@2190 886 // of the push and pop operations.
johnc@2190 887 MemRegion _aborted_region;
johnc@2190 888
ysr@777 889 // the number of words this task has scanned
ysr@777 890 size_t _words_scanned;
ysr@777 891 // When _words_scanned reaches this limit, the regular clock is
ysr@777 892 // called. Notice that this might be decreased under certain
ysr@777 893 // circumstances (i.e. when we believe that we did an expensive
ysr@777 894 // operation).
ysr@777 895 size_t _words_scanned_limit;
ysr@777 896 // the initial value of _words_scanned_limit (i.e. what it was
ysr@777 897 // before it was decreased).
ysr@777 898 size_t _real_words_scanned_limit;
ysr@777 899
ysr@777 900 // the number of references this task has visited
ysr@777 901 size_t _refs_reached;
ysr@777 902 // When _refs_reached reaches this limit, the regular clock is
ysr@777 903 // called. Notice this this might be decreased under certain
ysr@777 904 // circumstances (i.e. when we believe that we did an expensive
ysr@777 905 // operation).
ysr@777 906 size_t _refs_reached_limit;
ysr@777 907 // the initial value of _refs_reached_limit (i.e. what it was before
ysr@777 908 // it was decreased).
ysr@777 909 size_t _real_refs_reached_limit;
ysr@777 910
ysr@777 911 // used by the work stealing stuff
ysr@777 912 int _hash_seed;
ysr@777 913 // if this is true, then the task has aborted for some reason
ysr@777 914 bool _has_aborted;
ysr@777 915 // set when the task aborts because it has met its time quota
ysr@777 916 bool _has_aborted_timed_out;
ysr@777 917 // true when we're draining SATB buffers; this avoids the task
ysr@777 918 // aborting due to SATB buffers being available (as we're already
ysr@777 919 // dealing with them)
ysr@777 920 bool _draining_satb_buffers;
ysr@777 921
ysr@777 922 // number sequence of past step times
ysr@777 923 NumberSeq _step_times_ms;
ysr@777 924 // elapsed time of this task
ysr@777 925 double _elapsed_time_ms;
ysr@777 926 // termination time of this task
ysr@777 927 double _termination_time_ms;
ysr@777 928 // when this task got into the termination protocol
ysr@777 929 double _termination_start_time_ms;
ysr@777 930
ysr@777 931 // true when the task is during a concurrent phase, false when it is
ysr@777 932 // in the remark phase (so, in the latter case, we do not have to
ysr@777 933 // check all the things that we have to check during the concurrent
ysr@777 934 // phase, i.e. SATB buffer availability...)
ysr@777 935 bool _concurrent;
ysr@777 936
ysr@777 937 TruncatedSeq _marking_step_diffs_ms;
ysr@777 938
ysr@777 939 // LOTS of statistics related with this task
ysr@777 940 #if _MARKING_STATS_
ysr@777 941 NumberSeq _all_clock_intervals_ms;
ysr@777 942 double _interval_start_time_ms;
ysr@777 943
ysr@777 944 int _aborted;
ysr@777 945 int _aborted_overflow;
ysr@777 946 int _aborted_cm_aborted;
ysr@777 947 int _aborted_yield;
ysr@777 948 int _aborted_timed_out;
ysr@777 949 int _aborted_satb;
ysr@777 950 int _aborted_termination;
ysr@777 951
ysr@777 952 int _steal_attempts;
ysr@777 953 int _steals;
ysr@777 954
ysr@777 955 int _clock_due_to_marking;
ysr@777 956 int _clock_due_to_scanning;
ysr@777 957
ysr@777 958 int _local_pushes;
ysr@777 959 int _local_pops;
ysr@777 960 int _local_max_size;
ysr@777 961 int _objs_scanned;
ysr@777 962
ysr@777 963 int _global_pushes;
ysr@777 964 int _global_pops;
ysr@777 965 int _global_max_size;
ysr@777 966
ysr@777 967 int _global_transfers_to;
ysr@777 968 int _global_transfers_from;
ysr@777 969
ysr@777 970 int _region_stack_pops;
ysr@777 971
ysr@777 972 int _regions_claimed;
ysr@777 973 int _objs_found_on_bitmap;
ysr@777 974
ysr@777 975 int _satb_buffers_processed;
ysr@777 976 #endif // _MARKING_STATS_
ysr@777 977
ysr@777 978 // it updates the local fields after this task has claimed
ysr@777 979 // a new region to scan
ysr@777 980 void setup_for_region(HeapRegion* hr);
ysr@777 981 // it brings up-to-date the limit of the region
ysr@777 982 void update_region_limit();
ysr@777 983 // it resets the local fields after a task has finished scanning a
ysr@777 984 // region
ysr@777 985 void giveup_current_region();
ysr@777 986
ysr@777 987 // called when either the words scanned or the refs visited limit
ysr@777 988 // has been reached
ysr@777 989 void reached_limit();
ysr@777 990 // recalculates the words scanned and refs visited limits
ysr@777 991 void recalculate_limits();
ysr@777 992 // decreases the words scanned and refs visited limits when we reach
ysr@777 993 // an expensive operation
ysr@777 994 void decrease_limits();
ysr@777 995 // it checks whether the words scanned or refs visited reached their
ysr@777 996 // respective limit and calls reached_limit() if they have
ysr@777 997 void check_limits() {
ysr@777 998 if (_words_scanned >= _words_scanned_limit ||
ysr@777 999 _refs_reached >= _refs_reached_limit)
ysr@777 1000 reached_limit();
ysr@777 1001 }
ysr@777 1002 // this is supposed to be called regularly during a marking step as
ysr@777 1003 // it checks a bunch of conditions that might cause the marking step
ysr@777 1004 // to abort
ysr@777 1005 void regular_clock_call();
ysr@777 1006 bool concurrent() { return _concurrent; }
ysr@777 1007
ysr@777 1008 public:
ysr@777 1009 // It resets the task; it should be called right at the beginning of
ysr@777 1010 // a marking phase.
ysr@777 1011 void reset(CMBitMap* _nextMarkBitMap);
ysr@777 1012 // it clears all the fields that correspond to a claimed region.
ysr@777 1013 void clear_region_fields();
ysr@777 1014
ysr@777 1015 void set_concurrent(bool concurrent) { _concurrent = concurrent; }
ysr@777 1016
ysr@777 1017 // The main method of this class which performs a marking step
ysr@777 1018 // trying not to exceed the given duration. However, it might exit
ysr@777 1019 // prematurely, according to some conditions (i.e. SATB buffers are
ysr@777 1020 // available for processing).
ysr@777 1021 void do_marking_step(double target_ms);
ysr@777 1022
ysr@777 1023 // These two calls start and stop the timer
ysr@777 1024 void record_start_time() {
ysr@777 1025 _elapsed_time_ms = os::elapsedTime() * 1000.0;
ysr@777 1026 }
ysr@777 1027 void record_end_time() {
ysr@777 1028 _elapsed_time_ms = os::elapsedTime() * 1000.0 - _elapsed_time_ms;
ysr@777 1029 }
ysr@777 1030
ysr@777 1031 // returns the task ID
ysr@777 1032 int task_id() { return _task_id; }
ysr@777 1033
ysr@777 1034 // From TerminatorTerminator. It determines whether this task should
ysr@777 1035 // exit the termination protocol after it's entered it.
ysr@777 1036 virtual bool should_exit_termination();
ysr@777 1037
ysr@777 1038 HeapWord* finger() { return _finger; }
ysr@777 1039
ysr@777 1040 bool has_aborted() { return _has_aborted; }
ysr@777 1041 void set_has_aborted() { _has_aborted = true; }
ysr@777 1042 void clear_has_aborted() { _has_aborted = false; }
ysr@777 1043 bool claimed() { return _claimed; }
ysr@777 1044
johnc@2190 1045 // Support routines for the partially scanned region that may be
johnc@2190 1046 // recorded as a result of aborting while draining the CMRegionStack
johnc@2190 1047 MemRegion aborted_region() { return _aborted_region; }
johnc@2190 1048 void set_aborted_region(MemRegion mr)
johnc@2190 1049 { _aborted_region = mr; }
johnc@2190 1050
johnc@2190 1051 // Clears any recorded partially scanned region
johnc@2190 1052 void clear_aborted_region() { set_aborted_region(MemRegion()); }
johnc@2190 1053
ysr@777 1054 void set_oop_closure(OopClosure* oop_closure) {
ysr@777 1055 _oop_closure = oop_closure;
ysr@777 1056 }
ysr@777 1057
ysr@777 1058 // It grays the object by marking it and, if necessary, pushing it
ysr@777 1059 // on the local queue
ysr@777 1060 void deal_with_reference(oop obj);
ysr@777 1061
ysr@777 1062 // It scans an object and visits its children.
ysr@777 1063 void scan_object(oop obj) {
tonyp@1458 1064 assert(_nextMarkBitMap->isMarked((HeapWord*) obj), "invariant");
ysr@777 1065
ysr@777 1066 if (_cm->verbose_high())
ysr@777 1067 gclog_or_tty->print_cr("[%d] we're scanning object "PTR_FORMAT,
ysr@777 1068 _task_id, (void*) obj);
ysr@777 1069
ysr@777 1070 size_t obj_size = obj->size();
ysr@777 1071 _words_scanned += obj_size;
ysr@777 1072
ysr@777 1073 obj->oop_iterate(_oop_closure);
ysr@777 1074 statsOnly( ++_objs_scanned );
ysr@777 1075 check_limits();
ysr@777 1076 }
ysr@777 1077
ysr@777 1078 // It pushes an object on the local queue.
ysr@777 1079 void push(oop obj);
ysr@777 1080
ysr@777 1081 // These two move entries to/from the global stack.
ysr@777 1082 void move_entries_to_global_stack();
ysr@777 1083 void get_entries_from_global_stack();
ysr@777 1084
ysr@777 1085 // It pops and scans objects from the local queue. If partially is
ysr@777 1086 // true, then it stops when the queue size is of a given limit. If
ysr@777 1087 // partially is false, then it stops when the queue is empty.
ysr@777 1088 void drain_local_queue(bool partially);
ysr@777 1089 // It moves entries from the global stack to the local queue and
ysr@777 1090 // drains the local queue. If partially is true, then it stops when
ysr@777 1091 // both the global stack and the local queue reach a given size. If
ysr@777 1092 // partially if false, it tries to empty them totally.
ysr@777 1093 void drain_global_stack(bool partially);
ysr@777 1094 // It keeps picking SATB buffers and processing them until no SATB
ysr@777 1095 // buffers are available.
ysr@777 1096 void drain_satb_buffers();
ysr@777 1097 // It keeps popping regions from the region stack and processing
ysr@777 1098 // them until the region stack is empty.
ysr@777 1099 void drain_region_stack(BitMapClosure* closure);
ysr@777 1100
ysr@777 1101 // moves the local finger to a new location
ysr@777 1102 inline void move_finger_to(HeapWord* new_finger) {
tonyp@1458 1103 assert(new_finger >= _finger && new_finger < _region_limit, "invariant");
ysr@777 1104 _finger = new_finger;
ysr@777 1105 }
ysr@777 1106
ysr@777 1107 // moves the region finger to a new location
ysr@777 1108 inline void move_region_finger_to(HeapWord* new_finger) {
tonyp@1458 1109 assert(new_finger < _cm->finger(), "invariant");
ysr@777 1110 _region_finger = new_finger;
ysr@777 1111 }
ysr@777 1112
ysr@777 1113 CMTask(int task_num, ConcurrentMark *cm,
ysr@777 1114 CMTaskQueue* task_queue, CMTaskQueueSet* task_queues);
ysr@777 1115
ysr@777 1116 // it prints statistics associated with this task
ysr@777 1117 void print_stats();
ysr@777 1118
ysr@777 1119 #if _MARKING_STATS_
ysr@777 1120 void increase_objs_found_on_bitmap() { ++_objs_found_on_bitmap; }
ysr@777 1121 #endif // _MARKING_STATS_
ysr@777 1122 };

mercurial