hotspot/src/share/vm/gc/g1/concurrentMark.inline.hpp
author ehelin
Mon, 19 Oct 2015 15:47:36 +0200
changeset 34131 d5fc001452bb
parent 33786 ac8da6513351
child 34282 92f8f8941296
permissions -rw-r--r--
8139883: Add virtual destructor G1ParScanThreadState Reviewed-by: tschatzl, mgerdin, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
     1
/*
29472
740ba666f6bb 8073654: Marking statistics should use size_t
sangheki
parents: 26846
diff changeset
     2
 * Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved.
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
     4
 *
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
     7
 * published by the Free Software Foundation.
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
     8
 *
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
    13
 * accompanied this code).
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
    14
 *
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
    18
 *
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
    21
 * questions.
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
    22
 *
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
    23
 */
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
    24
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30577
diff changeset
    25
#ifndef SHARE_VM_GC_G1_CONCURRENTMARK_INLINE_HPP
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30577
diff changeset
    26
#define SHARE_VM_GC_G1_CONCURRENTMARK_INLINE_HPP
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
    27
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30577
diff changeset
    28
#include "gc/g1/concurrentMark.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30577
diff changeset
    29
#include "gc/g1/g1CollectedHeap.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30577
diff changeset
    30
#include "gc/shared/taskqueue.inline.hpp"
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
    31
