hotspot/src/share/vm/memory/cardTableModRefBS.cpp
author brutisso
Tue, 31 Mar 2015 11:29:21 +0200
changeset 29805 398335f2abed
parent 29325 0e86e64c66e5
child 30147 af9a41999c6e
permissions -rw-r--r--
8076241: Remove unused methods mod_card_iterate() and non_clean_card_iterate_serial() Reviewed-by: kbarrett, pliden, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
28830
a252e278c3d9 8064947: Clean up BarrierSet ctor/dtor
jprovino
parents: 28029
diff changeset
     2
 * Copyright (c) 2000, 2015, 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"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28830
diff changeset
    27
#include "memory/cardTableModRefBS.inline.hpp"
7397
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::compute_byte_map_size()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  assert(_guard_index == cards_required(_whole_heap.word_size()) - 1,
22775
52bc5222f5f1 8026849: Fix typos in the GC code, part 2
jwilhelm
parents: 22551
diff changeset
    50
                                        "uninitialized, check declaration order");
52bc5222f5f1 8026849: Fix typos in the GC code, part 2
jwilhelm
parents: 22551
diff changeset
    51
  assert(_page_size != 0, "uninitialized, check declaration order");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  const size_t granularity = os::vm_allocation_granularity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  return align_size_up(_guard_index + 1, MAX2(_page_size, granularity));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
29325
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
    56
CardTableModRefBS::CardTableModRefBS(
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
    57
  MemRegion whole_heap,
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
    58
  const BarrierSet::FakeRtti& fake_rtti) :
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
    59
  ModRefBarrierSet(fake_rtti.add_tag(BarrierSet::CardTableModRef)),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  _whole_heap(whole_heap),
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    61
  _guard_index(0),
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    62
  _guard_region(),
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    63
  _last_valid_index(0),
