hotspot/src/share/vm/memory/cardTableModRefBS.cpp
author jprovino
Wed, 23 Jan 2013 13:02:39 -0500
changeset 15482 470d0b0c09f1
parent 13963 e5b53c306fb5
child 15848 a7b244c71903
permissions -rw-r--r--
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS Summary: Rename INCLUDE_ALTERNATE_GCS to INCLUDE_ALL_GCS and replace SERIALGC with INCLUDE_ALL_GCS. Reviewed-by: coleenp, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13963
e5b53c306fb5 7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents: 13195
diff changeset
     2
 * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4461
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4461
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4461
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5892
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5892
diff changeset
    26
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5892
diff changeset
    27
#include "memory/cardTableModRefBS.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5892
diff changeset
    28
#include "memory/cardTableRS.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5892
diff changeset
    29
#include "memory/sharedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5892
diff changeset
    30
#include "memory/space.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5892
diff changeset
    31
#include "memory/space.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5892
diff changeset
    32
#include "memory/universe.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5892
diff changeset
    33
#include "runtime/java.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5892
diff changeset
    34
#include "runtime/mutexLocker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5892
diff changeset
    35
#include "runtime/virtualspace.hpp"
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12268
diff changeset
    36
#include "services/memTracker.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13963
diff changeset
    37
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5892
diff changeset
    38
#ifdef COMPILER1
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5892
diff changeset
    39
#include "c1/c1_LIR.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5892
diff changeset
    40
