annotate src/share/vm/gc_implementation/g1/g1HotCardCache.hpp @ 24234:ea6f94ab283b default tip

Added tag jvmci-0.36 for changeset 8128b98d4736
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Mon, 18 Sep 2017 18:49:45 +0200
parents b6a1bf5222c5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10246
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
1 /*
22903
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
2 * Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
10246
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
4 *
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
7 * published by the Free Software Foundation.
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
8 *
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
13 * accompanied this code).
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
14 *
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
18 *
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
21 * questions.
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
22 *
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
23 */
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
24
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
25 #ifndef SHARE_VM_GC_IMPLEMENTATION_G1_G1HOTCARDCACHE_HPP
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
26 #define SHARE_VM_GC_IMPLEMENTATION_G1_G1HOTCARDCACHE_HPP
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
27
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
28 #include "gc_implementation/g1/g1_globals.hpp"
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
29 #include "gc_implementation/g1/g1CardCounts.hpp"
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
30 #include "memory/allocation.hpp"
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
31 #include "runtime/safepoint.hpp"
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
32 #include "runtime/thread.inline.hpp"
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
33 #include "utilities/globalDefinitions.hpp"
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
34
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
35 class DirtyCardQueue;
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
36 class G1CollectedHeap;
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
37 class G1RemSet;
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
38 class HeapRegion;
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
39
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
40 // An evicting cache of cards that have been logged by the G1 post
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
41 // write barrier. Placing a card in the cache delays the refinement
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
42 // of the card until the card is evicted, or the cache is drained
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
43 // during the next evacuation pause.
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
44 //
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
45 // The first thing the G1 post write barrier does is to check whether
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
46 // the card containing the updated pointer is already dirty and, if
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
47 // so, skips the remaining code in the barrier.
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
48 //
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
49 // Delaying the refinement of a card will make the card fail the
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
50 // first is_dirty check in the write barrier, skipping the remainder
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
51 // of the write barrier.
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
52 //
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
53 // This can significantly reduce the overhead of the write barrier
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
54 // code, increasing throughput.
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
55
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
56 class G1HotCardCache: public CHeapObj<mtGC> {
22903
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
57
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
58 G1CollectedHeap* _g1h;
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
59
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
60 bool _use_cache;
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
61
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
62 G1CardCounts _card_counts;
10246
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
63
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
64 // The card cache table
22903
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
65 jbyte** _hot_cache;
10246
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
66
22903
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
67 size_t _hot_cache_size;
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
68
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
69 int _hot_cache_par_chunk_size;
10246
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
70
22903
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
71 // Avoids false sharing when concurrently updating _hot_cache_idx or
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
72 // _hot_cache_par_claimed_idx. These are never updated at the same time
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
73 // thus it's not necessary to separate them as well
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
74 char _pad_before[DEFAULT_CACHE_LINE_SIZE];
10246
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
75
22903
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
76 volatile size_t _hot_cache_idx;
10246
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
77
22903
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
78 volatile size_t _hot_cache_par_claimed_idx;
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
79
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
80 char _pad_after[DEFAULT_CACHE_LINE_SIZE];
10246
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
81
22902
ae374055ebce 8053998: Hot card cache flush chunk size too coarse grained
mlarsson
parents: 20337
diff changeset
82 // The number of cached cards a thread claims when flushing the cache
ae374055ebce 8053998: Hot card cache flush chunk size too coarse grained
mlarsson
parents: 20337
diff changeset
83 static const int ClaimChunkSize = 32;
ae374055ebce 8053998: Hot card cache flush chunk size too coarse grained
mlarsson
parents: 20337
diff changeset
84
10246
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
85 bool default_use_cache() const {
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
86 return (G1ConcRSLogCacheSize > 0);
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
87 }
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
88
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
89 public:
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
90 G1HotCardCache(G1CollectedHeap* g1h);
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
91 ~G1HotCardCache();
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
92
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 17844
diff changeset
93 void initialize(G1RegionToSpaceMapper* card_counts_storage);
10246
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
94
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
95 bool use_cache() { return _use_cache; }
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
96
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
97 void set_use_cache(bool b) {
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
98 _use_cache = (b ? default_use_cache() : false);
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
99 }
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
100
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
101 // Returns the card to be refined or NULL.
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
102 //
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
103 // Increments the count for given the card. if the card is not 'hot',
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
104 // it is returned for immediate refining. Otherwise the card is
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
105 // added to the hot card cache.
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
106 // If there is enough room in the hot card cache for the card we're
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
107 // adding, NULL is returned and no further action in needed.
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
108 // If we evict a card from the cache to make room for the new card,
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
109 // the evicted card is then returned for refinement.
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
110 jbyte* insert(jbyte* card_ptr);
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
111
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
112 // Refine the cards that have delayed as a result of
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
113 // being in the cache.
17844
8847586c9037 8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents: 10246
diff changeset
114 void drain(uint worker_i, G1RemSet* g1rs, DirtyCardQueue* into_cset_dcq);
10246
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
115
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
116 // Set up for parallel processing of the cards in the hot cache
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
117 void reset_hot_cache_claimed_index() {
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
118 _hot_cache_par_claimed_idx = 0;
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
119 }
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
120
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
121 // Resets the hot card cache and discards the entries.
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
122 void reset_hot_cache() {
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
123 assert(SafepointSynchronize::is_at_safepoint(), "Should be at a safepoint");
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
124 assert(Thread::current()->is_VM_thread(), "Current thread should be the VMthread");
22903
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
125 if (default_use_cache()) {
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
126 reset_hot_cache_internal();
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
127 }
10246
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
128 }
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
129
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
130 // Zeros the values in the card counts table for entire committed heap
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
131 void reset_card_counts();
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
132
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
133 // Zeros the values in the card counts table for the given region
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
134 void reset_card_counts(HeapRegion* hr);
22903
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
135
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
136 private:
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
137 void reset_hot_cache_internal() {
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
138 assert(_hot_cache != NULL, "Logic");
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
139 _hot_cache_idx = 0;
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
140 for (size_t i = 0; i < _hot_cache_size; i++) {
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
141 _hot_cache[i] = NULL;
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
142 }
b6a1bf5222c5 8069273: Decrease Hot Card Cache Lock contention
redestad
parents: 22902
diff changeset
143 }
10246
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
144 };
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
145
194f52aa2f23 7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
diff changeset
146 #endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1HOTCARDCACHE_HPP