13919
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    32
// Utility routine to set an exclusive range of cards on the given
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    33
// card liveness bitmap
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    34
inline void ConcurrentMark::set_card_bitmap_range(BitMap* card_bm,
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    35
                                                  BitMap::idx_t start_idx,
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    36
                                                  BitMap::idx_t end_idx,
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    37
                                                  bool is_par) {
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    38
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    39
  // Set the exclusive bit range [start_idx, end_idx).
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    40
  assert((end_idx - start_idx) > 0, "at least one card");
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    41
  assert(end_idx <= card_bm->size(), "sanity");
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    42
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    43
  // Silently clip the end index
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    44
  end_idx = MIN2(end_idx, card_bm->size());
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    45
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    46
  // For small ranges use a simple loop; otherwise use set_range or
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    47
  // use par_at_put_range (if parallel). The range is made up of the
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    48
  // cards that are spanned by an object/mem region so 8 cards will
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    49
  // allow up to object sizes up to 4K to be handled using the loop.
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    50
  if ((end_idx - start_idx) <= 8) {
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    51
    for (BitMap::idx_t i = start_idx; i < end_idx; i += 1) {
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    52
      if (is_par) {
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    53
        card_bm->par_set_bit(i);
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    54
      } else {
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    55
        card_bm->set_bit(i);
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    56
      }
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    57
    }
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    58
  } else {
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    59
    // Note BitMap::par_at_put_range() and BitMap::set_range() are exclusive.
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    60
    if (is_par) {
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    61
      card_bm->par_at_put_range(start_idx, end_idx, true);
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    62
    } else {
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    63
      card_bm->set_range(start_idx, end_idx);
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    64
    }
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    65
  }
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    66
}
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    67
11583
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    68
// Returns the index in the liveness accounting card bitmap
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    69
// for the given address
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    70
inline BitMap::idx_t ConcurrentMark::card_bitmap_index_for(HeapWord* addr) {
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    71
  // Below, the term "card num" means the result of shifting an address
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    72
  // by the card shift -- address 0 corresponds to card number 0.  One
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    73
  // must subtract the card num of the bottom of the heap to obtain a
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    74
  // card table index.
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    75
  intptr_t card_num = intptr_t(uintptr_t(addr) >> CardTableModRefBS::card_shift);
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    76
  return card_num - heap_bottom_card_num();
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    77
}
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    78
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    79
// Counts the given memory region in the given task/worker
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    80
// counting data structures.
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    81
inline void ConcurrentMark::count_region(MemRegion mr, HeapRegion* hr,
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    82
                                         size_t* marked_bytes_array,
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    83
                                         BitMap* task_card_bm) {
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    84
  G1CollectedHeap* g1h = _g1h;
20309
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15949
diff changeset
    85
  CardTableModRefBS* ct_bs = g1h->g1_barrier_set();
13919
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    86
11583
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    87
  HeapWord* start = mr.start();
13919
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
    88
  HeapWord* end = mr.end();
11583
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    89
  size_t region_size_bytes = mr.byte_size();
26316
93f6b40c038b 8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents: 26160
diff changeset
    90
  uint index = hr->hrm_index();
11583
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    91
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    92
  assert(hr == g1h->heap_region_containing(start), "sanity");
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    93
  assert(marked_bytes_array != NULL, "pre-condition");
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    94
  assert(task_card_bm != NULL, "pre-condition");
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    95
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    96
  // Add to the task local marked bytes for this region.
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    97
  marked_bytes_array[index] += region_size_bytes;
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    98
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
    99
  BitMap::idx_t start_idx = card_bitmap_index_for(start);
13919
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
   100
  BitMap::idx_t end_idx = card_bitmap_index_for(end);
11583
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   101
13919
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
   102
  // Note: if we're looking at the last region in heap - end
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
   103
  // could be actually just beyond the end of the heap; end_idx
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
   104
  // will then correspond to a (non-existent) card that is also
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
   105
  // just beyond the heap.
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
   106
  if (g1h->is_in_g1_reserved(end) && !ct_bs->is_card_aligned(end)) {
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 20309
diff changeset
   107
    // end of region is not card aligned - increment to cover
13919
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
   108
    // all the cards spanned by the region.
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
   109
    end_idx += 1;
11583
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   110
  }
13919
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
   111
  // The card bitmap is task/worker specific => no need to use
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
   112
  // the 'par' BitMap routines.
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
   113
  // Set bits in the exclusive bit range [start_idx, end_idx).
01f6d01a9004 7200261: G1: Liveness counting inconsistencies during marking verification
johnc
parents: 12381
diff changeset
   114
  set_card_bitmap_range(task_card_bm, start_idx, end_idx, false /* is_par */);
11583
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   115
}
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   116
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   117
// Counts the given object in the given task/worker counting data structures.
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   118
inline void ConcurrentMark::count_object(oop obj,
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   119
                                         HeapRegion* hr,
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   120
                                         size_t* marked_bytes_array,
33786
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   121
                                         BitMap* task_card_bm,
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   122
                                         size_t word_size) {
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   123
  assert(!hr->is_continues_humongous(), "Cannot enter count_object with continues humongous");
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   124
  if (!hr->is_starts_humongous()) {
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   125
    MemRegion mr((HeapWord*)obj, word_size);
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   126
    count_region(mr, hr, marked_bytes_array, task_card_bm);
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   127
  } else {
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   128
    do {
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   129
      MemRegion mr(hr->bottom(), hr->top());
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   130
      count_region(mr, hr, marked_bytes_array, task_card_bm);
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   131
      hr = _g1h->next_region_in_humongous(hr);
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   132
    } while (hr != NULL);
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   133
  }
11583
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   134
}
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   135
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   136
// Attempts to mark the given object and, if successful, counts
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   137
// the object in the given task/worker counting structures.
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   138
inline bool ConcurrentMark::par_mark_and_count(oop obj,
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   139
                                               HeapRegion* hr,
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   140
                                               size_t* marked_bytes_array,
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   141
                                               BitMap* task_card_bm) {
33786
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   142
  if (_nextMarkBitMap->parMark((HeapWord*)obj)) {
11583
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   143
    // Update the task specific count data for the object.
33786
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   144
    count_object(obj, hr, marked_bytes_array, task_card_bm, obj->size());
11583
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   145
    return true;
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   146
  }
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   147
  return false;
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   148
}
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   149
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   150
// Attempts to mark the given object and, if successful, counts
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   151
// the object in the task/worker counting structures for the
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   152
// given worker id.
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   153
inline bool ConcurrentMark::par_mark_and_count(oop obj,
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   154
                                               size_t word_size,
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   155
                                               HeapRegion* hr,
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   156
                                               uint worker_id) {
33786
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   157
  if (_nextMarkBitMap->parMark((HeapWord*)obj)) {
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   158
    size_t* marked_bytes_array = count_marked_bytes_array_for(worker_id);
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   159
    BitMap* task_card_bm = count_card_bitmap_for(worker_id);
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   160
    count_object(obj, hr, marked_bytes_array, task_card_bm, word_size);
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   161
    return true;
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   162
  }
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   163
  return false;
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   164
}
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   165
11574
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   166
inline bool CMBitMapRO::iterate(BitMapClosure* cl, MemRegion mr) {
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   167
  HeapWord* start_addr = MAX2(startWord(), mr.start());
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   168
  HeapWord* end_addr = MIN2(endWord(), mr.end());
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   169
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   170
  if (end_addr > start_addr) {
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   171
    // Right-open interval [start-offset, end-offset).
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   172
    BitMap::idx_t start_offset = heapWordToOffset(start_addr);
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   173
    BitMap::idx_t end_offset = heapWordToOffset(end_addr);
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   174
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   175
    start_offset = _bm.get_next_one_offset(start_offset, end_offset);
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   176
    while (start_offset < end_offset) {
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   177
      if (!cl->do_bit(start_offset)) {
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   178
        return false;
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   179
      }
15949
a55dea304e8c 8008079: G1: Add nextObject routine to CMBitMapRO and replace nextWord
tamao
parents: 14073
diff changeset
   180
      HeapWord* next_addr = MIN2(nextObject(offsetToHeapWord(start_offset)), end_addr);
11574
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   181
      BitMap::idx_t next_offset = heapWordToOffset(next_addr);
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   182
      start_offset = _bm.get_next_one_offset(next_offset, end_offset);
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   183
    }
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   184
  }
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   185
  return true;
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   186
}
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   187
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   188
inline bool CMBitMapRO::iterate(BitMapClosure* cl) {
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   189
  MemRegion mr(startWord(), sizeInWords());
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   190
  return iterate(cl, mr);
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   191
}
8a7fe61966c0 7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents: 11455
diff changeset
   192
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   193
#define check_mark(addr)                                                       \
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   194
  assert(_bmStartWord <= (addr) && (addr) < (_bmStartWord + _bmWordSize),      \
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   195
         "outside underlying space?");                                         \
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   196
  assert(G1CollectedHeap::heap()->is_in_exact(addr),                           \
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32350
diff changeset
   197
         "Trying to access not available bitmap " PTR_FORMAT                   \
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32350
diff changeset
   198
         " corresponding to " PTR_FORMAT " (%u)",                              \
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32350
diff changeset
   199
         p2i(this), p2i(addr), G1CollectedHeap::heap()->addr_to_region(addr));
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   200
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   201
inline void CMBitMap::mark(HeapWord* addr) {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   202
  check_mark(addr);
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   203
  _bm.set_bit(heapWordToOffset(addr));
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   204
}
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   205
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   206
inline void CMBitMap::clear(HeapWord* addr) {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   207
  check_mark(addr);
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   208
  _bm.clear_bit(heapWordToOffset(addr));
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   209
}
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   210
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   211
inline bool CMBitMap::parMark(HeapWord* addr) {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   212
  check_mark(addr);
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   213
  return _bm.par_set_bit(heapWordToOffset(addr));
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   214
}
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   215
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   216
inline bool CMBitMap::parClear(HeapWord* addr) {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   217
  check_mark(addr);
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   218
  return _bm.par_clear_bit(heapWordToOffset(addr));
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   219
}
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   220
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   221
#undef check_mark
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 24424
diff changeset
   222