194
8cdd3d9a4c99 6635560: segv in reference processor on t1000
jcoomes
parents: 1
diff changeset
    64
  _page_size(os::vm_page_size()),
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    65
  _byte_map_size(0),
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    66
  _covered(NULL),
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    67
  _committed(NULL),
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    68
  _cur_covered_regions(0),
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    69
  _byte_map(NULL),
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    70
  byte_map_base(NULL),
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    71
  // LNC functionality
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    72
  _lowest_non_clean(NULL),
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    73
  _lowest_non_clean_chunk_size(NULL),
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    74
  _lowest_non_clean_base_chunk_index(NULL),
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    75
  _last_LNC_resizing_collection(NULL)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
{
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    77
  assert((uintptr_t(_whole_heap.start())  & (card_size - 1))  == 0, "heap must start at card boundary");
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    78
  assert((uintptr_t(_whole_heap.end()) & (card_size - 1))  == 0, "heap must end at card boundary");
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    79
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    80
  assert(card_size <= 512, "card_size must be less than 512"); // why?
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    81
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    82
  _covered   = new MemRegion[_max_covered_regions];
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    83
  if (_covered == NULL) {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    84
    vm_exit_during_initialization("Could not allocate card table covered region set.");
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    85
  }
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    86
}
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    87
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    88
void CardTableModRefBS::initialize() {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    89
  _guard_index = cards_required(_whole_heap.word_size()) - 1;
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    90
  _last_valid_index = _guard_index - 1;
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    91
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    92
  _byte_map_size = compute_byte_map_size();
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    93
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  HeapWord* low_bound  = _whole_heap.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  HeapWord* high_bound = _whole_heap.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    97
  _cur_covered_regions = 0;
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    98
  _committed = new MemRegion[_max_covered_regions];
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    99
  if (_committed == NULL) {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
   100
    vm_exit_during_initialization("Could not allocate card table committed region set.");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  }
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   102
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  const size_t rs_align = _page_size == (size_t) os::vm_page_size() ? 0 :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    MAX2(_page_size, (size_t) os::vm_allocation_granularity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  ReservedSpace heap_rs(_byte_map_size, rs_align, false);
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12268
diff changeset
   106
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12268
diff changeset
   107
  MemTracker::record_virtual_memory_type((address)heap_rs.base(), mtGC);
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12268
diff changeset
   108
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  os::trace_page_sizes("card table", _guard_index + 1, _guard_index + 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
                       _page_size, heap_rs.base(), heap_rs.size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  if (!heap_rs.is_reserved()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    vm_exit_during_initialization("Could not reserve enough space for the "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
                                  "card marking array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 20309
diff changeset
   116
  // The assembler store_check code will do an unsigned shift of the oop,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // then add it to byte_map_base, i.e.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  //   _byte_map = byte_map_base + (uintptr_t(low_bound) >> card_shift)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  _byte_map = (jbyte*) heap_rs.base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  byte_map_base = _byte_map - (uintptr_t(low_bound) >> card_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  assert(byte_for(low_bound) == &_byte_map[0], "Checking start of map");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  assert(byte_for(high_bound-1) <= &_byte_map[_last_valid_index], "Checking end of map");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  jbyte* guard_card = &_byte_map[_guard_index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  uintptr_t guard_page = align_size_down((uintptr_t)guard_card, _page_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  _guard_region = MemRegion((HeapWord*)guard_page, _page_size);
18069
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17376
diff changeset
   128
  os::commit_memory_or_exit((char*)guard_page, _page_size, _page_size,
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17376
diff changeset
   129
                            !ExecMem, "card table last card");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  *guard_card = last_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
   132
  _lowest_non_clean =
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
   133
    NEW_C_HEAP_ARRAY(CardArr, _max_covered_regions, mtGC);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  _lowest_non_clean_chunk_size =
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
   135
    NEW_C_HEAP_ARRAY(size_t, _max_covered_regions, mtGC);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  _lowest_non_clean_base_chunk_index =
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
   137
    NEW_C_HEAP_ARRAY(uintptr_t, _max_covered_regions, mtGC);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  _last_LNC_resizing_collection =
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
   139
    NEW_C_HEAP_ARRAY(int, _max_covered_regions, mtGC);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  if (_lowest_non_clean == NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
      || _lowest_non_clean_chunk_size == NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      || _lowest_non_clean_base_chunk_index == NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
      || _last_LNC_resizing_collection == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    vm_exit_during_initialization("couldn't allocate an LNC array.");
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
   145
  for (int i = 0; i < _max_covered_regions; i++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    _lowest_non_clean[i] = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    _lowest_non_clean_chunk_size[i] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    _last_LNC_resizing_collection[i] = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  if (TraceCardTableModRefBS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    gclog_or_tty->print_cr("CardTableModRefBS::CardTableModRefBS: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    gclog_or_tty->print_cr("  "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
                  "  &_byte_map[0]: " INTPTR_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
                  "  &_byte_map[_last_valid_index]: " INTPTR_FORMAT,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22876
diff changeset
   156
                  p2i(&_byte_map[0]),
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22876
diff changeset
   157
                  p2i(&_byte_map[_last_valid_index]));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    gclog_or_tty->print_cr("  "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
                  "  byte_map_base: " INTPTR_FORMAT,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22876
diff changeset
   160
                  p2i(byte_map_base));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   164
CardTableModRefBS::~CardTableModRefBS() {
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   165
  if (_covered) {
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   166
    delete[] _covered;
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   167
    _covered = NULL;
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   168
  }
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   169
  if (_committed) {
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   170
    delete[] _committed;
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   171
    _committed = NULL;
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   172
  }
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   173
  if (_lowest_non_clean) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 26160
diff changeset
   174
    FREE_C_HEAP_ARRAY(CardArr, _lowest_non_clean);
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   175
    _lowest_non_clean = NULL;
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   176
  }
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   177
  if (_lowest_non_clean_chunk_size) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 26160
diff changeset
   178
    FREE_C_HEAP_ARRAY(size_t, _lowest_non_clean_chunk_size);
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   179
    _lowest_non_clean_chunk_size = NULL;
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   180
  }
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   181
  if (_lowest_non_clean_base_chunk_index) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 26160
diff changeset
   182
    FREE_C_HEAP_ARRAY(uintptr_t, _lowest_non_clean_base_chunk_index);
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   183
    _lowest_non_clean_base_chunk_index = NULL;
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   184
  }
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   185
  if (_last_LNC_resizing_collection) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 26160
diff changeset
   186
    FREE_C_HEAP_ARRAY(int, _last_LNC_resizing_collection);
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   187
    _last_LNC_resizing_collection = NULL;
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   188
  }
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   189
}
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17087
diff changeset
   190
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
int CardTableModRefBS::find_covering_region_by_base(HeapWord* base) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  for (i = 0; i < _cur_covered_regions; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    if (_covered[i].start() == base) return i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    if (_covered[i].start() > base) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // If we didn't find it, create a new one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  assert(_cur_covered_regions < _max_covered_regions,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
         "too many covered regions");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  // Move the ones above up, to maintain sorted order.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  for (int j = _cur_covered_regions; j > i; j--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    _covered[j] = _covered[j-1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    _committed[j] = _committed[j-1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  int res = i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  _cur_covered_regions++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  _covered[res].set_start(base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  _covered[res].set_word_size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  jbyte* ct_start = byte_for(base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  uintptr_t ct_start_aligned = align_size_down((uintptr_t)ct_start, _page_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  _committed[res].set_start((HeapWord*)ct_start_aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  _committed[res].set_word_size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
int CardTableModRefBS::find_covering_region_containing(HeapWord* addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  for (int i = 0; i < _cur_covered_regions; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    if (_covered[i].contains(addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
      return i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  assert(0, "address outside of heap?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
HeapWord* CardTableModRefBS::largest_prev_committed_end(int ind) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  HeapWord* max_end = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  for (int j = 0; j < ind; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    HeapWord* this_end = _committed[j].end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    if (this_end > max_end) max_end = this_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  return max_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
MemRegion CardTableModRefBS::committed_unique_to_self(int self,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
                                                      MemRegion mr) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  MemRegion result = mr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  for (int r = 0; r < _cur_covered_regions; r += 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    if (r != self) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
      result = result.minus(_committed[r]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  // Never include the guard page.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  result = result.minus(_guard_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
void CardTableModRefBS::resize_covered_region(MemRegion new_region) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  // We don't change the start of a region, only the end.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  assert(_whole_heap.contains(new_region),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
           "attempt to cover area not in reserved area");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  debug_only(verify_guard();)
754
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   253
  // 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
   254
  debug_only(bool collided = false;)
179
59e3abf83f72 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 1
diff changeset
   255
  int const ind = find_covering_region_by_base(new_region.start());
59e3abf83f72 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 1
diff changeset
   256
  MemRegion const old_region = _covered[ind];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  assert(old_region.start() == new_region.start(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  if (new_region.word_size() != old_region.word_size()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
    // Commit new or uncommit old pages, if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    MemRegion cur_committed = _committed[ind];
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 20309
diff changeset
   261
    // Extend the end of this _committed region
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    // to cover the end of any lower _committed regions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    // This forms overlapping regions, but never interior regions.
179
59e3abf83f72 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 1
diff changeset
   264
    HeapWord* const max_prev_end = largest_prev_committed_end(ind);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    if (max_prev_end > cur_committed.end()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
      cur_committed.set_end(max_prev_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
    // 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
   269
    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
   270
    HeapWord* new_end_aligned =
179
59e3abf83f72 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 1
diff changeset
   271
      (HeapWord*) align_size_up((uintptr_t)new_end, _page_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    assert(new_end_aligned >= (HeapWord*) new_end,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
           "align up, but less");
2107
338528868274 6786346: intermittent Internal Error (src/share/vm/memory/cardTableModRefBS.cpp:226)
jmasa
parents: 1676
diff changeset
   274
    // 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
   275
    // 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
   276
    // space of another region.
754
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   277
    int ri = 0;
28026
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   278
    for (ri = ind + 1; ri < _cur_covered_regions; ri++) {
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   279
      if (new_end_aligned > _committed[ri].start()) {
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   280
        assert(new_end_aligned <= _committed[ri].end(),
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   281
               "An earlier committed region can't cover a later committed region");
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   282
        // Any region containing the new end
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   283
        // should start at or beyond the region found (ind)
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   284
        // for the new end (committed regions are not expected to
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   285
        // be proper subsets of other committed regions).
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   286
        assert(_committed[ri].start() >= _committed[ind].start(),
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   287
               "New end of committed region is inconsistent");
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   288
        new_end_aligned = _committed[ri].start();
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   289
        // new_end_aligned can be equal to the start of its
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   290
        // committed region (i.e., of "ind") if a second
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   291
        // region following "ind" also start at the same location
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   292
        // as "ind".
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   293
        assert(new_end_aligned >= _committed[ind].start(),
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   294
          "New end of committed region is before start");
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   295
        debug_only(collided = true;)
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   296
        // Should only collide with 1 region
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents: 27904
diff changeset
   297
        break;
754
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   298
      }
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   299
    }
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   300
#ifdef ASSERT
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   301
    for (++ri; ri < _cur_covered_regions; ri++) {
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   302
      assert(!_committed[ri].contains(new_end_aligned),
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   303
        "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
   304
    }
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   305
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    // 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
   307
    // "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
   308
    // 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
   309
    // penetrated the guard page.
0140e816d000 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 2154
diff changeset
   310
    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
   311
0140e816d000 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 2154
diff changeset
   312
    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
   313
    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
   314
      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
   315
      DEBUG_ONLY(guarded = true;)
0140e816d000 6843292: "Expect to be beyond new region unless impacting another region" assertion too strong
jmasa
parents: 2154
diff changeset
   316
    }
754
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   317
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    if (new_end_for_commit > cur_committed.end()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
      // Must commit new pages.
179
59e3abf83f72 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 1
diff changeset
   320
      MemRegion const new_committed =
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
        MemRegion(cur_committed.end(), new_end_for_commit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
      assert(!new_committed.is_empty(), "Region should not be empty here");
18069
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17376
diff changeset
   324
      os::commit_memory_or_exit((char*)new_committed.start(),
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17376
diff changeset
   325
                                new_committed.byte_size(), _page_size,
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17376
diff changeset
   326
                                !ExecMem, "card table expansion");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    // Use new_end_aligned (as opposed to new_end_for_commit) because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    // the cur_committed region may include the guard region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
    } else if (new_end_aligned < cur_committed.end()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
      // Must uncommit pages.
179
59e3abf83f72 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 1
diff changeset
   331
      MemRegion const uncommit_region =
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
        committed_unique_to_self(ind, MemRegion(new_end_aligned,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
                                                cur_committed.end()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
      if (!uncommit_region.is_empty()) {
5892
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   335
        // 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
   336
        // the generations is moving.  A shrink can uncommit cards
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   337
        // 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
   338
        if (!UseAdaptiveGCBoundary) {
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   339
          if (!os::uncommit_memory((char*)uncommit_region.start(),
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   340
                                   uncommit_region.byte_size())) {
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   341
            assert(false, "Card table contraction failed");
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   342
            // 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
   343
            // committed region.  This is better than taking the
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   344
            // VM down.
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   345
            new_end_aligned = _committed[ind].end();
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   346
          }
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   347
        } else {
754
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   348
          new_end_aligned = _committed[ind].end();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
    // In any case, we can reset the end of the current committed entry.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
    _committed[ind].set_end(new_end_aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
5892
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   355
#ifdef ASSERT
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   356
    // 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
   357
    // to the tables.
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   358
    bool covered = false;
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   359
    for (int cr = 0; cr < _cur_covered_regions; cr++) {
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   360
      if (_committed[cr].contains(new_end - 1)) {
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   361
        covered = true;
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   362
        break;
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   363
      }
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   364
    }
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   365
    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
   366
#endif
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   367
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    // The default of 0 is not necessarily clean cards.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
    jbyte* entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
    if (old_region.last() < _whole_heap.start()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
      entry = byte_for(_whole_heap.start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
      entry = byte_after(old_region.last());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
    }
1676
d80e69372634 6653214: MemoryPoolMXBean.setUsageThreshold() does not support large heap sizes.
swamyv
parents: 1388
diff changeset
   375
    assert(index_for(new_region.last()) <  _guard_index,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
      "The guard card will be overwritten");
754
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   377
    // 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
   378
    // not the aligned up expanded region.
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   379
    // jbyte* const end = byte_after(new_region.last());
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   380
    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
   381
    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
   382
      "Expect to be beyond new region unless impacting another region");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
    // do nothing if we resized downward.
754
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   384
#ifdef ASSERT
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   385
    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
   386
      if (ri != ind) {
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   387
        // 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
   388
        // be in any existing region unless it matches
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   389
        // the start of the next region.
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   390
        assert(!_committed[ri].contains(end) ||
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   391
               (_committed[ri].start() == (HeapWord*) end),
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   392
               "Overlapping committed regions");
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   393
      }
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   394
    }
fb9904179b42 6688799: Second fix for Guarantee failure "Unexpected dirty card found"
jmasa
parents: 360
diff changeset
   395
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    if (entry < end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
      memset(entry, clean_card, pointer_delta(end, entry, sizeof(jbyte)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  // In any case, the covered size changes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  _covered[ind].set_word_size(new_region.word_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  if (TraceCardTableModRefBS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    gclog_or_tty->print_cr("CardTableModRefBS::resize_covered_region: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
    gclog_or_tty->print_cr("  "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
                  "  _covered[%d].start(): " INTPTR_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
                  "  _covered[%d].last(): " INTPTR_FORMAT,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22876
diff changeset
   407
                  ind, p2i(_covered[ind].start()),
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22876
diff changeset
   408
                  ind, p2i(_covered[ind].last()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    gclog_or_tty->print_cr("  "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
                  "  _committed[%d].start(): " INTPTR_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
                  "  _committed[%d].last(): " INTPTR_FORMAT,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22876
diff changeset
   412
                  ind, p2i(_committed[ind].start()),
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22876
diff changeset
   413
                  ind, p2i(_committed[ind].last()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    gclog_or_tty->print_cr("  "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
                  "  byte_for(start): " INTPTR_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
                  "  byte_for(last): " INTPTR_FORMAT,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22876
diff changeset
   417
                  p2i(byte_for(_covered[ind].start())),
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22876
diff changeset
   418
                  p2i(byte_for(_covered[ind].last())));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    gclog_or_tty->print_cr("  "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
                  "  addr_for(start): " INTPTR_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
                  "  addr_for(last): " INTPTR_FORMAT,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22876
diff changeset
   422
                  p2i(addr_for((jbyte*) _committed[ind].start())),
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22876
diff changeset
   423
                  p2i(addr_for((jbyte*) _committed[ind].last())));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  }
5892
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   425
  // 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
   426
  // is committed (or SEGV).
18073
f02460441ddc 8014431: cleanup warnings indicated by the -Wunused-value compiler option on linux
ccheung
parents: 18069
diff changeset
   427
  debug_only((void) (*byte_for(_covered[ind].last()));)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  debug_only(verify_guard();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
// Note that these versions are precise!  The scanning code has to handle the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
// fact that the write barrier may be either precise or imprecise.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
22859
7b88983393b7 8029396: PPC64 (part 212): Several memory ordering fixes in C-code.
goetz
parents: 20309
diff changeset
   434
void CardTableModRefBS::write_ref_field_work(void* field, oop newVal, bool release) {
7b88983393b7 8029396: PPC64 (part 212): Several memory ordering fixes in C-code.
goetz
parents: 20309
diff changeset
   435
  inline_write_ref_field(field, newVal, release);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
2142
032f4652700c 6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents: 2107
diff changeset
   438
9336
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   439
void CardTableModRefBS::non_clean_card_iterate_possibly_parallel(Space* sp,
413920193f83 7037276: Unnecessary double traversal of dirty card windows
ysr
parents: 9183
diff changeset
   440
                                                                 MemRegion mr,
9624
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   441
                                                                 OopsInGenClosure* cl,
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   442
                                                                 CardTableRS* ct) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  if (!mr.is_empty()) {
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   444
    // Caller (process_roots()) claims that all GC threads
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   445
    // execute this call.  With UseDynamicNumberOfGCThreads now all
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   446
    // 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
   447
    // 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
   448
    // to get proper partitioning and termination.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   449
    //
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   450
    // 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
   451
    // 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
   452
    // turn off parallelism.  For example when this code is called as
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   453
    // part of verification and SharedHeap::process_roots() is being
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   454
    // 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
   455
    // 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
   456
    // 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
   457
    // 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
   458
    // 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
   459
    // 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
   460
    // 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
   461
    // place of n_par_threads.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   462
    int n_threads =  SharedHeap::heap()->n_par_threads();
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   463
    bool is_par = n_threads > 0;
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   464
    if (is_par) {
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13963
diff changeset
   465
#if INCLUDE_ALL_GCS
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   466
      assert(SharedHeap::heap()->n_par_threads() ==
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 9624
diff changeset
   467
             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
   468
      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
   469
#else  // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
      fatal("Parallel gc not supported here.");
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13963
diff changeset
   471
#endif // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    } else {
29805
398335f2abed 8076241: Remove unused methods mod_card_iterate() and non_clean_card_iterate_serial()
brutisso
parents: 29325
diff changeset
   473
      // clear_cl finds contiguous dirty ranges of cards to process and clear.
9624
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   474
29805
398335f2abed 8076241: Remove unused methods mod_card_iterate() and non_clean_card_iterate_serial()
brutisso
parents: 29325
diff changeset
   475
      DirtyCardToOopClosure* dcto_cl = sp->new_dcto_cl(cl, precision(), cl->gen_boundary());
9624
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   476
      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
   477
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 9418
diff changeset
   478
      clear_cl.do_MemRegion(mr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
void CardTableModRefBS::dirty_MemRegion(MemRegion mr) {
4461
c17c526d36ef 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 3695
diff changeset
   484
  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
   485
  assert((HeapWord*)align_size_up  ((uintptr_t)mr.end(),   HeapWordSize) == mr.end(),   "Unaligned end"  );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  jbyte* cur  = byte_for(mr.start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  jbyte* last = byte_after(mr.last());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  while (cur < last) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
    *cur = dirty_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
    cur++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   494
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
   495
  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
   496
  assert((HeapWord*)align_size_up  ((uintptr_t)mr.end(),   HeapWordSize) == mr.end(),   "Unaligned end"  );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  for (int i = 0; i < _cur_covered_regions; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
    MemRegion mri = mr.intersection(_covered[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    if (!mri.is_empty()) dirty_MemRegion(mri);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
void CardTableModRefBS::clear_MemRegion(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  // Be conservative: only clean cards entirely contained within the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  // region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  jbyte* cur;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  if (mr.start() == _whole_heap.start()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
    cur = byte_for(mr.start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    assert(mr.start() > _whole_heap.start(), "mr is not covered.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
    cur = byte_after(mr.start() - 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  jbyte* last = byte_after(mr.last());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  memset(cur, clean_card, pointer_delta(last, cur, sizeof(jbyte)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
void CardTableModRefBS::clear(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  for (int i = 0; i < _cur_covered_regions; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
    MemRegion mri = mr.intersection(_covered[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
    if (!mri.is_empty()) clear_MemRegion(mri);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   524
void CardTableModRefBS::dirty(MemRegion mr) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   525
  jbyte* first = byte_for(mr.start());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   526
  jbyte* last  = byte_after(mr.last());
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   527
  memset(first, dirty_card, last-first);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   528
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   529
9183
3d0e0687fe28 7036482: clear argument is redundant and unused in cardtable methods
ysr
parents: 7397
diff changeset
   530
// 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
   531
// iterates over dirty cards ranges in increasing address order.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
void CardTableModRefBS::dirty_card_iterate(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
                                           MemRegionClosure* cl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  for (int i = 0; i < _cur_covered_regions; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    MemRegion mri = mr.intersection(_covered[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    if (!mri.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
      jbyte *cur_entry, *next_entry, *limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
      for (cur_entry = byte_for(mri.start()), limit = byte_for(mri.last());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
           cur_entry <= limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
           cur_entry  = next_entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
        next_entry = cur_entry + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
        if (*cur_entry == dirty_card) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
          size_t dirty_cards;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
          // Accumulate maximal dirty card range, starting at cur_entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
          for (dirty_cards = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
               next_entry <= limit && *next_entry == dirty_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
               dirty_cards++, next_entry++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
          MemRegion cur_cards(addr_for(cur_entry),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
                              dirty_cards*card_size_in_words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
          cl->do_MemRegion(cur_cards);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   557
MemRegion CardTableModRefBS::dirty_card_range_after_reset(MemRegion mr,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   558
                                                          bool reset,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   559
                                                          int reset_val) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  for (int i = 0; i < _cur_covered_regions; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
    MemRegion mri = mr.intersection(_covered[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
    if (!mri.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
      jbyte* cur_entry, *next_entry, *limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
      for (cur_entry = byte_for(mri.start()), limit = byte_for(mri.last());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
           cur_entry <= limit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
           cur_entry  = next_entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
        next_entry = cur_entry + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
        if (*cur_entry == dirty_card) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
          size_t dirty_cards;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
          // Accumulate maximal dirty card range, starting at cur_entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
          for (dirty_cards = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
               next_entry <= limit && *next_entry == dirty_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
               dirty_cards++, next_entry++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
          MemRegion cur_cards(addr_for(cur_entry),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
                              dirty_cards*card_size_in_words);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   576
          if (reset) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   577
            for (size_t i = 0; i < dirty_cards; i++) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   578
              cur_entry[i] = reset_val;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   579
            }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
          return cur_cards;
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
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  return MemRegion(mr.end(), mr.end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
uintx CardTableModRefBS::ct_max_alignment_constraint() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  return card_size * os::vm_page_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
void CardTableModRefBS::verify_guard() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  // For product build verification
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  guarantee(_byte_map[_guard_index] == last_card,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
            "card table guard has been modified");
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::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  verify_guard();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
#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
   604
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
   605
                                      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
   606
  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
   607
  jbyte* end      = byte_for(mr.last());
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
   608
  bool failures = false;
9418
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   609
  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
   610
    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
   611
    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
   612
    if (failed) {
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   613
      if (!failures) {
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   614
        tty->cr();
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22876
diff changeset
   615
        tty->print_cr("== CT verification failed: [" INTPTR_FORMAT "," INTPTR_FORMAT "]", p2i(start), p2i(end));
9418
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   616
        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
   617
                      (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
   618
        failures = true;
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   619
      }
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   620
      tty->print_cr("==   card "PTR_FORMAT" ["PTR_FORMAT","PTR_FORMAT"], "
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22876
diff changeset
   621
                    "val: %d", p2i(curr), p2i(addr_for(curr)),
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22876
diff changeset
   622
                    p2i((HeapWord*) (((size_t) addr_for(curr)) + card_size)),
9418
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   623
                    (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
   624
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  }
9418
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   626
  guarantee(!failures, "there should not have been any failures");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
}
3695
421cfcc8843c 6841313: G1: dirty cards of survivor regions in parallel
apetrusenko
parents: 3587
diff changeset
   628
9418
32a87dd6b746 7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents: 9336
diff changeset
   629
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
   630
  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
   631
}
3695
421cfcc8843c 6841313: G1: dirty cards of survivor regions in parallel
apetrusenko
parents: 3587
diff changeset
   632
421cfcc8843c 6841313: G1: dirty cards of survivor regions in parallel
apetrusenko
parents: 3587
diff changeset
   633
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
   634
  verify_region(mr, dirty_card, true /* val_equals */);
3695
421cfcc8843c 6841313: G1: dirty cards of survivor regions in parallel
apetrusenko
parents: 3587
diff changeset
   635
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
12268
f7897aacb9ce 7157141: crash in 64 bit with corrupted oops
never
parents: 11177
diff changeset
   638
void CardTableModRefBS::print_on(outputStream* st) const {
f7897aacb9ce 7157141: crash in 64 bit with corrupted oops
never
parents: 11177
diff changeset
   639
  st->print_cr("Card table byte_map: [" INTPTR_FORMAT "," INTPTR_FORMAT "] byte_map_base: " INTPTR_FORMAT,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22876
diff changeset
   640
               p2i(_byte_map), p2i(_byte_map + _byte_map_size), p2i(byte_map_base));
12268
f7897aacb9ce 7157141: crash in 64 bit with corrupted oops
never
parents: 11177
diff changeset
   641
}
f7897aacb9ce 7157141: crash in 64 bit with corrupted oops
never
parents: 11177
diff changeset
   642
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
bool CardTableModRefBSForCTRS::card_will_be_scanned(jbyte cv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
    CardTableModRefBS::card_will_be_scanned(cv) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
    _rs->is_prev_nonclean_card_val(cv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
bool CardTableModRefBSForCTRS::card_may_have_been_dirty(jbyte cv) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
    cv != clean_card &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    (CardTableModRefBS::card_may_have_been_dirty(cv) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
     CardTableRS::youngergen_may_have_been_dirty(cv));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
};