annotate src/share/vm/memory/cardTableRS.hpp @ 196:d1605aabd0a1 jdk7-b30

6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
author xdono
date Wed, 02 Jul 2008 12:55:16 -0700
parents ba764ed4b6f2
children 1ee8caae33af
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 113
diff changeset
2 * Copyright 2001-2008 Sun Microsystems, Inc. All Rights Reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 class Space;
a61af66fc99e Initial load
duke
parents:
diff changeset
26 class OopsInGenClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
27 class DirtyCardToOopClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // This kind of "GenRemSet" uses a card table both as shared data structure
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // for a mod ref barrier set and for the rem set information.
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class CardTableRS: public GenRemSet {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // Below are private classes used in impl.
a61af66fc99e Initial load
duke
parents:
diff changeset
35 friend class VerifyCTSpaceClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 friend class ClearNoncleanCardWrapper;
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 static jbyte clean_card_val() {
a61af66fc99e Initial load
duke
parents:
diff changeset
39 return CardTableModRefBS::clean_card;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 }
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 static bool
a61af66fc99e Initial load
duke
parents:
diff changeset
43 card_is_dirty_wrt_gen_iter(jbyte cv) {
a61af66fc99e Initial load
duke
parents:
diff changeset
44 return CardTableModRefBS::card_is_dirty_wrt_gen_iter(cv);
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 CardTableModRefBSForCTRS _ct_bs;
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 virtual void younger_refs_in_space_iterate(Space* sp, OopsInGenClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 void verify_space(Space* s, HeapWord* gen_start);
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 enum ExtendedCardValue {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 youngergen_card = CardTableModRefBS::CT_MR_BS_last_reserved + 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // These are for parallel collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // There are three P (parallel) youngergen card values. In general, this
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // needs to be more than the number of generations (including the perm
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // gen) that might have younger_refs_do invoked on them separately. So
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // if we add more gens, we have to add more values.
a61af66fc99e Initial load
duke
parents:
diff changeset
60 youngergenP1_card = CardTableModRefBS::CT_MR_BS_last_reserved + 2,
a61af66fc99e Initial load
duke
parents:
diff changeset
61 youngergenP2_card = CardTableModRefBS::CT_MR_BS_last_reserved + 3,
a61af66fc99e Initial load
duke
parents:
diff changeset
62 youngergenP3_card = CardTableModRefBS::CT_MR_BS_last_reserved + 4,
a61af66fc99e Initial load
duke
parents:
diff changeset
63 cur_youngergen_and_prev_nonclean_card =
a61af66fc99e Initial load
duke
parents:
diff changeset
64 CardTableModRefBS::CT_MR_BS_last_reserved + 5
a61af66fc99e Initial load
duke
parents:
diff changeset
65 };
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // An array that contains, for each generation, the card table value last
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // used as the current value for a younger_refs_do iteration of that
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // portion of the table. (The perm gen is index 0; other gens are at
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // their level plus 1. They youngest gen is in the table, but will
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // always have the value "clean_card".)
a61af66fc99e Initial load
duke
parents:
diff changeset
72 jbyte* _last_cur_val_in_gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 jbyte _cur_youngergen_card_val;
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 jbyte cur_youngergen_card_val() {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 return _cur_youngergen_card_val;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79 void set_cur_youngergen_card_val(jbyte v) {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 _cur_youngergen_card_val = v;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82 bool is_prev_youngergen_card_val(jbyte v) {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 return
a61af66fc99e Initial load
duke
parents:
diff changeset
84 youngergen_card <= v &&
a61af66fc99e Initial load
duke
parents:
diff changeset
85 v < cur_youngergen_and_prev_nonclean_card &&
a61af66fc99e Initial load
duke
parents:
diff changeset
86 v != _cur_youngergen_card_val;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 }
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // Return a youngergen_card_value that is not currently in use.
a61af66fc99e Initial load
duke
parents:
diff changeset
89 jbyte find_unused_youngergenP_card_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
92 CardTableRS(MemRegion whole_heap, int max_covered_regions);
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // *** GenRemSet functions.
a61af66fc99e Initial load
duke
parents:
diff changeset
95 GenRemSet::Name rs_kind() { return GenRemSet::CardTable; }
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 CardTableRS* as_CardTableRS() { return this; }
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 CardTableModRefBS* ct_bs() { return &_ct_bs; }
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // Override.
a61af66fc99e Initial load
duke
parents:
diff changeset
102 void prepare_for_younger_refs_iterate(bool parallel);
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // Card table entries are cleared before application; "blk" is
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // responsible for dirtying if the oop is still older-to-younger after
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // closure application.
a61af66fc99e Initial load
duke
parents:
diff changeset
107 void younger_refs_iterate(Generation* g, OopsInGenClosure* blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
108
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
109 void inline_write_ref_field_gc(void* field, oop new_val) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
110 jbyte* byte = _ct_bs.byte_for(field);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 *byte = youngergen_card;
a61af66fc99e Initial load
duke
parents:
diff changeset
112 }
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
113 void write_ref_field_gc_work(void* field, oop new_val) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
114 inline_write_ref_field_gc(field, new_val);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 }
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // Override. Might want to devirtualize this in the same fashion as
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // above. Ensures that the value of the card for field says that it's
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // a younger card in the current collection.
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
120 virtual void write_ref_field_gc_par(void* field, oop new_val);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 void resize_covered_region(MemRegion new_region);
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 bool is_aligned(HeapWord* addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 return _ct_bs.is_card_aligned(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 void verify();
6
73e96e5c30df 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 0
diff changeset
129 void verify_aligned_region_empty(MemRegion mr);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 void clear(MemRegion mr) { _ct_bs.clear(mr); }
a61af66fc99e Initial load
duke
parents:
diff changeset
132 void clear_into_younger(Generation* gen, bool clear_perm);
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 void invalidate(MemRegion mr) { _ct_bs.invalidate(mr); }
a61af66fc99e Initial load
duke
parents:
diff changeset
135 void invalidate_or_clear(Generation* gen, bool younger, bool perm);
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 static uintx ct_max_alignment_constraint() {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 return CardTableModRefBS::ct_max_alignment_constraint();
a61af66fc99e Initial load
duke
parents:
diff changeset
139 }
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 jbyte* byte_for(void* p) { return _ct_bs.byte_for(p); }
a61af66fc99e Initial load
duke
parents:
diff changeset
142 jbyte* byte_after(void* p) { return _ct_bs.byte_after(p); }
a61af66fc99e Initial load
duke
parents:
diff changeset
143 HeapWord* addr_for(jbyte* p) { return _ct_bs.addr_for(p); }
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 bool is_prev_nonclean_card_val(jbyte v) {
a61af66fc99e Initial load
duke
parents:
diff changeset
146 return
a61af66fc99e Initial load
duke
parents:
diff changeset
147 youngergen_card <= v &&
a61af66fc99e Initial load
duke
parents:
diff changeset
148 v <= cur_youngergen_and_prev_nonclean_card &&
a61af66fc99e Initial load
duke
parents:
diff changeset
149 v != _cur_youngergen_card_val;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
151
a61af66fc99e Initial load
duke
parents:
diff changeset
152 static bool youngergen_may_have_been_dirty(jbyte cv) {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 return cv == CardTableRS::cur_youngergen_and_prev_nonclean_card;
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 };