31994
3721b7aa3a0d 8079082: VerifyNoCSetOopsClosure is derived twice from Closure
kbarrett
parents: 31592
diff changeset
   223
template<typename Fn>
3721b7aa3a0d 8079082: VerifyNoCSetOopsClosure is derived twice from Closure
kbarrett
parents: 31592
diff changeset
   224
inline void CMMarkStack::iterate(Fn fn) {
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32350
diff changeset
   225
  assert(_saved_index == _index, "saved index: %d index: %d", _saved_index, _index);
31994
3721b7aa3a0d 8079082: VerifyNoCSetOopsClosure is derived twice from Closure
kbarrett
parents: 31592
diff changeset
   226
  for (int i = 0; i < _index; ++i) {
3721b7aa3a0d 8079082: VerifyNoCSetOopsClosure is derived twice from Closure
kbarrett
parents: 31592
diff changeset
   227
    fn(_base[i]);
3721b7aa3a0d 8079082: VerifyNoCSetOopsClosure is derived twice from Closure
kbarrett
parents: 31592
diff changeset
   228
  }
3721b7aa3a0d 8079082: VerifyNoCSetOopsClosure is derived twice from Closure
kbarrett
parents: 31592
diff changeset
   229
}
3721b7aa3a0d 8079082: VerifyNoCSetOopsClosure is derived twice from Closure
kbarrett
parents: 31592
diff changeset
   230