#include "c1/c1_LIRGenerator.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5892
diff changeset
    41
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5892
diff changeset
    42
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// This kind of "BarrierSet" allows a "CollectedHeap" to detect and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// enumerate ref fields that have been modified (since the last
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// enumeration.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
size_t CardTableModRefBS::cards_required(size_t covered_words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // Add one for a guard card, used to detect errors.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  const size_t words = align_size_up(covered_words, card_size_in_words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  return words / card_size_in_words + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
size_t CardTableModRefBS::compute_byte_map_size()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  assert(_guard_index == cards_required(_whole_heap.word_size()) - 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
                                        "unitialized, check declaration order");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  assert(_page_size != 0, "unitialized, check declaration order");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  const size_t granularity = os::vm_allocation_granularity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  return align_size_up(_guard_index + 1, MAX2(_page_size, granularity));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
CardTableModRefBS::CardTableModRefBS(MemRegion whole_heap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
                                     int max_covered_regions):
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  ModRefBarrierSet(max_covered_regions),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  _whole_heap(whole_heap),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  _guard_index(cards_required(whole_heap.word_size()) - 1),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  _last_valid_index(_guard_index - 1),
194
8cdd3d9a4c99 6635560: segv in reference processor on t1000
jcoomes
parents: 1
diff changeset
    69
  _page_size(os::vm_page_size()),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  _byte_map_size(compute_byte_map_size())
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  _kind = BarrierSet::CardTableModRef;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  HeapWord* low_bound  = _whole_heap.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  HeapWord* high_bound = _whole_heap.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  assert((uintptr_t(low_bound)  & (card_size - 1))  == 0, "heap must start at card boundary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  assert((uintptr_t(high_bound) & (card_size - 1))  == 0, "heap must end at card boundary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  assert(card_size <= 512, "card_size must be less than 512"); // why?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  _covered   = new MemRegion[max_covered_regions];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  _committed = new MemRegion[max_covered_regions];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  if (_covered == NULL || _committed == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    vm_exit_during_initialization("couldn't alloc card table covered region set.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  for (i = 0; i < max_covered_regions; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    _covered[i].set_word_size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    _committed[i].set_word_size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  _cur_covered_regions = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  const size_t rs_align = _page_size == (size_t) os::vm_page_size() ? 0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    MAX2(_page_size, (size_t) os::vm_allocation_granularity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  ReservedSpace heap_rs(_byte_map_size, rs_align, false);
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12268
diff changeset
    95
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12268
diff changeset
    96
  MemTracker::record_virtual_memory_type((address)heap_rs.base(), mtGC);
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12268
diff changeset
    97
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  os::trace_page_sizes("card table", _guard_index + 1, _guard_index + 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
                       _page_size, heap_rs.base(), heap_rs.size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  if (!heap_rs.is_reserved()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    vm_exit_during_initialization("Could not reserve enough space for the "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
                                  "card marking array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // The assember store_check code will do an unsigned shift of the oop,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // then add it to byte_map_base, i.e.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  //   _byte_map = byte_map_base + (uintptr_t(low_bound) >> card_shift)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  _byte_map = (jbyte*) heap_rs.base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  byte_map_base = _byte_map - (uintptr_t(low_bound) >> card_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  assert(byte_for(low_bound) == &_byte_map[0], "Checking start of map");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  assert(byte_for(high_bound-1) <= &_byte_map[_last_valid_index], "Checking end of map");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  jbyte* guard_card = &_byte_map[_guard_index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  uintptr_t guard_page = align_size_down((uintptr_t)guard_card, _page_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  _guard_region = MemRegion((HeapWord*)guard_page, _page_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  if (!os::commit_memory((char*)guard_page, _page_size, _page_size)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    // Do better than this for Merlin
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    vm_exit_out_of_memory(_page_size, "card table last card");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  }
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12268
diff changeset
   121
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  *guard_card = last_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
   _lowest_non_clean =
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12268
diff changeset
   125
    NEW_C_HEAP_ARRAY(CardArr, max_covered_regions, mtGC);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  _lowest_non_clean_chunk_size =
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12268
diff changeset
   127
    NEW_C_HEAP_ARRAY(size_t, max_covered_regions, mtGC);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  _lowest_non_clean_base_chunk_index =
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12268
diff changeset
   129
    NEW_C_HEAP_ARRAY(uintptr_t, max_covered_regions, mtGC);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  _last_LNC_resizing_collection =
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12268
diff changeset
   131
    NEW_C_HEAP_ARRAY(int, max_covered_regions, mtGC);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  if (_lowest_non_clean == NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
      || _lowest_non_clean_chunk_size == NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
      || _lowest_non_clean_base_chunk_index == NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
      || _last_LNC_resizing_collection == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    vm_exit_during_initialization("couldn't allocate an LNC array.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  for (i = 0; i < max_covered_regions; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    _lowest_non_clean[i] = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    _lowest_non_clean_chunk_size[i] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    _last_LNC_resizing_collection[i] = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  if (TraceCardTableModRefBS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    gclog_or_tty->print_cr("CardTableModRefBS::CardTableModRefBS: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    gclog_or_tty->print_cr("  "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
                  "  &_byte_map[0]: " INTPTR_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
                  "  &_byte_map[_last_valid_index]: " INTPTR_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
                  &_byte_map[0],
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
                  &_byte_map[_last_valid_index]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    gclog_or_tty->print_cr("  "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
                  "  byte_map_base: " INTPTR_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
                  byte_map_base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
int CardTableModRefBS::find_covering_region_by_base(HeapWord* base) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  for (i = 0; i < _cur_covered_regions; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    if (_covered[i].start() == base) return i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    if (_covered[i].start() > base) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // If we didn't find it, create a new one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  assert(_cur_covered_regions < _max_covered_regions,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
         "too many covered regions");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // Move the ones above up, to maintain sorted order.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  for (int j = _cur_covered_regions; j > i; j--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    _covered[j] = _covered[j-1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    _committed[j] = _committed[j-1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  int res = i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  _cur_covered_regions++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  _covered[res].set_start(base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  _covered[res].set_word_size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  jbyte* ct_start = byte_for(base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  uintptr_t ct_start_aligned = align_size_down((uintptr_t)ct_start, _page_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  _committed[res].set_start((HeapWord*)ct_start_aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  _committed[res].set_word_size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
int CardTableModRefBS::find_covering_region_containing(HeapWord* addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  for (int i = 0; i < _cur_covered_regions; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    if (_covered[i].contains(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
      return i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  assert(0, "address outside of heap?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
HeapWord* CardTableModRefBS::largest_prev_committed_end(int ind) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  HeapWord* max_end = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  for (int j = 0; j < ind; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    HeapWord* this_end = _committed[j].end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    if (this_end > max_end) max_end = this_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  return max_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
MemRegion CardTableModRefBS::committed_unique_to_self(int self,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
                                                      MemRegion mr) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  MemRegion result = mr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  for (int r = 0; r < _cur_covered_regions; r += 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    if (r != self) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
      result = result.minus(_committed[r]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // Never include the guard page.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  result = result.minus(_guard_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
void CardTableModRefBS::resize_covered_region(MemRegion new_region) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // We don't change the start of a region, only the end.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  assert(_whole_heap.contains(new_region),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
           "attempt to cover area not in reserved area");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  debug_only(verify_guard();)
754
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   218
  // collided is true if the expansion would push into another committed region
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   219
  debug_only(bool collided = false;)
179
59e3abf83f72 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 1
diff changeset
   220
  int const ind = find_covering_region_by_base(new_region.start());
59e3abf83f72 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 1
diff changeset
   221
  MemRegion const old_region = _covered[ind];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  assert(old_region.start() == new_region.start(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  if (new_region.word_size() != old_region.word_size()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    // Commit new or uncommit old pages, if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    MemRegion cur_committed = _committed[ind];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    // Extend the end of this _commited region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    // to cover the end of any lower _committed regions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    // This forms overlapping regions, but never interior regions.
179
59e3abf83f72 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 1
diff changeset
   229
    HeapWord* const max_prev_end = largest_prev_committed_end(ind);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    if (max_prev_end > cur_committed.end()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
      cur_committed.set_end(max_prev_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    // Align the end up to a page size (starts are already aligned).
179
59e3abf83f72 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 1
diff changeset
   234
    jbyte* const new_end = byte_after(new_region.last());
754
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   235
    HeapWord* new_end_aligned =
179
59e3abf83f72 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 1
diff changeset
   236
      (HeapWord*) align_size_up((uintptr_t)new_end, _page_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    assert(new_end_aligned >= (HeapWord*) new_end,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
           "align up, but less");
2107
338528868274 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 1676
diff changeset
   239
    // Check the other regions (excludes "ind") to ensure that
338528868274 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 1676
diff changeset
   240
    // the new_end_aligned does not intrude onto the committed
338528868274 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 1676
diff changeset
   241
    // space of another region.
754
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   242
    int ri = 0;
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   243
    for (ri = 0; ri < _cur_covered_regions; ri++) {
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   244
      if (ri != ind) {
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   245
        if (_committed[ri].contains(new_end_aligned)) {
2107
338528868274 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 1676
diff changeset
   246
          // The prior check included in the assert
338528868274 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 1676
diff changeset
   247
          // (new_end_aligned >= _committed[ri].start())
338528868274 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 1676
diff changeset
   248
          // is redundant with the "contains" test.
338528868274 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 1676
diff changeset
   249
          // Any region containing the new end
338528868274 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 1676
diff changeset
   250
          // should start at or beyond the region found (ind)
338528868274 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 1676
diff changeset
   251
          // for the new end (committed regions are not expected to
338528868274 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 1676
diff changeset
   252
          // be proper subsets of other committed regions).
338528868274 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 1676
diff changeset
   253
          assert(_committed[ri].start() >= _committed[ind].start(),
754
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   254
                 "New end of committed region is inconsistent");
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   255
          new_end_aligned = _committed[ri].start();
2107
338528868274 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 1676
diff changeset
   256
          // new_end_aligned can be equal to the start of its
338528868274 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 1676
diff changeset
   257
          // committed region (i.e., of "ind") if a second
338528868274 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 1676
diff changeset
   258
          // region following "ind" also start at the same location
338528868274 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 1676
diff changeset
   259
          // as "ind".
338528868274 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 1676
diff changeset
   260
          assert(new_end_aligned >= _committed[ind].start(),
754
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   261
            "New end of committed region is before start");
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   262
          debug_only(collided = true;)
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   263
          // Should only collide with 1 region
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   264
          break;
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   265
        }
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   266
      }
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   267
    }
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   268
#ifdef ASSERT
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   269
    for (++ri; ri < _cur_covered_regions; ri++) {
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   270
      assert(!_committed[ri].contains(new_end_aligned),
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   271
        "New end of committed region is in a second committed region");
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   272
    }
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   273
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    // The guard page is always committed and should not be committed over.
3587
0140e816d000 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 2154
diff changeset
   275
    // "guarded" is used for assertion checking below and recalls the fact
0140e816d000 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 2154
diff changeset
   276
    // that the would-be end of the new committed region would have
0140e816d000 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 2154
diff changeset
   277
    // penetrated the guard page.
0140e816d000 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 2154
diff changeset
   278
    HeapWord* new_end_for_commit = new_end_aligned;
0140e816d000 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 2154
diff changeset
   279
0140e816d000 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 2154
diff changeset
   280
    DEBUG_ONLY(bool guarded = false;)
0140e816d000 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 2154
diff changeset
   281
    if (new_end_for_commit > _guard_region.start()) {
0140e816d000 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 2154
diff changeset
   282
      new_end_for_commit = _guard_region.start();
0140e816d000 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 2154
diff changeset
   283
      DEBUG_ONLY(guarded = true;)
0140e816d000 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 2154
diff changeset
   284
    }
754
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   285
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
    if (new_end_for_commit > cur_committed.end()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
      // Must commit new pages.
179
59e3abf83f72 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 1
diff changeset
   288
      MemRegion const new_committed =
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
        MemRegion(cur_committed.end(), new_end_for_commit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
      assert(!new_committed.is_empty(), "Region should not be empty here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
      if (!os::commit_memory((char*)new_committed.start(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
                             new_committed.byte_size(), _page_size)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
        // Do better than this for Merlin
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
        vm_exit_out_of_memory(new_committed.byte_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
                "card table expansion");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    // Use new_end_aligned (as opposed to new_end_for_commit) because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    // the cur_committed region may include the guard region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    } else if (new_end_aligned < cur_committed.end()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
      // Must uncommit pages.
179
59e3abf83f72 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 1
diff changeset
   302
      MemRegion const uncommit_region =
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
        committed_unique_to_self(ind, MemRegion(new_end_aligned,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
                                                cur_committed.end()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
      if (!uncommit_region.is_empty()) {
5892
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   306
        // It is not safe to uncommit cards if the boundary between
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   307
        // the generations is moving.  A shrink can uncommit cards
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   308
        // owned by generation A but being used by generation B.
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   309
        if (!UseAdaptiveGCBoundary) {
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   310
          if (!os::uncommit_memory((char*)uncommit_region.start(),
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   311
                                   uncommit_region.byte_size())) {
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   312
            assert(false, "Card table contraction failed");
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   313
            // The call failed so don't change the end of the
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   314
            // committed region.  This is better than taking the
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   315
            // VM down.
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   316
            new_end_aligned = _committed[ind].end();
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   317
          }
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   318
        } else {
754
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   319
          new_end_aligned = _committed[ind].end();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
    // In any case, we can reset the end of the current committed entry.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
    _committed[ind].set_end(new_end_aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
5892
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   326
#ifdef ASSERT
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   327
    // Check that the last card in the new region is committed according
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   328
    // to the tables.
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   329
    bool covered = false;
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   330
    for (int cr = 0; cr < _cur_covered_regions; cr++) {
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   331
      if (_committed[cr].contains(new_end - 1)) {
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   332
        covered = true;
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   333
        break;
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   334
      }
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   335
    }
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   336
    assert(covered, "Card for end of new region not committed");
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   337
#endif
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   338
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
    // The default of 0 is not necessarily clean cards.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    jbyte* entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    if (old_region.last() < _whole_heap.start()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
      entry = byte_for(_whole_heap.start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
      entry = byte_after(old_region.last());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    }
1676
d80e69372634 6653214: MemoryPoolMXBean.setUsageThreshold() does not support large heap sizes.
swamyv
parents: 1388
diff changeset
   346
    assert(index_for(new_region.last()) <  _guard_index,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
      "The guard card will be overwritten");
754
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   348
    // This line commented out cleans the newly expanded region and
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   349
    // not the aligned up expanded region.
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   350
    // jbyte* const end = byte_after(new_region.last());
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   351
    jbyte* const end = (jbyte*) new_end_for_commit;
3587
0140e816d000 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 2154
diff changeset
   352
    assert((end >= byte_after(new_region.last())) || collided || guarded,
754
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   353
      "Expect to be beyond new region unless impacting another region");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    // do nothing if we resized downward.
754
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   355
#ifdef ASSERT
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   356
    for (int ri = 0; ri < _cur_covered_regions; ri++) {
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   357
      if (ri != ind) {
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   358
        // The end of the new committed region should not
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   359
        // be in any existing region unless it matches
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   360
        // the start of the next region.
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   361
        assert(!_committed[ri].contains(end) ||
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   362
               (_committed[ri].start() == (HeapWord*) end),
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   363
               "Overlapping committed regions");
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   364
      }
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   365
    }
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   366
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    if (entry < end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
      memset(entry, clean_card, pointer_delta(end, entry, sizeof(jbyte)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // In any case, the covered size changes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  _covered[ind].set_word_size(new_region.word_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  if (TraceCardTableModRefBS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
    gclog_or_tty->print_cr("CardTableModRefBS::resize_covered_region: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    gclog_or_tty->print_cr("  "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
                  "  _covered[%d].start(): " INTPTR_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
                  "  _covered[%d].last(): " INTPTR_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
                  ind, _covered[ind].start(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
                  ind, _covered[ind].last());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    gclog_or_tty->print_cr("  "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
                  "  _committed[%d].start(): " INTPTR_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
                  "  _committed[%d].last(): " INTPTR_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
                  ind, _committed[ind].start(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
                  ind, _committed[ind].last());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
    gclog_or_tty->print_cr("  "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
                  "  byte_for(start): " INTPTR_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
                  "  byte_for(last): " INTPTR_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
                  byte_for(_covered[ind].start()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
                  byte_for(_covered[ind].last()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    gclog_or_tty->print_cr("  "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
                  "  addr_for(start): " INTPTR_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
                  "  addr_for(last): " INTPTR_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
                  addr_for((jbyte*) _committed[ind].start()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
                  addr_for((jbyte*) _committed[ind].last()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  }
5892
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   396
  // Touch the last card of the covered region to show that it
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   397
  // is committed (or SEGV).
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   398
  debug_only(*byte_for(_covered[ind].last());)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  debug_only(verify_guard();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
// Note that these versions are precise!  The scanning code has to handle the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
// fact that the write barrier may be either precise or imprecise.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 219
diff changeset
   405
void CardTableModRefBS::write_ref_field_work(void* field, oop newVal) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  inline_write_ref_field(field, newVal);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
2142
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   409
/*
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   410
   Claimed and deferred bits are used together in G1 during the evacuation
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   411
   pause. These bits can have the following state transitions:
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   412
   1. The claimed bit can be put over any other card state. Except that
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   413
      the "dirty -> dirty and claimed" transition is checked for in
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   414
      G1 code and is not used.
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   415
   2. Deferred bit can be set only if the previous state of the card
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   416
      was either clean or claimed. mark_card_deferred() is wait-free.
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   417
      We do not care if the operation is be successful because if
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   418
      it does not it will only result in duplicate entry in the update
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   419
      buffer because of the "cache-miss". So it's not worth spinning.
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   420
 */
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   421
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   423
bool CardTableModRefBS::claim_card(size_t card_index) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   424
  jbyte val = _byte_map[card_index];
2142
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   425
  assert(val != dirty_card_val(), "Shouldn't claim a dirty card");
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   426
  while (val == clean_card_val() ||
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   427
         (val & (clean_card_mask_val() | claimed_card_val())) != claimed_card_val()) {
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   428
    jbyte new_val = val;
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   429
    if (val == clean_card_val()) {
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   430
      new_val = (jbyte)claimed_card_val();
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   431
    } else {
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   432
      new_val = val | (jbyte)claimed_card_val();
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   433
    }
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   434
    jbyte res = Atomic::cmpxchg(new_val, &_byte_map[card_index], val);
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   435
    if (res == val) {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   436
      return true;
2142
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   437
    }
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   438
    val = res;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   439
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   440
  return false;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   441
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   442
2142
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   443
bool CardTableModRefBS::mark_card_deferred(size_t card_index) {
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   444
  jbyte val = _byte_map[card_index];
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   445
  // It's already processed
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   446
  if ((val & (clean_card_mask_val() | deferred_card_val())) == deferred_card_val()) {
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   447
    return false;
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   448
  }
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   449
  // Cached bit can be installed either on a clean card or on a claimed card.
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   450
  jbyte new_val = val;
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   451
  if (val == clean_card_val()) {
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   452
    new_val = (jbyte)deferred_card_val();
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   453
  } else {
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   454
    if (val & claimed_card_val()) {
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   455
      new_val = val | (jbyte)deferred_card_val();
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   456
    }
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   457
  }
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   458
  if (new_val != val) {
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   459
    Atomic::cmpxchg(new_val, &_byte_map[card_index], val);
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   460
  }
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   461
  return true;
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   462
}
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   463
9336
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   464
void CardTableModRefBS::non_clean_card_iterate_possibly_parallel(Space* sp,
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   465
                                                                 MemRegion mr,
9624
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   466
                                                                 OopsInGenClosure* cl,
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   467
                                                                 CardTableRS* ct) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  if (!mr.is_empty()) {
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   469
    // Caller (process_strong_roots()) claims that all GC threads
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   470
    // execute this call.  With UseDynamicNumberOfGCThreads now all
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   471
    // active GC threads execute this call.  The number of active GC
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   472
    // threads needs to be passed to par_non_clean_card_iterate_work()
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   473
    // to get proper partitioning and termination.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   474
    //
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   475
    // This is an example of where n_par_threads() is used instead
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   476
    // of workers()->active_workers().  n_par_threads can be set to 0 to
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   477
    // turn off parallelism.  For example when this code is called as
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   478
    // part of verification and SharedHeap::process_strong_roots() is being
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   479
    // used, then n_par_threads() may have been set to 0.  active_workers
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   480
    // is not overloaded with the meaning that it is a switch to disable
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   481
    // parallelism and so keeps the meaning of the number of
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   482
    // active gc workers.  If parallelism has not been shut off by
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   483
    // setting n_par_threads to 0, then n_par_threads should be
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   484
    // equal to active_workers.  When a different mechanism for shutting
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   485
    // off parallelism is used, then active_workers can be used in
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   486
    // place of n_par_threads.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   487
    //  This is an example of a path where n_par_threads is
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   488
    // set to 0 to turn off parallism.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   489
    //  [7] CardTableModRefBS::non_clean_card_iterate()
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   490
    //  [8] CardTableRS::younger_refs_in_space_iterate()
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   491
    //  [9] Generation::younger_refs_in_space_iterate()
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   492
    //  [10] OneContigSpaceCardGeneration::younger_refs_iterate()
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   493
    //  [11] CompactingPermGenGen::younger_refs_iterate()
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   494
    //  [12] CardTableRS::younger_refs_iterate()
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   495
    //  [13] SharedHeap::process_strong_roots()
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   496
    //  [14] G1CollectedHeap::verify()
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   497
    //  [15] Universe::verify()
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   498
    //  [16] G1CollectedHeap::do_collection_pause_at_safepoint()
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   499
    //
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   500
    int n_threads =  SharedHeap::heap()->n_par_threads();
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   501
    bool is_par = n_threads > 0;
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   502
    if (is_par) {
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13963
diff changeset
   503
#if INCLUDE_ALL_GCS
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   504
      assert(SharedHeap::heap()->n_par_threads() ==
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   505
             SharedHeap::heap()->workers()->active_workers(), "Mismatch");
9624
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   506
      non_clean_card_iterate_parallel_work(sp, mr, cl, ct, n_threads);
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13963
diff changeset
   507
#else  // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
      fatal("Parallel gc not supported here.");
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13963
diff changeset
   509
#endif // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    } else {
9336
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   511
      // We do not call the non_clean_card_iterate_serial() version below because
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   512
      // we want to clear the cards (which non_clean_card_iterate_serial() does not
9624
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   513
      // do for us): clear_cl here does the work of finding contiguous dirty ranges
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   514
      // of cards to process and clear.
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   515
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   516
      DirtyCardToOopClosure* dcto_cl = sp->new_dcto_cl(cl, precision(),
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   517
                                                       cl->gen_boundary());
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   518
      ClearNoncleanCardWrapper clear_cl(dcto_cl, ct);
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   519
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   520
      clear_cl.do_MemRegion(mr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
9336
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   525
// The iterator itself is not MT-aware, but
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   526
// MT-aware callers and closures can use this to
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   527
// accomplish dirty card iteration in parallel. The
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   528
// iterator itself does not clear the dirty cards, or
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   529
// change their values in any manner.
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   530
void CardTableModRefBS::non_clean_card_iterate_serial(MemRegion mr,
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   531
                                                      MemRegionClosure* cl) {
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   532
  bool is_par = (SharedHeap::heap()->n_par_threads() > 0);
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   533
  assert(!is_par ||
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   534
          (SharedHeap::heap()->n_par_threads() ==
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   535
          SharedHeap::heap()->workers()->active_workers()), "Mismatch");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  for (int i = 0; i < _cur_covered_regions; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    MemRegion mri = mr.intersection(_covered[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    if (mri.word_size() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
      jbyte* cur_entry = byte_for(mri.last());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
      jbyte* limit = byte_for(mri.start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
      while (cur_entry >= limit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
        jbyte* next_entry = cur_entry - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
        if (*cur_entry != clean_card) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
          size_t non_clean_cards = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
          // Should the next card be included in this range of dirty cards.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
          while (next_entry >= limit && *next_entry != clean_card) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
            non_clean_cards++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
            cur_entry = next_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
            next_entry--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
          // The memory region may not be on a card boundary.  So that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
          // objects beyond the end of the region are not processed, make
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
          // cur_cards precise with regard to the end of the memory region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
          MemRegion cur_cards(addr_for(cur_entry),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
                              non_clean_cards * card_size_in_words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
          MemRegion dirty_region = cur_cards.intersection(mri);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
          cl->do_MemRegion(dirty_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
        cur_entry = next_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
void CardTableModRefBS::dirty_MemRegion(MemRegion mr) {
4461
c17c526d36ef 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 3695
diff changeset
   566
  assert((HeapWord*)align_size_down((uintptr_t)mr.start(), HeapWordSize) == mr.start(), "Unaligned start");
c17c526d36ef 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 3695
diff changeset
   567
  assert((HeapWord*)align_size_up  ((uintptr_t)mr.end(),   HeapWordSize) == mr.end(),   "Unaligned end"  );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  jbyte* cur  = byte_for(mr.start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  jbyte* last = byte_after(mr.last());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  while (cur < last) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
    *cur = dirty_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    cur++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   576
void CardTableModRefBS::invalidate(MemRegion mr, bool whole_heap) {
4461
c17c526d36ef 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 3695
diff changeset
   577
  assert((HeapWord*)align_size_down((uintptr_t)mr.start(), HeapWordSize) == mr.start(), "Unaligned start");
c17c526d36ef 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 3695
diff changeset
   578
  assert((HeapWord*)align_size_up  ((uintptr_t)mr.end(),   HeapWordSize) == mr.end(),   "Unaligned end"  );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  for (int i = 0; i < _cur_covered_regions; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
    MemRegion mri = mr.intersection(_covered[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    if (!mri.is_empty()) dirty_MemRegion(mri);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
void CardTableModRefBS::clear_MemRegion(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  // Be conservative: only clean cards entirely contained within the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  // region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  jbyte* cur;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  if (mr.start() == _whole_heap.start()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
    cur = byte_for(mr.start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
    assert(mr.start() > _whole_heap.start(), "mr is not covered.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
    cur = byte_after(mr.start() - 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  jbyte* last = byte_after(mr.last());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  memset(cur, clean_card, pointer_delta(last, cur, sizeof(jbyte)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
void CardTableModRefBS::clear(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  for (int i = 0; i < _cur_covered_regions; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
    MemRegion mri = mr.intersection(_covered[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
    if (!mri.is_empty()) clear_MemRegion(mri);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   606
void CardTableModRefBS::dirty(MemRegion mr) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   607
  jbyte* first = byte_for(mr.start());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   608
  jbyte* last  = byte_after(mr.last());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   609
  memset(first, dirty_card, last-first);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   610
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   611
9183
3d0e0687fe28 7036482: clear argument is redundant and unused in cardtable methods
ysr
parents: 7397
diff changeset
   612
// Unlike several other card table methods, dirty_card_iterate()
3d0e0687fe28 7036482: clear argument is redundant and unused in cardtable methods
ysr
parents: 7397
diff changeset
   613
// iterates over dirty cards ranges in increasing address order.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
void CardTableModRefBS::dirty_card_iterate(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
                                           MemRegionClosure* cl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  for (int i = 0; i < _cur_covered_regions; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
    MemRegion mri = mr.intersection(_covered[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
    if (!mri.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
      jbyte *cur_entry, *next_entry, *limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
      for (cur_entry = byte_for(mri.start()), limit = byte_for(mri.last());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
           cur_entry <= limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
           cur_entry  = next_entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
        next_entry = cur_entry + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
        if (*cur_entry == dirty_card) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
          size_t dirty_cards;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
          // Accumulate maximal dirty card range, starting at cur_entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
          for (dirty_cards = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
               next_entry <= limit && *next_entry == dirty_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
               dirty_cards++, next_entry++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
          MemRegion cur_cards(addr_for(cur_entry),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
                              dirty_cards*card_size_in_words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
          cl->do_MemRegion(cur_cards);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   639
MemRegion CardTableModRefBS::dirty_card_range_after_reset(MemRegion mr,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   640
                                                          bool reset,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   641
                                                          int reset_val) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  for (int i = 0; i < _cur_covered_regions; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
    MemRegion mri = mr.intersection(_covered[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
    if (!mri.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
      jbyte* cur_entry, *next_entry, *limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
      for (cur_entry = byte_for(mri.start()), limit = byte_for(mri.last());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
           cur_entry <= limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
           cur_entry  = next_entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
        next_entry = cur_entry + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
        if (*cur_entry == dirty_card) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
          size_t dirty_cards;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
          // Accumulate maximal dirty card range, starting at cur_entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
          for (dirty_cards = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
               next_entry <= limit && *next_entry == dirty_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
               dirty_cards++, next_entry++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
          MemRegion cur_cards(addr_for(cur_entry),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
                              dirty_cards*card_size_in_words);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   658
          if (reset) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   659
            for (size_t i = 0; i < dirty_cards; i++) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   660
              cur_entry[i] = reset_val;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   661
            }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
          return cur_cards;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  return MemRegion(mr.end(), mr.end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
uintx CardTableModRefBS::ct_max_alignment_constraint() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  return card_size * os::vm_page_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
void CardTableModRefBS::verify_guard() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  // For product build verification
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  guarantee(_byte_map[_guard_index] == last_card,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
            "card table guard has been modified");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
void CardTableModRefBS::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  verify_guard();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
#ifndef PRODUCT
9418
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   686
void CardTableModRefBS::verify_region(MemRegion mr,
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   687
                                      jbyte val, bool val_equals) {
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   688
  jbyte* start    = byte_for(mr.start());
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   689
  jbyte* end      = byte_for(mr.last());
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   690
  bool   failures = false;
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   691
  for (jbyte* curr = start; curr <= end; ++curr) {
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   692
    jbyte curr_val = *curr;
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   693
    bool failed = (val_equals) ? (curr_val != val) : (curr_val == val);
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   694
    if (failed) {
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   695
      if (!failures) {
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   696
        tty->cr();
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   697
        tty->print_cr("== CT verification failed: ["PTR_FORMAT","PTR_FORMAT"]");
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   698
        tty->print_cr("==   %sexpecting value: %d",
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   699
                      (val_equals) ? "" : "not ", val);
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   700
        failures = true;
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   701
      }
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   702
      tty->print_cr("==   card "PTR_FORMAT" ["PTR_FORMAT","PTR_FORMAT"], "
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   703
                    "val: %d", curr, addr_for(curr),
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   704
                    (HeapWord*) (((size_t) addr_for(curr)) + card_size),
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   705
                    (int) curr_val);
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   706
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  }
9418
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   708
  guarantee(!failures, "there should not have been any failures");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
}
3695
421cfcc8843c 6841313: G1: dirty cards of survivor regions in parallel
apetrusenko
parents: 3587
diff changeset
   710
9418
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   711
void CardTableModRefBS::verify_not_dirty_region(MemRegion mr) {
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   712
  verify_region(mr, dirty_card, false /* val_equals */);
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   713
}
3695
421cfcc8843c 6841313: G1: dirty cards of survivor regions in parallel
apetrusenko
parents: 3587
diff changeset
   714
421cfcc8843c 6841313: G1: dirty cards of survivor regions in parallel
apetrusenko
parents: 3587
diff changeset
   715
void CardTableModRefBS::verify_dirty_region(MemRegion mr) {
9418
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   716
  verify_region(mr, dirty_card, true /* val_equals */);
3695
421cfcc8843c 6841313: G1: dirty cards of survivor regions in parallel
apetrusenko
parents: 3587
diff changeset
   717
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
12268
f7897aacb9ce 7157141: crash in 64 bit with corrupted oops
never
parents: 11177
diff changeset
   720
void CardTableModRefBS::print_on(outputStream* st) const {
f7897aacb9ce 7157141: crash in 64 bit with corrupted oops
never
parents: 11177
diff changeset
   721
  st->print_cr("Card table byte_map: [" INTPTR_FORMAT "," INTPTR_FORMAT "] byte_map_base: " INTPTR_FORMAT,
f7897aacb9ce 7157141: crash in 64 bit with corrupted oops
never
parents: 11177
diff changeset
   722
               _byte_map, _byte_map + _byte_map_size, byte_map_base);
f7897aacb9ce 7157141: crash in 64 bit with corrupted oops
never
parents: 11177
diff changeset
   723
}
f7897aacb9ce 7157141: crash in 64 bit with corrupted oops
never
parents: 11177
diff changeset
   724
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
bool CardTableModRefBSForCTRS::card_will_be_scanned(jbyte cv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
    CardTableModRefBS::card_will_be_scanned(cv) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
    _rs->is_prev_nonclean_card_val(cv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
bool CardTableModRefBSForCTRS::card_may_have_been_dirty(jbyte cv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
    cv != clean_card &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
    (CardTableModRefBS::card_may_have_been_dirty(cv) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
     CardTableRS::youngergen_may_have_been_dirty(cv));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
};