blob: c307815782d0b9cab0006f490000a3e18363794e [file] [log] [blame]
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -07001/*
Joseph Provino3bd08572015-01-27 13:50:31 -05002 * Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved.
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -07003 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
Erik Trimbleba7c1732010-05-27 19:08:38 -070019 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -070022 *
23 */
24
Stefan Karlsson8006fe82010-11-23 13:22:55 -080025#ifndef SHARE_VM_GC_IMPLEMENTATION_G1_G1SATBCARDTABLEMODREFBS_HPP
26#define SHARE_VM_GC_IMPLEMENTATION_G1_G1SATBCARDTABLEMODREFBS_HPP
27
Thomas Schatzl100e51a2014-08-19 14:09:10 +020028#include "gc_implementation/g1/g1RegionToSpaceMapper.hpp"
Stefan Karlsson8006fe82010-11-23 13:22:55 -080029#include "memory/cardTableModRefBS.hpp"
30#include "memory/memRegion.hpp"
Stefan Karlsson4913ad52015-02-13 14:37:35 +010031#include "oops/oop.hpp"
Joseph Provino698fba92013-01-23 13:02:39 -050032#include "utilities/macros.hpp"
Stefan Karlsson8006fe82010-11-23 13:22:55 -080033
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -070034class DirtyCardQueueSet;
Thomas Schatzl100e51a2014-08-19 14:09:10 +020035class G1SATBCardTableLoggingModRefBS;
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -070036
37// This barrier is specialized to use a logging barrier to support
38// snapshot-at-the-beginning marking.
39
Kim Barrett57198d22014-12-18 13:26:37 -050040class G1SATBCardTableModRefBS: public CardTableModRefBS {
Mikael Gerdin7f3b5372013-10-08 17:35:51 +020041protected:
42 enum G1CardValues {
43 g1_young_gen = CT_MR_BS_last_reserved << 1
44 };
45
Kim Barrett40d39862015-02-27 19:52:48 -050046 G1SATBCardTableModRefBS(MemRegion whole_heap, const BarrierSet::FakeRtti& fake_rtti);
Joseph Provino3bd08572015-01-27 13:50:31 -050047 ~G1SATBCardTableModRefBS() { }
48
John Cuthbertsona08e1ce2011-04-07 09:53:20 -070049public:
Mikael Gerdin7f3b5372013-10-08 17:35:51 +020050 static int g1_young_card_val() { return g1_young_gen; }
51
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -070052 // Add "pre_val" to a set of objects that may have been disconnected from the
53 // pre-marking object graph.
54 static void enqueue(oop pre_val);
55
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -070056 virtual bool has_write_ref_pre_barrier() { return true; }
57
58 // This notes that we don't need to access any BarrierSet data
59 // structures, so this can be called from a static context.
Y. Srinivas Ramakrishna075c1332009-07-14 15:40:39 -070060 template <class T> static void write_ref_field_pre_static(T* field, oop newVal) {
61 T heap_oop = oopDesc::load_heap_oop(field);
62 if (!oopDesc::is_null(heap_oop)) {
63 enqueue(oopDesc::decode_heap_oop(heap_oop));
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -070064 }
65 }
66
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -070067 // We export this to make it available in cases where the static
68 // type of the barrier set is known. Note that it is non-virtual.
Y. Srinivas Ramakrishna075c1332009-07-14 15:40:39 -070069 template <class T> inline void inline_write_ref_field_pre(T* field, oop newVal) {
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -070070 write_ref_field_pre_static(field, newVal);
71 }
72
Y. Srinivas Ramakrishna075c1332009-07-14 15:40:39 -070073 // These are the more general virtual versions.
74 virtual void write_ref_field_pre_work(oop* field, oop new_val) {
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -070075 inline_write_ref_field_pre(field, new_val);
76 }
Y. Srinivas Ramakrishna075c1332009-07-14 15:40:39 -070077 virtual void write_ref_field_pre_work(narrowOop* field, oop new_val) {
78 inline_write_ref_field_pre(field, new_val);
79 }
80 virtual void write_ref_field_pre_work(void* field, oop new_val) {
81 guarantee(false, "Not needed");
82 }
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -070083
Y. Srinivas Ramakrishna075c1332009-07-14 15:40:39 -070084 template <class T> void write_ref_array_pre_work(T* dst, int count);
Mikael Gerdinebdab472014-06-26 13:20:18 +020085 virtual void write_ref_array_pre(oop* dst, int count, bool dest_uninitialized);
86 virtual void write_ref_array_pre(narrowOop* dst, int count, bool dest_uninitialized);
Mikael Gerdinb8363e62013-09-24 14:46:29 +020087
88/*
89 Claimed and deferred bits are used together in G1 during the evacuation
90 pause. These bits can have the following state transitions:
91 1. The claimed bit can be put over any other card state. Except that
92 the "dirty -> dirty and claimed" transition is checked for in
93 G1 code and is not used.
94 2. Deferred bit can be set only if the previous state of the card
95 was either clean or claimed. mark_card_deferred() is wait-free.
96 We do not care if the operation is be successful because if
97 it does not it will only result in duplicate entry in the update
98 buffer because of the "cache-miss". So it's not worth spinning.
99 */
100
101 bool is_card_claimed(size_t card_index) {
102 jbyte val = _byte_map[card_index];
103 return (val & (clean_card_mask_val() | claimed_card_val())) == claimed_card_val();
104 }
105
106 void set_card_claimed(size_t card_index) {
107 jbyte val = _byte_map[card_index];
108 if (val == clean_card_val()) {
109 val = (jbyte)claimed_card_val();
110 } else {
111 val |= (jbyte)claimed_card_val();
112 }
113 _byte_map[card_index] = val;
114 }
115
Mikael Gerdin7f3b5372013-10-08 17:35:51 +0200116 void verify_g1_young_region(MemRegion mr) PRODUCT_RETURN;
117 void g1_mark_as_young(const MemRegion& mr);
118
Mikael Gerdinb8363e62013-09-24 14:46:29 +0200119 bool mark_card_deferred(size_t card_index);
120
121 bool is_card_deferred(size_t card_index) {
122 jbyte val = _byte_map[card_index];
123 return (val & (clean_card_mask_val() | deferred_card_val())) == deferred_card_val();
124 }
Thomas Schatzl100e51a2014-08-19 14:09:10 +0200125};
Mikael Gerdinb8363e62013-09-24 14:46:29 +0200126
Kim Barrett40d39862015-02-27 19:52:48 -0500127template<>
128struct BarrierSet::GetName<G1SATBCardTableModRefBS> {
129 static const BarrierSet::Name value = BarrierSet::G1SATBCT;
130};
131
Thomas Schatzl100e51a2014-08-19 14:09:10 +0200132class G1SATBCardTableLoggingModRefBSChangedListener : public G1MappingChangedListener {
133 private:
134 G1SATBCardTableLoggingModRefBS* _card_table;
135 public:
136 G1SATBCardTableLoggingModRefBSChangedListener() : _card_table(NULL) { }
137
138 void set_card_table(G1SATBCardTableLoggingModRefBS* card_table) { _card_table = card_table; }
139
Thomas Schatzl60f3ade2014-10-09 11:40:11 +0200140 virtual void on_commit(uint start_idx, size_t num_regions, bool zero_filled);
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -0700141};
142
143// Adds card-table logging to the post-barrier.
144// Usual invariant: all dirty cards are logged in the DirtyCardQueueSet.
145class G1SATBCardTableLoggingModRefBS: public G1SATBCardTableModRefBS {
Thomas Schatzl100e51a2014-08-19 14:09:10 +0200146 friend class G1SATBCardTableLoggingModRefBSChangedListener;
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -0700147 private:
Thomas Schatzl100e51a2014-08-19 14:09:10 +0200148 G1SATBCardTableLoggingModRefBSChangedListener _listener;
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -0700149 DirtyCardQueueSet& _dcqs;
150 public:
Thomas Schatzl100e51a2014-08-19 14:09:10 +0200151 static size_t compute_size(size_t mem_region_size_in_words) {
152 size_t number_of_slots = (mem_region_size_in_words / card_size_in_words);
153 return ReservedSpace::allocation_align_size_up(number_of_slots);
154 }
155
Erik Helinf3997d82014-11-18 10:36:42 +0100156 G1SATBCardTableLoggingModRefBS(MemRegion whole_heap);
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -0700157
Thomas Schatzl100e51a2014-08-19 14:09:10 +0200158 virtual void initialize() { }
159 virtual void initialize(G1RegionToSpaceMapper* mapper);
160
161 virtual void resize_covered_region(MemRegion new_region) { ShouldNotReachHere(); }
162
Goetz Lindenmaier46c4ef62013-12-02 10:26:14 +0100163 void write_ref_field_work(void* field, oop new_val, bool release = false);
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -0700164
165 // Can be called from static contexts.
166 static void write_ref_field_static(void* field, oop new_val);
167
168 // NB: if you do a whole-heap invalidation, the "usual invariant" defined
169 // above no longer applies.
170 void invalidate(MemRegion mr, bool whole_heap = false);
171
172 void write_region_work(MemRegion mr) { invalidate(mr); }
173 void write_ref_array_work(MemRegion mr) { invalidate(mr); }
Y. Srinivas Ramakrishna18f33862008-06-05 15:57:56 -0700174};
175
Kim Barrett40d39862015-02-27 19:52:48 -0500176template<>
177struct BarrierSet::GetName<G1SATBCardTableLoggingModRefBS> {
178 static const BarrierSet::Name value = BarrierSet::G1SATBCTLogging;
179};
180
Stefan Karlsson8006fe82010-11-23 13:22:55 -0800181#endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1SATBCARDTABLEMODREFBS_HPP