annotate src/share/vm/gc_implementation/g1/g1SATBCardTableModRefBS.hpp @ 20481:c02ec279b062

8057768: Make heap region region type in G1 HeapRegion explicit Reviewed-by: brutisso, tschatzl
author brutisso
date Tue, 16 Sep 2014 14:27:40 +0200
parents 1f1d373cd044
children e7d0505c8a30
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
1 /*
17467
55fb97c4c58d 8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents: 12835
diff changeset
2 * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
4 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
7 * published by the Free Software Foundation.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
8 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
13 * accompanied this code).
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
14 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 845
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 845
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 845
diff changeset
21 * questions.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
22 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
23 */
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_GC_IMPLEMENTATION_G1_G1SATBCARDTABLEMODREFBS_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_GC_IMPLEMENTATION_G1_G1SATBCARDTABLEMODREFBS_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
28 #include "gc_implementation/g1/g1RegionToSpaceMapper.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "memory/cardTableModRefBS.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "memory/memRegion.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "oops/oop.inline.hpp"
8001
db9981fd3124 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 3252
diff changeset
32 #include "utilities/macros.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
34 class DirtyCardQueueSet;
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
35 class G1SATBCardTableLoggingModRefBS;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
36
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
37 // This barrier is specialized to use a logging barrier to support
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
38 // snapshot-at-the-beginning marking.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
39
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
40 class G1SATBCardTableModRefBS: public CardTableModRefBSForCTRS {
12835
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
41 protected:
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
42 enum G1CardValues {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
43 g1_young_gen = CT_MR_BS_last_reserved << 1
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
44 };
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
45
3249
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2324
diff changeset
46 public:
12835
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
47 static int g1_young_card_val() { return g1_young_gen; }
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
48
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
49 // Add "pre_val" to a set of objects that may have been disconnected from the
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
50 // pre-marking object graph.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
51 static void enqueue(oop pre_val);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
52
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
53 G1SATBCardTableModRefBS(MemRegion whole_heap,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
54 int max_covered_regions);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
55
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
56 bool is_a(BarrierSet::Name bsn) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
57 return bsn == BarrierSet::G1SATBCT || CardTableModRefBS::is_a(bsn);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
58 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
59
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
60 virtual bool has_write_ref_pre_barrier() { return true; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
61
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
62 // This notes that we don't need to access any BarrierSet data
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
63 // structures, so this can be called from a static context.
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
64 template <class T> static void write_ref_field_pre_static(T* field, oop newVal) {
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
65 T heap_oop = oopDesc::load_heap_oop(field);
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
66 if (!oopDesc::is_null(heap_oop)) {
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
67 enqueue(oopDesc::decode_heap_oop(heap_oop));
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
68 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
69 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
70
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
71 // We export this to make it available in cases where the static
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
72 // type of the barrier set is known. Note that it is non-virtual.
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
73 template <class T> inline void inline_write_ref_field_pre(T* field, oop newVal) {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
74 write_ref_field_pre_static(field, newVal);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
75 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
76
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
77 // These are the more general virtual versions.
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
78 virtual void write_ref_field_pre_work(oop* field, oop new_val) {
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
79 inline_write_ref_field_pre(field, new_val);
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
80 }
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
81 virtual void write_ref_field_pre_work(narrowOop* field, oop new_val) {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
82 inline_write_ref_field_pre(field, new_val);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
83 }
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
84 virtual void write_ref_field_pre_work(void* field, oop new_val) {
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
85 guarantee(false, "Not needed");
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
86 }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
87
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
88 template <class T> void write_ref_array_pre_work(T* dst, int count);
20275
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 17795
diff changeset
89 virtual void write_ref_array_pre(oop* dst, int count, bool dest_uninitialized);
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 17795
diff changeset
90 virtual void write_ref_array_pre(narrowOop* dst, int count, bool dest_uninitialized);
12343
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
91
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
92 /*
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
93 Claimed and deferred bits are used together in G1 during the evacuation
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
94 pause. These bits can have the following state transitions:
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
95 1. The claimed bit can be put over any other card state. Except that
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
96 the "dirty -> dirty and claimed" transition is checked for in
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
97 G1 code and is not used.
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
98 2. Deferred bit can be set only if the previous state of the card
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
99 was either clean or claimed. mark_card_deferred() is wait-free.
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
100 We do not care if the operation is be successful because if
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
101 it does not it will only result in duplicate entry in the update
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
102 buffer because of the "cache-miss". So it's not worth spinning.
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
103 */
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
104
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
105 bool is_card_claimed(size_t card_index) {
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
106 jbyte val = _byte_map[card_index];
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
107 return (val & (clean_card_mask_val() | claimed_card_val())) == claimed_card_val();
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
108 }
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
109
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
110 void set_card_claimed(size_t card_index) {
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
111 jbyte val = _byte_map[card_index];
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
112 if (val == clean_card_val()) {
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
113 val = (jbyte)claimed_card_val();
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
114 } else {
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
115 val |= (jbyte)claimed_card_val();
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
116 }
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
117 _byte_map[card_index] = val;
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
118 }
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
119
12835
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
120 void verify_g1_young_region(MemRegion mr) PRODUCT_RETURN;
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
121 void g1_mark_as_young(const MemRegion& mr);
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
122
12343
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
123 bool mark_card_deferred(size_t card_index);
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
124
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
125 bool is_card_deferred(size_t card_index) {
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
126 jbyte val = _byte_map[card_index];
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
127 return (val & (clean_card_mask_val() | deferred_card_val())) == deferred_card_val();
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
128 }
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
129 };
12343
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 8001
diff changeset
130
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
131 class G1SATBCardTableLoggingModRefBSChangedListener : public G1MappingChangedListener {
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
132 private:
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
133 G1SATBCardTableLoggingModRefBS* _card_table;
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
134 public:
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
135 G1SATBCardTableLoggingModRefBSChangedListener() : _card_table(NULL) { }
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
136
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
137 void set_card_table(G1SATBCardTableLoggingModRefBS* card_table) { _card_table = card_table; }
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
138
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
139 virtual void on_commit(uint start_idx, size_t num_regions);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
140 };
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
141
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
142 // Adds card-table logging to the post-barrier.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
143 // Usual invariant: all dirty cards are logged in the DirtyCardQueueSet.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
144 class G1SATBCardTableLoggingModRefBS: public G1SATBCardTableModRefBS {
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
145 friend class G1SATBCardTableLoggingModRefBSChangedListener;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
146 private:
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
147 G1SATBCardTableLoggingModRefBSChangedListener _listener;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
148 DirtyCardQueueSet& _dcqs;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
149 public:
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
150 static size_t compute_size(size_t mem_region_size_in_words) {
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
151 size_t number_of_slots = (mem_region_size_in_words / card_size_in_words);
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
152 return ReservedSpace::allocation_align_size_up(number_of_slots);
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
153 }
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
154
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
155 G1SATBCardTableLoggingModRefBS(MemRegion whole_heap,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
156 int max_covered_regions);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
157
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
158 virtual void initialize() { }
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
159 virtual void initialize(G1RegionToSpaceMapper* mapper);
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
160
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
161 virtual void resize_covered_region(MemRegion new_region) { ShouldNotReachHere(); }
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
162
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
163 bool is_a(BarrierSet::Name bsn) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
164 return bsn == BarrierSet::G1SATBCTLogging ||
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
165 G1SATBCardTableModRefBS::is_a(bsn);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
166 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
167
14443
3205e78d8193 8029396: PPC64 (part 212): Several memory ordering fixes in C-code.
goetz
parents: 12835
diff changeset
168 void write_ref_field_work(void* field, oop new_val, bool release = false);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
169
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
170 // Can be called from static contexts.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
171 static void write_ref_field_static(void* field, oop new_val);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
172
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
173 // NB: if you do a whole-heap invalidation, the "usual invariant" defined
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
174 // above no longer applies.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
175 void invalidate(MemRegion mr, bool whole_heap = false);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
176
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
177 void write_region_work(MemRegion mr) { invalidate(mr); }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
178 void write_ref_array_work(MemRegion mr) { invalidate(mr); }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
179 };
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
180
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
181 #endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1SATBCARDTABLEMODREFBS_HPP