src/hotspot/share/gc/parallel/psCardTable.cpp
author dholmes
Sat, 07 Sep 2019 18:48:57 -0400
changeset 58041 d8902e9c307c
parent 57773 5cbc3bd9fdfd
child 58679 9c3209ff7550
permissions -rw-r--r--
8230422: Convert uninterruptible os::sleep calls to os::naked_short_sleep Reviewed-by: kbarrett, dcubed, shade
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
57773
5cbc3bd9fdfd 8224665: Parallel GC: Use WorkGang (7: remove task manager)
lkorinth
parents: 57772
diff changeset
     2
 * Copyright (c) 2001, 2019, 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: 2131
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2131
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: 2131
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: 6248
diff changeset
    25
#include "precompiled.hpp"
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35061
diff changeset
    26
#include "gc/parallel/objectStartArray.inline.hpp"
48961
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47216
diff changeset
    27
#include "gc/parallel/parallelScavengeHeap.inline.hpp"
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
    28
#include "gc/parallel/psCardTable.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30173
diff changeset
    29
#include "gc/parallel/psPromotionManager.inline.hpp"
52117
a2edf32cd813 8201436: Replace oop_ps_push_contents with oop_iterate and closure
lkorinth
parents: 50800
diff changeset
    30
#include "gc/parallel/psScavenge.inline.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30173
diff changeset
    31
#include "gc/parallel/psYoungGen.hpp"
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 50728
diff changeset
    32
#include "memory/iterator.inline.hpp"
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49455
diff changeset
    33
#include "oops/access.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6248
diff changeset
    34
#include "oops/oop.inline.hpp"
24487
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents: 24424
diff changeset
    35
#include "runtime/prefetch.inline.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46619
diff changeset
    36
#include "utilities/align.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// Checks an individual oop for missing precise marks. Mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// may be either dirty or newgen.
50800
6da12aa23b88 8205607: Use oop_iterate instead of oop_iterate_no_header
stefank
parents: 50752
diff changeset
    40
