annotate src/share/vm/memory/modRefBarrierSet.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 2000-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 // This kind of "BarrierSet" allows a "CollectedHeap" to detect and
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // enumerate ref fields that have been modified (since the last
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // enumeration), using a card table.
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 class OopClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
30 class Generation;
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class ModRefBarrierSet: public BarrierSet {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // Barriers only on ref writes.
a61af66fc99e Initial load
duke
parents:
diff changeset
35 bool has_read_ref_barrier() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
36 bool has_read_prim_barrier() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
37 bool has_write_ref_barrier() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
38 bool has_write_prim_barrier() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
39
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
40 bool read_ref_needs_barrier(void* field) { return false; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
41 bool read_prim_needs_barrier(HeapWord* field, size_t bytes) { return false; }
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
42 virtual bool write_ref_needs_barrier(void* field, oop new_val) = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
43 bool write_prim_needs_barrier(HeapWord* field, size_t bytes,
a61af66fc99e Initial load
duke
parents:
diff changeset
44 juint val1, juint val2) { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 void write_prim_field(oop obj, size_t offset, size_t bytes,
a61af66fc99e Initial load
duke
parents:
diff changeset
47 juint val1, juint val2) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
48
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
49 void read_ref_field(void* field) {}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
50 void read_prim_field(HeapWord* field, size_t bytes) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
51 protected:
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
52 virtual void write_ref_field_work(void* field, oop new_val) = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
53 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
54 void write_prim_field(HeapWord* field, size_t bytes,
a61af66fc99e Initial load
duke
parents:
diff changeset
55 juint val1, juint val2) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 bool has_read_ref_array_opt() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
58 bool has_read_prim_array_opt() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
59 bool has_write_prim_array_opt() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 bool has_read_region_opt() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // These operations should assert false unless the correponding operation
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // above returns true.
a61af66fc99e Initial load
duke
parents:
diff changeset
66 void read_ref_array(MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 assert(false, "can't call");
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 void read_prim_array(MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
70 assert(false, "can't call");
a61af66fc99e Initial load
duke
parents:
diff changeset
71 }
a61af66fc99e Initial load
duke
parents:
diff changeset
72 void write_prim_array(MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 assert(false, "can't call");
a61af66fc99e Initial load
duke
parents:
diff changeset
74 }
a61af66fc99e Initial load
duke
parents:
diff changeset
75 void read_region(MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 assert(false, "can't call");
a61af66fc99e Initial load
duke
parents:
diff changeset
77 }
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // Invoke "cl->do_oop" on (the address of) every possibly-modifed
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // reference field in objects in "sp". If "clear" is "true", the oops
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // are no longer considered possibly modified after application of the
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // closure. If' "before_save_marks" is true, oops in objects allocated
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // after the last call to "save_marks" on "sp" will not be considered.
a61af66fc99e Initial load
duke
parents:
diff changeset
84 virtual void mod_oop_in_space_iterate(Space* sp, OopClosure* cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
85 bool clear = false,
a61af66fc99e Initial load
duke
parents:
diff changeset
86 bool before_save_marks = false) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // Causes all refs in "mr" to be assumed to be modified.
a61af66fc99e Initial load
duke
parents:
diff changeset
89 virtual void invalidate(MemRegion mr) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // The caller guarantees that "mr" contains no references. (Perhaps it's
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // objects have been moved elsewhere.)
a61af66fc99e Initial load
duke
parents:
diff changeset
93 virtual void clear(MemRegion mr) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // Pass along the argument to the superclass.
a61af66fc99e Initial load
duke
parents:
diff changeset
96 ModRefBarrierSet(int max_covered_regions) :
a61af66fc99e Initial load
duke
parents:
diff changeset
97 BarrierSet(max_covered_regions) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // Verifies that the given region contains no modified references.
a61af66fc99e Initial load
duke
parents:
diff changeset
101 virtual void verify_clean_region(MemRegion mr) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 };