author | phh |
Sat, 30 Nov 2019 14:33:05 -0800 | |
changeset 59330 | 5b96c12f909d |
parent 57773 | 5cbc3bd9fdfd |
permissions | -rw-r--r-- |
1 | 1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
49194
diff
changeset
|
2 |
* Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
49194
diff
changeset
|
25 |
#ifndef SHARE_GC_PARALLEL_PSCARDTABLE_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
49194
diff
changeset
|
26 |
#define SHARE_GC_PARALLEL_PSCARDTABLE_HPP |
7397 | 27 |
|
49164
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48961
diff
changeset
|
28 |
#include "gc/shared/cardTable.hpp" |
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48961
diff
changeset
|
29 |
#include "oops/oop.hpp" |
7397 | 30 |
|
1 | 31 |
class MutableSpace; |
32 |
class ObjectStartArray; |
|
33 |
class PSPromotionManager; |
|
34 |
||
49164
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48961
diff
changeset
|
35 |
class PSCardTable: public CardTable { |
1 | 36 |
private: |
37 |
// Support methods for resizing the card table. |
|
5892
477b32b9d021
6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents:
5547
diff
changeset
|
38 |
// resize_commit_uncommit() returns true if the pages were committed or |
477b32b9d021
6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents:
5547
diff
changeset
|
39 |
// uncommitted |
477b32b9d021
6952853: SIGSEGV with UseAdaptiveGCBoundary on 64b linux running jvm2008
jmasa
parents:
5547
diff
changeset
|
40 |
bool resize_commit_uncommit(int changed_region, MemRegion new_region); |
1 | 41 |
void resize_update_card_table_entries(int changed_region, |
42 |
MemRegion new_region); |
|
43 |
void resize_update_committed_table(int changed_region, MemRegion new_region); |
|
44 |
void resize_update_covered_table(int changed_region, MemRegion new_region); |
|
45 |
||
49164
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48961
diff
changeset
|
46 |
void verify_all_young_refs_precise_helper(MemRegion mr); |
1 | 47 |
|
49164
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48961
diff
changeset
|
48 |
enum ExtendedCardValue { |
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48961
diff
changeset
|
49 |
youngergen_card = CT_MR_BS_last_reserved + 1, |
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48961
diff
changeset
|
50 |
verify_card = CT_MR_BS_last_reserved + 5 |
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48961
diff
changeset
|
51 |
}; |
1 | 52 |
|
53 |
public: |
|
49164
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48961
diff
changeset
|
54 |
PSCardTable(MemRegion whole_heap) : CardTable(whole_heap, /* scanned_concurrently */ false) {} |
1 | 55 |
|
54110 | 56 |
static CardValue youngergen_card_val() { return youngergen_card; } |
57 |
static CardValue verify_card_val() { return verify_card; } |
|
1 | 58 |
|
59 |
// Scavenge support |
|
60 |
void scavenge_contents_parallel(ObjectStartArray* start_array, |
|
61 |
MutableSpace* sp, |
|
62 |
HeapWord* space_top, |
|
63 |
PSPromotionManager* pm, |
|
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
64 |
uint stripe_number, |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
7397
diff
changeset
|
65 |
uint stripe_total); |
1 | 66 |
|
67 |
bool addr_is_marked_imprecise(void *addr); |
|
68 |
bool addr_is_marked_precise(void *addr); |
|
69 |
||
54110 | 70 |
void set_card_newgen(void* addr) { CardValue* p = byte_for(addr); *p = verify_card; } |
1 | 71 |
|
72 |
// Testers for entries |
|
73 |
static bool card_is_dirty(int value) { return value == dirty_card; } |
|
74 |
static bool card_is_newgen(int value) { return value == youngergen_card; } |
|
75 |
static bool card_is_clean(int value) { return value == clean_card; } |
|
76 |
static bool card_is_verify(int value) { return value == verify_card; } |
|
77 |
||
78 |
// Card marking |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
79 |
void inline_write_ref_field_gc(void* field, oop new_val) { |
54110 | 80 |
CardValue* byte = byte_for(field); |
1 | 81 |
*byte = youngergen_card; |
82 |
} |
|
83 |
||
49164
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48961
diff
changeset
|
84 |
// ReduceInitialCardMarks support |
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48961
diff
changeset
|
85 |
bool is_in_young(oop obj) const; |
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48961
diff
changeset
|
86 |
|
1 | 87 |
// Adaptive size policy support |
88 |
// Allows adjustment of the base and size of the covered regions |
|
89 |
void resize_covered_region(MemRegion new_region); |
|
90 |
// Finds the covered region to resize based on the start address |
|
91 |
// of the covered regions. |
|
92 |
void resize_covered_region_by_start(MemRegion new_region); |
|
93 |
// Finds the covered region to resize based on the end address |
|
94 |
// of the covered regions. |
|
95 |
void resize_covered_region_by_end(int changed_region, MemRegion new_region); |
|
96 |
// Finds the lowest start address of a covered region that is |
|
97 |
// previous (i.e., lower index) to the covered region with index "ind". |
|
98 |
HeapWord* lowest_prev_committed_start(int ind) const; |
|
99 |
||
100 |
#ifdef ASSERT |
|
54110 | 101 |
bool is_valid_card_address(CardValue* addr) { |
1 | 102 |
return (addr >= _byte_map) && (addr < _byte_map + _byte_map_size); |
103 |
} |
|
104 |
#endif // ASSERT |
|
48961
120b61d50f85
8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
47998
diff
changeset
|
105 |
|
49164
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48961
diff
changeset
|
106 |
// Verification |
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48961
diff
changeset
|
107 |
void verify_all_young_refs_imprecise(); |
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48961
diff
changeset
|
108 |
void verify_all_young_refs_precise(); |
1 | 109 |
}; |
7397 | 110 |
|
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
49194
diff
changeset
|
111 |
#endif // SHARE_GC_PARALLEL_PSCARDTABLE_HPP |