32350
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   231
// It scans an object and visits its children.
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   232
inline void CMTask::scan_object(oop obj) { process_grey_object<true>(obj); }
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   233
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   234
inline void CMTask::push(oop obj) {
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   235
  HeapWord* objAddr = (HeapWord*) obj;
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   236
  assert(_g1h->is_in_g1_reserved(objAddr), "invariant");
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   237
  assert(!_g1h->is_on_master_free_list(
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   238
              _g1h->heap_region_containing((HeapWord*) objAddr)), "invariant");
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   239
  assert(!_g1h->is_obj_ill(obj), "invariant");
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   240
  assert(_nextMarkBitMap->isMarked(objAddr), "invariant");
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   241
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   242
  if (!_task_queue->push(obj)) {
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   243
    // The local task queue looks full. We need to push some entries
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   244
    // to the global stack.
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   245
    move_entries_to_global_stack();
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   246
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   247
    // this should succeed since, even if we overflow the global
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   248
    // stack, we should have definitely removed some entries from the
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   249
    // local queue. So, there must be space on it.
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   250
    bool success = _task_queue->push(obj);
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   251
    assert(success, "invariant");
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   252
  }
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   253
}
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   254
30577
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   255
inline bool CMTask::is_below_finger(oop obj, HeapWord* global_finger) const {
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   256
  // If obj is above the global finger, then the mark bitmap scan
30162
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   257
  // will find it later, and no push is needed.  Similarly, if we have
30577
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   258
  // a current region and obj is between the local finger and the
30162
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   259
  // end of the current region, then no push is needed.  The tradeoff
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   260
  // of checking both vs only checking the global finger is that the
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   261
  // local check will be more accurate and so result in fewer pushes,
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   262
  // but may also be a little slower.
30577
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   263
  HeapWord* objAddr = (HeapWord*)obj;
30162
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   264
  if (_finger != NULL) {
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   265
    // We have a current region.
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   266
30162
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   267
    // Finger and region values are all NULL or all non-NULL.  We
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   268
    // use _finger to check since we immediately use its value.
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   269
    assert(_curr_region != NULL, "invariant");
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   270
    assert(_region_limit != NULL, "invariant");
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   271
    assert(_region_limit <= global_finger, "invariant");
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   272
30577
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   273
    // True if obj is less than the local finger, or is between
30162
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   274
    // the region limit and the global finger.
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   275
    if (objAddr < _finger) {
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   276
      return true;
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   277
    } else if (objAddr < _region_limit) {
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   278
      return false;
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   279
    } // Else check global finger.
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   280
  }
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   281
  // Check global finger.
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   282
  return objAddr < global_finger;
ba9738750a74 8076265: Simplify deal_with_reference
kbarrett
parents: 29472
diff changeset
   283
}
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   284
32350
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   285
template<bool scan>
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   286
inline void CMTask::process_grey_object(oop obj) {
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   287
  assert(scan || obj->is_typeArray(), "Skipping scan of grey non-typeArray");
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   288
  assert(_nextMarkBitMap->isMarked((HeapWord*) obj), "invariant");
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   289
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   290
  size_t obj_size = obj->size();
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   291
  _words_scanned += obj_size;
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   292
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   293
  if (scan) {
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   294
    obj->oop_iterate(_cm_oop_closure);
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   295
  }
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   296
  check_limits();
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   297
}
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   298
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   299
fec57eb3f599 8133121: Move implementation of process_grey_object to concurrentMark.inline.hpp
asiebenborn
parents: 31994
diff changeset
   300