class CheckForUnmarkedOops : public BasicOopIterateClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    41
 private:
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
    42
  PSYoungGen*  _young_gen;
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
    43
  PSCardTable* _card_table;
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
    44
  HeapWord*    _unmarked_addr;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    46
 protected:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    47
  template <class T> void do_oop_work(T* p) {
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49455
diff changeset
    48
    oop obj = RawAccess<>::oop_load(p);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    49
    if (_young_gen->is_in_reserved(obj) &&
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
        !_card_table->addr_is_marked_imprecise(p)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
      // Don't overwrite the first missing card mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
      if (_unmarked_addr == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
        _unmarked_addr = (HeapWord*)p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    58
 public:
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
    59
  CheckForUnmarkedOops(PSYoungGen* young_gen, PSCardTable* card_table) :
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    60
    _young_gen(young_gen), _card_table(card_table), _unmarked_addr(NULL) { }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    61
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    62
  virtual void do_oop(oop* p)       { CheckForUnmarkedOops::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    63
  virtual void do_oop(narrowOop* p) { CheckForUnmarkedOops::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  bool has_unmarked_oop() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    return _unmarked_addr != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 18069
diff changeset
    70
// Checks all objects for the existence of some type of mark,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
// precise or imprecise, dirty or newgen.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
class CheckForUnmarkedObjects : public ObjectClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    73
 private:
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
    74
  PSYoungGen*  _young_gen;
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
    75
  PSCardTable* _card_table;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  CheckForUnmarkedObjects() {
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 29792
diff changeset
    79
    ParallelScavengeHeap* heap = ParallelScavengeHeap::heap();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    _young_gen = heap->young_gen();
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
    81
    _card_table = heap->card_table();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // Card marks are not precise. The current system can leave us with
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 18069
diff changeset
    85
  // a mismatch of precise marks and beginning of object marks. This means
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // we test for missing precise marks first. If any are found, we don't
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // fail unless the object head is also unmarked.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  virtual void do_object(oop obj) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    89
    CheckForUnmarkedOops object_check(_young_gen, _card_table);
50800
6da12aa23b88 8205607: Use oop_iterate instead of oop_iterate_no_header
stefank
parents: 50752
diff changeset
    90
    obj->oop_iterate(&object_check);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    if (object_check.has_unmarked_oop()) {
32618
bbbe25551000 8130823: VerifyRememberedSets is an expensive nop in product builds
jwilhelm
parents: 31964
diff changeset
    92
      guarantee(_card_table->addr_is_marked_imprecise(obj), "Found unmarked young_gen object");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
// Checks for precise marking of oops as newgen.
50800
6da12aa23b88 8205607: Use oop_iterate instead of oop_iterate_no_header
stefank
parents: 50752
diff changeset
    98
class CheckForPreciseMarks : public BasicOopIterateClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    99
 private:
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   100
  PSYoungGen*  _young_gen;
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   101
  PSCardTable* _card_table;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   103
 protected:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   104
  template <class T> void do_oop_work(T* p) {
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 49679
diff changeset
   105
    oop obj = RawAccess<IS_NOT_NULL>::oop_load(p);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   106
    if (_young_gen->is_in_reserved(obj)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   107
      assert(_card_table->addr_is_marked_precise(p), "Found unmarked precise oop");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   108
      _card_table->set_card_newgen(p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   109
    }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   110
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   111
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
 public:
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   113
  CheckForPreciseMarks(PSYoungGen* young_gen, PSCardTable* card_table) :
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    _young_gen(young_gen), _card_table(card_table) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   116
  virtual void do_oop(oop* p)       { CheckForPreciseMarks::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   117
  virtual void do_oop(narrowOop* p) { CheckForPreciseMarks::do_oop_work(p); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
// We get passed the space_top value to prevent us from traversing into
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
// the old_gen promotion labs, which cannot be safely parsed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
13924
159131321ed4 7199349: NPG: PS: Crash seen in jprt
jmasa
parents: 13728
diff changeset
   123
// Do not call this method if the space is empty.
159131321ed4 7199349: NPG: PS: Crash seen in jprt
jmasa
parents: 13728
diff changeset
   124
// It is a waste to start tasks and get here only to
159131321ed4 7199349: NPG: PS: Crash seen in jprt
jmasa
parents: 13728
diff changeset
   125
// do no work.  If this method needs to be called
159131321ed4 7199349: NPG: PS: Crash seen in jprt
jmasa
parents: 13728
diff changeset
   126
// when the space is empty, fix the calculation of
159131321ed4 7199349: NPG: PS: Crash seen in jprt
jmasa
parents: 13728
diff changeset
   127
// end_card to allow sp_top == sp->bottom().
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
57771
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   129
// The generation (old gen) is divided into slices, which are further
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   130
// subdivided into stripes, with one stripe per GC thread. The size of
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   131
// a stripe is a constant, ssize.
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   132
//
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   133
//      +===============+        slice 0
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   134
//      |  stripe 0     |
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   135
//      +---------------+
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   136
//      |  stripe 1     |
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   137
//      +---------------+
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   138
//      |  stripe 2     |
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   139
//      +---------------+
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   140
//      |  stripe 3     |
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   141
//      +===============+        slice 1
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   142
//      |  stripe 0     |
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   143
//      +---------------+
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   144
//      |  stripe 1     |
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   145
//      +---------------+
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   146
//      |  stripe 2     |
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   147
//      +---------------+
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   148
//      |  stripe 3     |
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   149
//      +===============+        slice 2
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   150
//      ...
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   151
//
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   152
// In this case there are 4 threads, so 4 stripes.  A GC thread first works on
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   153
// its stripe within slice 0 and then moves to its stripe in the next slice
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   154
// until it has exceeded the top of the generation.  The distance to stripe in
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   155
// the next slice is calculated based on the number of stripes.  The next
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   156
// stripe is at ssize * number_of_stripes (= slice_stride)..  So after
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   157
// finishing stripe 0 in slice 0, the thread finds the stripe 0 in slice1 by
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   158
// adding slice_stride to the start of stripe 0 in slice 0 to get to the start
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   159
// of stride 0 in slice 1.
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 54110
diff changeset
   160
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   161
void PSCardTable::scavenge_contents_parallel(ObjectStartArray* start_array,
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   162
                                             MutableSpace* sp,
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   163
                                             HeapWord* space_top,
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   164
                                             PSPromotionManager* pm,
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   165
                                             uint stripe_number,
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   166
                                             uint stripe_total) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  int ssize = 128; // Naked constant!  Work unit = 64k.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  int dirty_card_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
13924
159131321ed4 7199349: NPG: PS: Crash seen in jprt
jmasa
parents: 13728
diff changeset
   170
  // It is a waste to get here if empty.
159131321ed4 7199349: NPG: PS: Crash seen in jprt
jmasa
parents: 13728
diff changeset
   171
  assert(sp->bottom() < sp->top(), "Should not be called if empty");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  oop* sp_top = (oop*)space_top;
54110
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   173
  CardValue* start_card = byte_for(sp->bottom());
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   174
  CardValue* end_card   = byte_for(sp_top - 1) + 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  oop* last_scanned = NULL; // Prevent scanning objects more than once
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   176
  // The width of the stripe ssize*stripe_total must be
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   177
  // consistent with the number of stripes so that the complete slice
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   178
  // is covered.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   179
  size_t slice_width = ssize * stripe_total;
54110
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   180
  for (CardValue* slice = start_card; slice < end_card; slice += slice_width) {
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   181
    CardValue* worker_start_card = slice + stripe_number * ssize;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    if (worker_start_card >= end_card)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
      return; // We're done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
54110
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   185
    CardValue* worker_end_card = worker_start_card + ssize;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    if (worker_end_card > end_card)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
      worker_end_card = end_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    // We do not want to scan objects more than once. In order to accomplish
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    // this, we assert that any object with an object head inside our 'slice'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    // belongs to us. We may need to extend the range of scanned cards if the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    // last object continues into the next 'slice'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    // Note! ending cards are exclusive!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    HeapWord* slice_start = addr_for(worker_start_card);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    HeapWord* slice_end = MIN2((HeapWord*) sp_top, addr_for(worker_end_card));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
13924
159131321ed4 7199349: NPG: PS: Crash seen in jprt
jmasa
parents: 13728
diff changeset
   198
#ifdef ASSERT
159131321ed4 7199349: NPG: PS: Crash seen in jprt
jmasa
parents: 13728
diff changeset
   199
    if (GCWorkerDelayMillis > 0) {
159131321ed4 7199349: NPG: PS: Crash seen in jprt
jmasa
parents: 13728
diff changeset
   200
      // Delay 1 worker so that it proceeds after all the work
159131321ed4 7199349: NPG: PS: Crash seen in jprt
jmasa
parents: 13728
diff changeset
   201
      // has been completed.
159131321ed4 7199349: NPG: PS: Crash seen in jprt
jmasa
parents: 13728
diff changeset
   202
      if (stripe_number < 2) {
58041
d8902e9c307c 8230422: Convert uninterruptible os::sleep calls to os::naked_short_sleep
dholmes
parents: 57773
diff changeset
   203
        os::naked_sleep(GCWorkerDelayMillis);
13924
159131321ed4 7199349: NPG: PS: Crash seen in jprt
jmasa
parents: 13728
diff changeset
   204
      }
159131321ed4 7199349: NPG: PS: Crash seen in jprt
jmasa
parents: 13728
diff changeset
   205
    }
159131321ed4 7199349: NPG: PS: Crash seen in jprt
jmasa
parents: 13728
diff changeset
   206
#endif
159131321ed4 7199349: NPG: PS: Crash seen in jprt
jmasa
parents: 13728
diff changeset
   207
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    // If there are not objects starting within the chunk, skip it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    if (!start_array->object_starts_in_range(slice_start, slice_end)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    }
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 977
diff changeset
   212
    // Update our beginning addr
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    HeapWord* first_object = start_array->object_start(slice_start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    debug_only(oop* first_object_within_slice = (oop*) first_object;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    if (first_object < slice_start) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
      last_scanned = (oop*)(first_object + oop(first_object)->size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
      debug_only(first_object_within_slice = last_scanned;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
      worker_start_card = byte_for(last_scanned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    // Update the ending addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    if (slice_end < (HeapWord*)sp_top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
      // The subtraction is important! An object may start precisely at slice_end.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
      HeapWord* last_object = start_array->object_start(slice_end - 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
      slice_end = last_object + oop(last_object)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
      // worker_end_card is exclusive, so bump it one past the end of last_object's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
      // covered span.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
      worker_end_card = byte_for(slice_end) + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
      if (worker_end_card > end_card)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
        worker_end_card = end_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    assert(slice_end <= (HeapWord*)sp_top, "Last object in slice crosses space boundary");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    assert(is_valid_card_address(worker_start_card), "Invalid worker start card");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    assert(is_valid_card_address(worker_end_card), "Invalid worker end card");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    // Note that worker_start_card >= worker_end_card is legal, and happens when
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    // an object spans an entire slice.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    assert(worker_start_card <= end_card, "worker start card beyond end card");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    assert(worker_end_card <= end_card, "worker end card beyond end card");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
54110
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   242
    CardValue* current_card = worker_start_card;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    while (current_card < worker_end_card) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
      // Find an unclean card.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
      while (current_card < worker_end_card && card_is_clean(*current_card)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
        current_card++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
      }
54110
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   248
      CardValue* first_unclean_card = current_card;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
      // Find the end of a run of contiguous unclean cards
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
      while (current_card < worker_end_card && !card_is_clean(*current_card)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
        while (current_card < worker_end_card && !card_is_clean(*current_card)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
          current_card++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
        if (current_card < worker_end_card) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
          // Some objects may be large enough to span several cards. If such
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
          // an object has more than one dirty card, separated by a clean card,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
          // we will attempt to scan it twice. The test against "last_scanned"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
          // prevents the redundant object scan, but it does not prevent newly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
          // marked cards from being cleaned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
          HeapWord* last_object_in_dirty_region = start_array->object_start(addr_for(current_card)-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
          size_t size_of_last_object = oop(last_object_in_dirty_region)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
          HeapWord* end_of_last_object = last_object_in_dirty_region + size_of_last_object;
54110
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   265
          CardValue* ending_card_of_last_object = byte_for(end_of_last_object);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
          assert(ending_card_of_last_object <= worker_end_card, "ending_card_of_last_object is greater than worker_end_card");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
          if (ending_card_of_last_object > current_card) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
            // This means the object spans the next complete card.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
            // We need to bump the current_card to ending_card_of_last_object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
            current_card = ending_card_of_last_object;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
      }
54110
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   274
      CardValue* following_clean_card = current_card;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
      if (first_unclean_card < worker_end_card) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
        oop* p = (oop*) start_array->object_start(addr_for(first_unclean_card));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
        assert((HeapWord*)p <= addr_for(first_unclean_card), "checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
        // "p" should always be >= "last_scanned" because newly GC dirtied
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
        // cards are no longer scanned again (see comment at end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
        // of loop on the increment of "current_card").  Test that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
        // hypothesis before removing this code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
        // If this code is removed, deal with the first time through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
        // the loop when the last_scanned is the object starting in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
        // the previous slice.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
        assert((p >= last_scanned) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
               (last_scanned == first_object_within_slice),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
               "Should no longer be possible");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
        if (p < last_scanned) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
          // Avoid scanning more than once; this can happen because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
          // newgen cards set by GC may a different set than the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
          // originally dirty set
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
          p = last_scanned;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
        oop* to = (oop*)addr_for(following_clean_card);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
        // Test slice_end first!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
        if ((HeapWord*)to > slice_end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
          to = (oop*)slice_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
        } else if (to > sp_top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
          to = sp_top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
        // we know which cards to scan, now clear them
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
        if (first_unclean_card <= worker_start_card+1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
          first_unclean_card = worker_start_card+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
        if (following_clean_card >= worker_end_card-1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
          following_clean_card = worker_end_card-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
        while (first_unclean_card < following_clean_card) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
          *first_unclean_card++ = clean_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
        const int interval = PrefetchScanIntervalInBytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
        // scan all objects in the range
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
        if (interval != 0) {
6248
2e661807cef0 6962589: remove breadth first scanning code from parallel gc
tonyp
parents: 5892
diff changeset
   317
          while (p < to) {
2e661807cef0 6962589: remove breadth first scanning code from parallel gc
tonyp
parents: 5892
diff changeset
   318
            Prefetch::write(p, interval);
2e661807cef0 6962589: remove breadth first scanning code from parallel gc
tonyp
parents: 5892
diff changeset
   319
            oop m = oop(p);
46968
9119841280f4 8160399: is_oop_or_null involves undefined behavior
coleenp
parents: 46625
diff changeset
   320
            assert(oopDesc::is_oop_or_null(m), "Expected an oop or NULL for header field at " PTR_FORMAT, p2i(m));
29792
8c6fa07f0869 8075957: Reduce calls to the GC specific object visitors in oopDesc
stefank
parents: 29325
diff changeset
   321
            pm->push_contents(m);
6248
2e661807cef0 6962589: remove breadth first scanning code from parallel gc
tonyp
parents: 5892
diff changeset
   322
            p += m->size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
          }
6248
2e661807cef0 6962589: remove breadth first scanning code from parallel gc
tonyp
parents: 5892
diff changeset
   324
          pm->drain_stacks_cond_depth();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
        } else {
6248
2e661807cef0 6962589: remove breadth first scanning code from parallel gc
tonyp
parents: 5892
diff changeset
   326
          while (p < to) {
2e661807cef0 6962589: remove breadth first scanning code from parallel gc
tonyp
parents: 5892
diff changeset
   327
            oop m = oop(p);
46968
9119841280f4 8160399: is_oop_or_null involves undefined behavior
coleenp
parents: 46625
diff changeset
   328
            assert(oopDesc::is_oop_or_null(m), "Expected an oop or NULL for header field at " PTR_FORMAT, p2i(m));
29792
8c6fa07f0869 8075957: Reduce calls to the GC specific object visitors in oopDesc
stefank
parents: 29325
diff changeset
   329
            pm->push_contents(m);
6248
2e661807cef0 6962589: remove breadth first scanning code from parallel gc
tonyp
parents: 5892
diff changeset
   330
            p += m->size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
          }
6248
2e661807cef0 6962589: remove breadth first scanning code from parallel gc
tonyp
parents: 5892
diff changeset
   332
          pm->drain_stacks_cond_depth();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
        last_scanned = p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
      // "current_card" is still the "following_clean_card" or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
      // the current_card is >= the worker_end_card so the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
      // loop will not execute again.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
      assert((current_card == following_clean_card) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
             (current_card >= worker_end_card),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
        "current_card should only be incremented if it still equals "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
        "following_clean_card");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
      // Increment current_card so that it is not processed again.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
      // It may now be dirty because a old-to-young pointer was
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
      // found on it an updated.  If it is now dirty, it cannot be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
      // be safely cleaned in the next iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
      current_card++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
    }
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
// This should be called before a scavenge.
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   353
void PSCardTable::verify_all_young_refs_imprecise() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  CheckForUnmarkedObjects check;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 29792
diff changeset
   356
  ParallelScavengeHeap* heap = ParallelScavengeHeap::heap();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  PSOldGen* old_gen = heap->old_gen();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  old_gen->object_iterate(&check);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
// This should be called immediately after a scavenge, before mutators resume.
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   363
void PSCardTable::verify_all_young_refs_precise() {
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 29792
diff changeset
   364
  ParallelScavengeHeap* heap = ParallelScavengeHeap::heap();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  PSOldGen* old_gen = heap->old_gen();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   367
  CheckForPreciseMarks check(heap->young_gen(), this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
50800
6da12aa23b88 8205607: Use oop_iterate instead of oop_iterate_no_header
stefank
parents: 50752
diff changeset
   369
  old_gen->oop_iterate(&check);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  verify_all_young_refs_precise_helper(old_gen->object_space()->used_region());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   374
void PSCardTable::verify_all_young_refs_precise_helper(MemRegion mr) {
54110
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   375
  CardValue* bot = byte_for(mr.start());
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   376
  CardValue* top = byte_for(mr.end());
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   377
  while (bot <= top) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
    assert(*bot == clean_card || *bot == verify_card, "Found unwanted or unknown card mark");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    if (*bot == verify_card)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
      *bot = youngergen_card;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    bot++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   385
bool PSCardTable::addr_is_marked_imprecise(void *addr) {
54110
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   386
  CardValue* p = byte_for(addr);
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   387
  CardValue val = *p;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  if (card_is_dirty(val))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  if (card_is_newgen(val))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  if (card_is_clean(val))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  assert(false, "Found unhandled card mark type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
// Also includes verify_card
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   404
bool PSCardTable::addr_is_marked_precise(void *addr) {
54110
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   405
  CardValue* p = byte_for(addr);
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   406
  CardValue val = *p;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  if (card_is_newgen(val))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  if (card_is_verify(val))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  if (card_is_clean(val))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  if (card_is_dirty(val))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  assert(false, "Found unhandled card mark type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
// Assumes that only the base or the end changes.  This allows indentification
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
// of the region that is being resized.  The
49455
848864ed9b17 8199604: Rename CardTableModRefBS to CardTableBarrierSet
eosterlund
parents: 49164
diff changeset
   427
// CardTable::resize_covered_region() is used for the normal case
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
// where the covered regions are growing or shrinking at the high end.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
// The method resize_covered_region_by_end() is analogous to
49455
848864ed9b17 8199604: Rename CardTableModRefBS to CardTableBarrierSet
eosterlund
parents: 49164
diff changeset
   430
// CardTable::resize_covered_region() but
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
// for regions that grow or shrink at the low end.
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   432
void PSCardTable::resize_covered_region(MemRegion new_region) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  for (int i = 0; i < _cur_covered_regions; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
    if (_covered[i].start() == new_region.start()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
      // Found a covered region with the same start as the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
      // new region.  The region is growing or shrinking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
      // from the start of the region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
      resize_covered_region_by_start(new_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
    if (_covered[i].start() > new_region.start()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  int changed_region = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  for (int j = 0; j < _cur_covered_regions; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
    if (_covered[j].end() == new_region.end()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
      changed_region = j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
      // This is a case where the covered region is growing or shrinking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
      // at the start of the region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
      assert(changed_region != -1, "Don't expect to add a covered region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
      assert(_covered[changed_region].byte_size() != new_region.byte_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
        "The sizes should be different here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
      resize_covered_region_by_end(changed_region, new_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  // This should only be a new covered region (where no existing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  // covered region matches at the start or the end).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  assert(_cur_covered_regions < _max_covered_regions,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    "An existing region should have been found");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  resize_covered_region_by_start(new_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   466
void PSCardTable::resize_covered_region_by_start(MemRegion new_region) {
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   467
  CardTable::resize_covered_region(new_region);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  debug_only(verify_guard();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   471
void PSCardTable::resize_covered_region_by_end(int changed_region,
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   472
                                               MemRegion new_region) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  assert(SafepointSynchronize::is_at_safepoint(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    "Only expect an expansion at the low end at a GC");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  debug_only(verify_guard();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  for (int k = 0; k < _cur_covered_regions; k++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    if (_covered[k].end() == new_region.end()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
      assert(changed_region == k, "Changed region is incorrect");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  // Commit new or uncommit old pages, if necessary.
5892
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   486
  if (resize_commit_uncommit(changed_region, new_region)) {
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   487
    // Set the new start of the committed region
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   488
    resize_update_committed_table(changed_region, new_region);
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   489
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  // Update card table entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  resize_update_card_table_entries(changed_region, new_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  // Update the covered region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  resize_update_covered_table(changed_region, new_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33105
diff changeset
   497
  int ind = changed_region;
49455
848864ed9b17 8199604: Rename CardTableModRefBS to CardTableBarrierSet
eosterlund
parents: 49164
diff changeset
   498
  log_trace(gc, barrier)("CardTable::resize_covered_region: ");
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33105
diff changeset
   499
  log_trace(gc, barrier)("    _covered[%d].start(): " INTPTR_FORMAT "  _covered[%d].last(): " INTPTR_FORMAT,
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33105
diff changeset
   500
                ind, p2i(_covered[ind].start()), ind, p2i(_covered[ind].last()));
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33105
diff changeset
   501
  log_trace(gc, barrier)("    _committed[%d].start(): " INTPTR_FORMAT "  _committed[%d].last(): " INTPTR_FORMAT,
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33105
diff changeset
   502
                ind, p2i(_committed[ind].start()), ind, p2i(_committed[ind].last()));
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33105
diff changeset
   503
  log_trace(gc, barrier)("    byte_for(start): " INTPTR_FORMAT "  byte_for(last): " INTPTR_FORMAT,
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33105
diff changeset
   504
                p2i(byte_for(_covered[ind].start())),  p2i(byte_for(_covered[ind].last())));
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33105
diff changeset
   505
  log_trace(gc, barrier)("    addr_for(start): " INTPTR_FORMAT "  addr_for(last): " INTPTR_FORMAT,
54110
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   506
                p2i(addr_for((CardValue*) _committed[ind].start())), p2i(addr_for((CardValue*) _committed[ind].last())));
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33105
diff changeset
   507
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  debug_only(verify_guard();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   511
bool PSCardTable::resize_commit_uncommit(int changed_region,
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   512
                                         MemRegion new_region) {
5892
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   513
  bool result = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  // Commit new or uncommit old pages, if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  MemRegion cur_committed = _committed[changed_region];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  assert(_covered[changed_region].end() == new_region.end(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    "The ends of the regions are expected to match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  // Extend the start of this _committed region to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  // to cover the start of any previous _committed region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  // This forms overlapping regions, but never interior regions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  HeapWord* min_prev_start = lowest_prev_committed_start(changed_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  if (min_prev_start < cur_committed.start()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
    // Only really need to set start of "cur_committed" to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
    // the new start (min_prev_start) but assertion checking code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
    // below use cur_committed.end() so make it correct.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
    MemRegion new_committed =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
        MemRegion(min_prev_start, cur_committed.end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    cur_committed = new_committed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
#ifdef ASSERT
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 29792
diff changeset
   531
  ParallelScavengeHeap* heap = ParallelScavengeHeap::heap();
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   532
  assert(cur_committed.start() == align_up(cur_committed.start(), os::vm_page_size()),
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   533
         "Starts should have proper alignment");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
54110
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   536
  CardValue* new_start = byte_for(new_region.start());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  // Round down because this is for the start address
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   538
  HeapWord* new_start_aligned = align_down((HeapWord*)new_start, os::vm_page_size());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  // The guard page is always committed and should not be committed over.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  // This method is used in cases where the generation is growing toward
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  // lower addresses but the guard region is still at the end of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  // card table.  That still makes sense when looking for writes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  // off the end of the card table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  if (new_start_aligned < cur_committed.start()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
    // Expand the committed region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    // Case A
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
    //                                          |+ guard +|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
    //                          |+ cur committed +++++++++|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    //                  |+ new committed +++++++++++++++++|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    // Case B
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    //                                          |+ guard +|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
    //                        |+ cur committed +|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    //                  |+ new committed +++++++|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
    // These are not expected because the calculation of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    // cur committed region and the new committed region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    // share the same end for the covered region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
    // Case C
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
    //                                          |+ guard +|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
    //                        |+ cur committed +|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
    //                  |+ new committed +++++++++++++++++|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
    // Case D
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
    //                                          |+ guard +|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
    //                        |+ cur committed +++++++++++|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
    //                  |+ new committed +++++++|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
    HeapWord* new_end_for_commit =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
      MIN2(cur_committed.end(), _guard_region.start());
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   571
    if(new_start_aligned < new_end_for_commit) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   572
      MemRegion new_committed =
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   573
        MemRegion(new_start_aligned, new_end_for_commit);
18069
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17087
diff changeset
   574
      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: 17087
diff changeset
   575
                                new_committed.byte_size(), !ExecMem,
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 17087
diff changeset
   576
                                "card table expansion");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
    }
5892
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   578
    result = true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  } else if (new_start_aligned > cur_committed.start()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
    // Shrink the committed region
5892
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   581
#if 0 // uncommitting space is currently unsafe because of the interactions
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   582
      // of growing and shrinking regions.  One region A can uncommit space
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   583
      // that it owns but which is being used by another region B (maybe).
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   584
      // Region B has not committed the space because it was already
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   585
      // committed by region A.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
    MemRegion uncommit_region = committed_unique_to_self(changed_region,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
      MemRegion(cur_committed.start(), new_start_aligned));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    if (!uncommit_region.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
      if (!os::uncommit_memory((char*)uncommit_region.start(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
                               uncommit_region.byte_size())) {
5892
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   591
        // If the uncommit fails, ignore it.  Let the
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   592
        // committed table resizing go even though the committed
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   593
        // table will over state the committed space.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
    }
5892
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   596
#else
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   597
    assert(!result, "Should be false with current workaround");
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   598
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  assert(_committed[changed_region].end() == cur_committed.end(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
    "end should not change");
5892
477b32b9d021 6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents: 5547
diff changeset
   602
  return result;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   605
void PSCardTable::resize_update_committed_table(int changed_region,
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   606
                                                MemRegion new_region) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
54110
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   608
  CardValue* new_start = byte_for(new_region.start());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  // Set the new start of the committed region
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   610
  HeapWord* new_start_aligned = align_down((HeapWord*)new_start, os::vm_page_size());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  MemRegion new_committed = MemRegion(new_start_aligned,
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   612
                                      _committed[changed_region].end());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  _committed[changed_region] = new_committed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  _committed[changed_region].set_start(new_start_aligned);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   617
void PSCardTable::resize_update_card_table_entries(int changed_region,
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   618
                                                   MemRegion new_region) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  debug_only(verify_guard();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  MemRegion original_covered = _covered[changed_region];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  // Initialize the card entries.  Only consider the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  // region covered by the card table (_whole_heap)
54110
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   623
  CardValue* entry;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  if (new_region.start() < _whole_heap.start()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
    entry = byte_for(_whole_heap.start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
    entry = byte_for(new_region.start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  }
54110
f4f0dce5d0bb 8220301: Remove jbyte use in CardTable
tschatzl
parents: 52117
diff changeset
   629
  CardValue* end = byte_for(original_covered.start());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  // If _whole_heap starts at the original covered regions start,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  // this loop will not execute.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  while (entry < end) { *entry++ = clean_card; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   635
void PSCardTable::resize_update_covered_table(int changed_region,
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   636
                                              MemRegion new_region) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  // Update the covered region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  _covered[changed_region].set_start(new_region.start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  _covered[changed_region].set_word_size(new_region.word_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  // reorder regions.  There should only be at most 1 out
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  // of order.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  for (int i = _cur_covered_regions-1 ; i > 0; i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
    if (_covered[i].start() < _covered[i-1].start()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
        MemRegion covered_mr = _covered[i-1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
        _covered[i-1] = _covered[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
        _covered[i] = covered_mr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
        MemRegion committed_mr = _committed[i-1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
      _committed[i-1] = _committed[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
      _committed[i] = committed_mr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  for (int m = 0; m < _cur_covered_regions-1; m++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
    assert(_covered[m].start() <= _covered[m+1].start(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
      "Covered regions out of order");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    assert(_committed[m].start() <= _committed[m+1].start(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
      "Committed regions out of order");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
// Returns the start of any committed region that is lower than
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
// the target committed region (index ind) and that intersects the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
// target region.  If none, return start of target region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
//      -------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
//      |           |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
//      -------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
//              ------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
//              | target   |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
//              ------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
//                               -------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
//                               |           |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
//                               -------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
//      ^ returns this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
//      -------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
//      |           |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
//      -------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
//                      ------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
//                      | target   |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
//                      ------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
//                               -------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
//                               |           |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
//                               -------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
//                      ^ returns this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   690
HeapWord* PSCardTable::lowest_prev_committed_start(int ind) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  assert(_cur_covered_regions >= 0, "Expecting at least on region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  HeapWord* min_start = _committed[ind].start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  for (int j = 0; j < ind; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
    HeapWord* this_start = _committed[j].start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
    if ((this_start < min_start) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
        !(_committed[j].intersection(_committed[ind])).is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
       min_start = this_start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  return min_start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
}
48961
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47216
diff changeset
   702
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48961
diff changeset
   703
bool PSCardTable::is_in_young(oop obj) const {
48961
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47216
diff changeset
   704
  return ParallelScavengeHeap::heap()->is_in_young(obj);
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47216
diff changeset
   705
}