author | stefank |
Tue, 06 Aug 2019 10:48:21 +0200 | |
changeset 57777 | 90ead0febf56 |
parent 54110 | f4f0dce5d0bb |
permissions | -rw-r--r-- |
17327 | 1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
49455
diff
changeset
|
2 |
* Copyright (c) 2013, 2019, 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 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
49455
diff
changeset
|
25 |
#ifndef SHARE_GC_G1_G1CARDCOUNTS_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
49455
diff
changeset
|
26 |
#define SHARE_GC_G1_G1CARDCOUNTS_HPP |
17327 | 27 |
|
49164
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
47216
diff
changeset
|
28 |
#include "gc/g1/g1CardTable.hpp" |
30764 | 29 |
#include "gc/g1/g1RegionToSpaceMapper.hpp" |
17327 | 30 |
#include "memory/allocation.hpp" |
30291
54cdc5c1a9cb
8068352: Move virtualspace.* out of src/share/vm/runtime to memory directory
coleenp
parents:
29580
diff
changeset
|
31 |
#include "memory/virtualspace.hpp" |
17327 | 32 |
#include "utilities/globalDefinitions.hpp" |
33 |
||
49455
848864ed9b17
8199604: Rename CardTableModRefBS to CardTableBarrierSet
eosterlund
parents:
49164
diff
changeset
|
34 |
class CardTableBarrierSet; |
26160 | 35 |
class G1CardCounts; |
17327 | 36 |
class G1CollectedHeap; |
26160 | 37 |
class G1RegionToSpaceMapper; |
17327 | 38 |
class HeapRegion; |
39 |
||
26160 | 40 |
class G1CardCountsMappingChangedListener : public G1MappingChangedListener { |
41 |
private: |
|
42 |
G1CardCounts* _counts; |
|
43 |
public: |
|
44 |
void set_cardcounts(G1CardCounts* counts) { _counts = counts; } |
|
45 |
||
27149 | 46 |
virtual void on_commit(uint start_idx, size_t num_regions, bool zero_filled); |
26160 | 47 |
}; |
48 |
||
17327 | 49 |
// Table to track the number of times a card has been refined. Once |
50 |
// a card has been refined a certain number of times, it is |
|
51 |
// considered 'hot' and its refinement is delayed by inserting the |
|
52 |
// card into the hot card cache. The card will then be refined when |
|
53 |
// it is evicted from the hot card cache, or when the hot card cache |
|
54 |
// is 'drained' during the next evacuation pause. |
|
55 |
||
56 |
class G1CardCounts: public CHeapObj<mtGC> { |
|
54110 | 57 |
public: |
58 |
typedef CardTable::CardValue CardValue; |
|
59 |
||
60 |
private: |
|
26160 | 61 |
G1CardCountsMappingChangedListener _listener; |
62 |
||
17327 | 63 |
G1CollectedHeap* _g1h; |
49164
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
47216
diff
changeset
|
64 |
G1CardTable* _ct; |
17327 | 65 |
|
66 |
// The table of counts |
|
54110 | 67 |
uint8_t* _card_counts; |
17327 | 68 |
|
69 |
// Max capacity of the reserved space for the counts table |
|
70 |
size_t _reserved_max_card_num; |
|
71 |
||
72 |
// CardTable bottom. |
|
54110 | 73 |
const CardValue* _ct_bot; |
17327 | 74 |
|
75 |
// Returns true if the card counts table has been reserved. |
|
76 |
bool has_reserved_count_table() { return _card_counts != NULL; } |
|
77 |
||
78 |
// Returns true if the card counts table has been reserved and committed. |
|
79 |
bool has_count_table() { |
|
26160 | 80 |
return has_reserved_count_table(); |
17327 | 81 |
} |
82 |
||
54110 | 83 |
size_t ptr_2_card_num(const CardValue* card_ptr) { |
17327 | 84 |
assert(card_ptr >= _ct_bot, |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
85 |
"Invalid card pointer: " |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
86 |
"card_ptr: " PTR_FORMAT ", " |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
87 |
"_ct_bot: " PTR_FORMAT, |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
88 |
p2i(card_ptr), p2i(_ct_bot)); |
54110 | 89 |
size_t card_num = pointer_delta(card_ptr, _ct_bot, sizeof(CardValue)); |
29580
a67a581cfe11
8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents:
27149
diff
changeset
|
90 |
assert(card_num < _reserved_max_card_num, |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
91 |
"card pointer out of range: " PTR_FORMAT, p2i(card_ptr)); |
17327 | 92 |
return card_num; |
93 |
} |
|
94 |
||
54110 | 95 |
CardValue* card_num_2_ptr(size_t card_num) { |
29580
a67a581cfe11
8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents:
27149
diff
changeset
|
96 |
assert(card_num < _reserved_max_card_num, |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
97 |
"card num out of range: " SIZE_FORMAT, card_num); |
54110 | 98 |
return (CardValue*) (_ct_bot + card_num); |
17327 | 99 |
} |
100 |
||
101 |
// Clear the counts table for the given (exclusive) index range. |
|
102 |
void clear_range(size_t from_card_num, size_t to_card_num); |
|
103 |
||
104 |
public: |
|
105 |
G1CardCounts(G1CollectedHeap* g1h); |
|
106 |
||
30565
ebd5af27fe02
8073632: Make auxiliary data structures know their own translation factor
tschatzl
parents:
29580
diff
changeset
|
107 |
// Return the number of slots needed for a card counts table |
ebd5af27fe02
8073632: Make auxiliary data structures know their own translation factor
tschatzl
parents:
29580
diff
changeset
|
108 |
// that covers mem_region_words words. |
ebd5af27fe02
8073632: Make auxiliary data structures know their own translation factor
tschatzl
parents:
29580
diff
changeset
|
109 |
static size_t compute_size(size_t mem_region_size_in_words); |
ebd5af27fe02
8073632: Make auxiliary data structures know their own translation factor
tschatzl
parents:
29580
diff
changeset
|
110 |
|
ebd5af27fe02
8073632: Make auxiliary data structures know their own translation factor
tschatzl
parents:
29580
diff
changeset
|
111 |
// Returns how many bytes of the heap a single byte of the card counts table |
ebd5af27fe02
8073632: Make auxiliary data structures know their own translation factor
tschatzl
parents:
29580
diff
changeset
|
112 |
// corresponds to. |
ebd5af27fe02
8073632: Make auxiliary data structures know their own translation factor
tschatzl
parents:
29580
diff
changeset
|
113 |
static size_t heap_map_factor(); |
ebd5af27fe02
8073632: Make auxiliary data structures know their own translation factor
tschatzl
parents:
29580
diff
changeset
|
114 |
|
26160 | 115 |
void initialize(G1RegionToSpaceMapper* mapper); |
17327 | 116 |
|
117 |
// Increments the refinement count for the given card. |
|
118 |
// Returns the pre-increment count value. |
|
54110 | 119 |
uint add_card_count(CardValue* card_ptr); |
17327 | 120 |
|
121 |
// Returns true if the given count is high enough to be considered |
|
122 |
// 'hot'; false otherwise. |
|
123 |
bool is_hot(uint count); |
|
124 |
||
125 |
// Clears the card counts for the cards spanned by the region |
|
126 |
void clear_region(HeapRegion* hr); |
|
127 |
||
26160 | 128 |
// Clears the card counts for the cards spanned by the MemRegion |
129 |
void clear_range(MemRegion mr); |
|
130 |
||
17327 | 131 |
// Clear the entire card counts table during GC. |
132 |
void clear_all(); |
|
133 |
}; |
|
134 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
49455
diff
changeset
|
135 |
#endif // SHARE_GC_G1_G1CARDCOUNTS_HPP |