author | tschatzl |
Thu, 06 Aug 2015 15:49:50 +0200 | |
changeset 32185 | 49a57ff2c3cb |
parent 30764 | fec48bf5a827 |
child 33204 | b8a3901ac5b3 |
permissions | -rw-r--r-- |
17327 | 1 |
/* |
28831
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
2 |
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved. |
17327 | 3 |
* 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 |
* |
|
19 |
* 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. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_G1_G1HOTCARDCACHE_HPP |
26 |
#define SHARE_VM_GC_G1_G1HOTCARDCACHE_HPP |
|
17327 | 27 |
|
30764 | 28 |
#include "gc/g1/g1CardCounts.hpp" |
29 |
#include "gc/g1/g1_globals.hpp" |
|
17327 | 30 |
#include "memory/allocation.hpp" |
31 |
#include "runtime/safepoint.hpp" |
|
30175 | 32 |
#include "runtime/thread.hpp" |
17327 | 33 |
#include "utilities/globalDefinitions.hpp" |
34 |
||
35 |
class DirtyCardQueue; |
|
36 |
class G1CollectedHeap; |
|
37 |
class G1RemSet; |
|
38 |
class HeapRegion; |
|
39 |
||
40 |
// An evicting cache of cards that have been logged by the G1 post |
|
41 |
// write barrier. Placing a card in the cache delays the refinement |
|
42 |
// of the card until the card is evicted, or the cache is drained |
|
43 |
// during the next evacuation pause. |
|
44 |
// |
|
45 |
// The first thing the G1 post write barrier does is to check whether |
|
46 |
// the card containing the updated pointer is already dirty and, if |
|
47 |
// so, skips the remaining code in the barrier. |
|
48 |
// |
|
49 |
// Delaying the refinement of a card will make the card fail the |
|
50 |
// first is_dirty check in the write barrier, skipping the remainder |
|
51 |
// of the write barrier. |
|
52 |
// |
|
53 |
// This can significantly reduce the overhead of the write barrier |
|
54 |
// code, increasing throughput. |
|
55 |
||
56 |
class G1HotCardCache: public CHeapObj<mtGC> { |
|
28831
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
57 |
|
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
58 |
G1CollectedHeap* _g1h; |
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
59 |
|
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
60 |
bool _use_cache; |
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
61 |
|
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
62 |
G1CardCounts _card_counts; |
17327 | 63 |
|
29203
5024f7b3322c
8058446: G1 Hot card cache should use ArrayAllocator to allocate the cache array
tschatzl
parents:
28831
diff
changeset
|
64 |
ArrayAllocator<jbyte*, mtGC> _hot_cache_memory; |
5024f7b3322c
8058446: G1 Hot card cache should use ArrayAllocator to allocate the cache array
tschatzl
parents:
28831
diff
changeset
|
65 |
|
17327 | 66 |
// The card cache table |
28831
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
67 |
jbyte** _hot_cache; |
17327 | 68 |
|
28831
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
69 |
size_t _hot_cache_size; |
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
70 |
|
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
71 |
int _hot_cache_par_chunk_size; |
17327 | 72 |
|
28831
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
73 |
// Avoids false sharing when concurrently updating _hot_cache_idx or |
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
74 |
// _hot_cache_par_claimed_idx. These are never updated at the same time |
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
75 |
// thus it's not necessary to separate them as well |
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
76 |
char _pad_before[DEFAULT_CACHE_LINE_SIZE]; |
17327 | 77 |
|
28831
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
78 |
volatile size_t _hot_cache_idx; |
17327 | 79 |
|
28831
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
80 |
volatile size_t _hot_cache_par_claimed_idx; |
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
81 |
|
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
82 |
char _pad_after[DEFAULT_CACHE_LINE_SIZE]; |
17327 | 83 |
|
26830
e67193c2ceda
8053998: Hot card cache flush chunk size too coarse grained
mlarsson
parents:
26160
diff
changeset
|
84 |
// The number of cached cards a thread claims when flushing the cache |
e67193c2ceda
8053998: Hot card cache flush chunk size too coarse grained
mlarsson
parents:
26160
diff
changeset
|
85 |
static const int ClaimChunkSize = 32; |
e67193c2ceda
8053998: Hot card cache flush chunk size too coarse grained
mlarsson
parents:
26160
diff
changeset
|
86 |
|
17327 | 87 |
bool default_use_cache() const { |
88 |
return (G1ConcRSLogCacheSize > 0); |
|
89 |
} |
|
90 |
||
91 |
public: |
|
92 |
G1HotCardCache(G1CollectedHeap* g1h); |
|
93 |
~G1HotCardCache(); |
|
94 |
||
26160 | 95 |
void initialize(G1RegionToSpaceMapper* card_counts_storage); |
17327 | 96 |
|
97 |
bool use_cache() { return _use_cache; } |
|
98 |
||
99 |
void set_use_cache(bool b) { |
|
100 |
_use_cache = (b ? default_use_cache() : false); |
|
101 |
} |
|
102 |
||
103 |
// Returns the card to be refined or NULL. |
|
104 |
// |
|
105 |
// Increments the count for given the card. if the card is not 'hot', |
|
106 |
// it is returned for immediate refining. Otherwise the card is |
|
107 |
// added to the hot card cache. |
|
108 |
// If there is enough room in the hot card cache for the card we're |
|
109 |
// adding, NULL is returned and no further action in needed. |
|
110 |
// If we evict a card from the cache to make room for the new card, |
|
111 |
// the evicted card is then returned for refinement. |
|
112 |
jbyte* insert(jbyte* card_ptr); |
|
113 |
||
114 |
// Refine the cards that have delayed as a result of |
|
115 |
// being in the cache. |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
17327
diff
changeset
|
116 |
void drain(uint worker_i, G1RemSet* g1rs, DirtyCardQueue* into_cset_dcq); |
17327 | 117 |
|
118 |
// Set up for parallel processing of the cards in the hot cache |
|
119 |
void reset_hot_cache_claimed_index() { |
|
120 |
_hot_cache_par_claimed_idx = 0; |
|
121 |
} |
|
122 |
||
123 |
// Resets the hot card cache and discards the entries. |
|
124 |
void reset_hot_cache() { |
|
125 |
assert(SafepointSynchronize::is_at_safepoint(), "Should be at a safepoint"); |
|
30175 | 126 |
assert(Thread::current_noinline()->is_VM_thread(), "Current thread should be the VMthread"); |
28831
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
127 |
if (default_use_cache()) { |
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
128 |
reset_hot_cache_internal(); |
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
129 |
} |
17327 | 130 |
} |
131 |
||
132 |
// Zeros the values in the card counts table for entire committed heap |
|
133 |
void reset_card_counts(); |
|
134 |
||
135 |
// Zeros the values in the card counts table for the given region |
|
136 |
void reset_card_counts(HeapRegion* hr); |
|
28831
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
137 |
|
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
138 |
private: |
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
139 |
void reset_hot_cache_internal() { |
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
140 |
assert(_hot_cache != NULL, "Logic"); |
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
141 |
_hot_cache_idx = 0; |
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
142 |
for (size_t i = 0; i < _hot_cache_size; i++) { |
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
143 |
_hot_cache[i] = NULL; |
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
144 |
} |
454224c7e3ba
8069273: Decrease Hot Card Cache Lock contention
redestad
parents:
26830
diff
changeset
|
145 |
} |
17327 | 146 |
}; |
147 |
||
30764 | 148 |
#endif // SHARE_VM_GC_G1_G1HOTCARDCACHE_HPP |