30577
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   301
inline void CMTask::make_reference_grey(oop obj, HeapRegion* hr) {
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   302
  if (_cm->par_mark_and_count(obj, hr, _marked_bytes_array, _card_bm)) {
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   303
    // No OrderAccess:store_load() is needed. It is implicit in the
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   304
    // CAS done in CMBitMap::parMark() call in the routine above.
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   305
    HeapWord* global_finger = _cm->finger();
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   306
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   307
    // We only need to push a newly grey object on the mark
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   308
    // stack if it is in a section of memory the mark bitmap
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   309
    // scan has already examined.  Mark bitmap scanning
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   310
    // maintains progress "fingers" for determining that.
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   311
    //
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   312
    // Notice that the global finger might be moving forward
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   313
    // concurrently. This is not a problem. In the worst case, we
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   314
    // mark the object while it is above the global finger and, by
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   315
    // the time we read the global finger, it has moved forward
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   316
    // past this object. In this case, the object will probably
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   317
    // be visited when a task is scanning the region and will also
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   318
    // be pushed on the stack. So, some duplicate work, but no
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   319
    // correctness problems.
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   320
    if (is_below_finger(obj, global_finger)) {
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   321
      if (obj->is_typeArray()) {
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   322
        // Immediately process arrays of primitive types, rather
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   323
        // than pushing on the mark stack.  This keeps us from
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   324
        // adding humongous objects to the mark stack that might
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   325
        // be reclaimed before the entry is processed - see
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   326
        // selection of candidates for eager reclaim of humongous
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   327
        // objects.  The cost of the additional type test is
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   328
        // mitigated by avoiding a trip through the mark stack,
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   329
        // by only doing a bookkeeping update and avoiding the
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   330
        // actual scan of the object - a typeArray contains no
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   331
        // references, and the metadata is built-in.
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   332
        process_grey_object<false>(obj);
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   333
      } else {
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   334
        push(obj);
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   335
      }
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   336
    }
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   337
  }
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   338
}
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   339
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   340
inline void CMTask::deal_with_reference(oop obj) {
30577
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   341
  increment_refs_reached();
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   342
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   343
  HeapWord* objAddr = (HeapWord*) obj;
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32350
diff changeset
   344
  assert(obj->is_oop_or_null(true /* ignore mark word */), "Expected an oop or NULL at " PTR_FORMAT, p2i(obj));
11583
83a7383de44c 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 11574
diff changeset
   345
  if (_g1h->is_in_g1_reserved(objAddr)) {
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   346
    assert(obj != NULL, "null check is implicit");
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   347
    if (!_nextMarkBitMap->isMarked(objAddr)) {
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   348
      // Only get the containing region if the object is not marked on the
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   349
      // bitmap (otherwise, it's a waste of time since we won't do
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   350
      // anything with it).
33786
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   351
      HeapRegion* hr = _g1h->heap_region_containing(obj);
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   352
      if (!hr->obj_allocated_since_next_marking(obj)) {
30577
de9fa7ccc1bc 8075215: SATB buffer processing found reclaimed humongous object
kbarrett
parents: 30566
diff changeset
   353
        make_reference_grey(obj, hr);
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   354
      }
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   355
    }
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   356
  }
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   357
}
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents:
diff changeset
   358
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 9999
diff changeset
   359
inline void ConcurrentMark::markPrev(oop p) {
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 9999
diff changeset
   360
  assert(!_prevMarkBitMap->isMarked((HeapWord*) p), "sanity");
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 9999
diff changeset
   361
  // Note we are overriding the read-only view of the prev map here, via
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 9999
diff changeset
   362
  // the cast.
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 9999
diff changeset
   363
  ((CMBitMap*)_prevMarkBitMap)->mark((HeapWord*) p);
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 9999
diff changeset
   364
}
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 9999
diff changeset
   365
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   366
inline void ConcurrentMark::grayRoot(oop obj, size_t word_size,
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   367
                                     uint worker_id, HeapRegion* hr) {
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   368
  assert(obj != NULL, "pre-condition");
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 9999
diff changeset
   369
  HeapWord* addr = (HeapWord*) obj;
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   370
  if (hr == NULL) {
33786
ac8da6513351 8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents: 33740
diff changeset
   371
    hr = _g1h->heap_region_containing(addr);
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   372
  } else {
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   373
    assert(hr->is_in(addr), "pre-condition");
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   374
  }
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   375
  assert(hr != NULL, "sanity");
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   376
  // Given that we're looking for a region that contains an object
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   377
  // header it's impossible to get back a HC region.
26846
7d4376f8560e 8058495: G1: normalize names for isHumongous() and friends
tonyp
parents: 26831
diff changeset
   378
  assert(!hr->is_continues_humongous(), "sanity");
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 9999
diff changeset
   379
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   380
  if (addr < hr->next_top_at_mark_start()) {
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   381
    if (!_nextMarkBitMap->isMarked(addr)) {
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   382
      par_mark_and_count(obj, word_size, hr, worker_id);
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11583
diff changeset
   383
    }
11455
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 9999
diff changeset
   384
  }
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 9999
diff changeset
   385
}
a6ab3d8b9a4c 6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents: 9999
diff changeset
   386
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30577
diff changeset
   387
#endif // SHARE_VM_GC_G1_CONCURRENTMARK_INLINE_HPP