annotate src/share/vm/gc_implementation/parallelScavenge/objectStartArray.hpp @ 605:98cb887364d3

6810672: Comment typos Summary: I have collected some typos I have found while looking at the code. Reviewed-by: kvn, never
author twisti
date Fri, 27 Feb 2009 13:27:09 -0800
parents a61af66fc99e
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2001-2005 Sun Microsystems, Inc. All Rights Reserved.
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 //
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // This class can be used to locate the beginning of an object in the
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // covered region.
a61af66fc99e Initial load
duke
parents:
diff changeset
28 //
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 class ObjectStartArray : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
31 friend class VerifyObjectStartArrayClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
34 PSVirtualSpace _virtual_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 MemRegion _reserved_region;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 MemRegion _covered_region;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 MemRegion _blocks_region;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 jbyte* _raw_base;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 jbyte* _offset_base;
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 enum BlockValueConstants {
a61af66fc99e Initial load
duke
parents:
diff changeset
44 clean_block = -1
a61af66fc99e Initial load
duke
parents:
diff changeset
45 };
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 enum BlockSizeConstants {
a61af66fc99e Initial load
duke
parents:
diff changeset
48 block_shift = 9,
a61af66fc99e Initial load
duke
parents:
diff changeset
49 block_size = 1 << block_shift,
a61af66fc99e Initial load
duke
parents:
diff changeset
50 block_size_in_words = block_size / sizeof(HeapWord)
a61af66fc99e Initial load
duke
parents:
diff changeset
51 };
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // Mapping from address to object start array entry
a61af66fc99e Initial load
duke
parents:
diff changeset
56 jbyte* block_for_addr(void* p) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
57 assert(_covered_region.contains(p),
a61af66fc99e Initial load
duke
parents:
diff changeset
58 "out of bounds access to object start array");
a61af66fc99e Initial load
duke
parents:
diff changeset
59 jbyte* result = &_offset_base[uintptr_t(p) >> block_shift];
a61af66fc99e Initial load
duke
parents:
diff changeset
60 assert(_blocks_region.contains(result),
a61af66fc99e Initial load
duke
parents:
diff changeset
61 "out of bounds result in byte_for");
a61af66fc99e Initial load
duke
parents:
diff changeset
62 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // Mapping from object start array entry to address of first word
a61af66fc99e Initial load
duke
parents:
diff changeset
66 HeapWord* addr_for_block(jbyte* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 assert(_blocks_region.contains(p),
a61af66fc99e Initial load
duke
parents:
diff changeset
68 "out of bounds access to object start array");
a61af66fc99e Initial load
duke
parents:
diff changeset
69 size_t delta = pointer_delta(p, _offset_base, sizeof(jbyte));
a61af66fc99e Initial load
duke
parents:
diff changeset
70 HeapWord* result = (HeapWord*) (delta << block_shift);
a61af66fc99e Initial load
duke
parents:
diff changeset
71 assert(_covered_region.contains(result),
a61af66fc99e Initial load
duke
parents:
diff changeset
72 "out of bounds accessor from card marking array");
a61af66fc99e Initial load
duke
parents:
diff changeset
73 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 }
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // Mapping that includes the derived offset.
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // If the block is clean, returns the last address in the covered region.
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // If the block is < index 0, returns the start of the covered region.
a61af66fc99e Initial load
duke
parents:
diff changeset
79 HeapWord* offset_addr_for_block (jbyte* p) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // We have to do this before the assert
a61af66fc99e Initial load
duke
parents:
diff changeset
81 if (p < _raw_base) {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 return _covered_region.start();
a61af66fc99e Initial load
duke
parents:
diff changeset
83 }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 assert(_blocks_region.contains(p),
a61af66fc99e Initial load
duke
parents:
diff changeset
86 "out of bounds access to object start array");
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 if (*p == clean_block) {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 return _covered_region.end();
a61af66fc99e Initial load
duke
parents:
diff changeset
90 }
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 size_t delta = pointer_delta(p, _offset_base, sizeof(jbyte));
a61af66fc99e Initial load
duke
parents:
diff changeset
93 HeapWord* result = (HeapWord*) (delta << block_shift);
a61af66fc99e Initial load
duke
parents:
diff changeset
94 result += *p;
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 assert(_covered_region.contains(result),
a61af66fc99e Initial load
duke
parents:
diff changeset
97 "out of bounds accessor from card marking array");
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // This method is in lieu of a constructor, so that this class can be
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // embedded inline in other classes.
a61af66fc99e Initial load
duke
parents:
diff changeset
106 void initialize(MemRegion reserved_region);
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 void set_covered_region(MemRegion mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 void reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 MemRegion covered_region() { return _covered_region; }
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 void allocate_block(HeapWord* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 assert(_covered_region.contains(p), "Must be in covered region");
a61af66fc99e Initial load
duke
parents:
diff changeset
116 jbyte* block = block_for_addr(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
117 HeapWord* block_base = addr_for_block(block);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 size_t offset = pointer_delta(p, block_base, sizeof(HeapWord*));
a61af66fc99e Initial load
duke
parents:
diff changeset
119 assert(offset < 128, "Sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // When doing MT offsets, we can't assert this.
a61af66fc99e Initial load
duke
parents:
diff changeset
121 //assert(offset > *block, "Found backwards allocation");
a61af66fc99e Initial load
duke
parents:
diff changeset
122 *block = (jbyte)offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // tty->print_cr("[%p]", p);
a61af66fc99e Initial load
duke
parents:
diff changeset
125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // Optimized for finding the first object that crosses into
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // a given block. The blocks contain the offset of the last
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // object in that block. Scroll backwards by one, and the first
605
98cb887364d3 6810672: Comment typos
twisti
parents: 0
diff changeset
130 // object hit should be at the beginning of the block
0
a61af66fc99e Initial load
duke
parents:
diff changeset
131 HeapWord* object_start(HeapWord* addr) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
132 assert(_covered_region.contains(addr), "Must be in covered region");
a61af66fc99e Initial load
duke
parents:
diff changeset
133 jbyte* block = block_for_addr(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
134 HeapWord* scroll_forward = offset_addr_for_block(block--);
a61af66fc99e Initial load
duke
parents:
diff changeset
135 while (scroll_forward > addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
136 scroll_forward = offset_addr_for_block(block--);
a61af66fc99e Initial load
duke
parents:
diff changeset
137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 HeapWord* next = scroll_forward;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 while (next <= addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
141 scroll_forward = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
142 next += oop(next)->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
143 }
a61af66fc99e Initial load
duke
parents:
diff changeset
144 assert(scroll_forward <= addr, "wrong order for current and arg");
a61af66fc99e Initial load
duke
parents:
diff changeset
145 assert(addr <= next, "wrong order for arg and next");
a61af66fc99e Initial load
duke
parents:
diff changeset
146 return scroll_forward;
a61af66fc99e Initial load
duke
parents:
diff changeset
147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 bool is_block_allocated(HeapWord* addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 assert(_covered_region.contains(addr), "Must be in covered region");
a61af66fc99e Initial load
duke
parents:
diff changeset
151 jbyte* block = block_for_addr(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
152 if (*block == clean_block)
a61af66fc99e Initial load
duke
parents:
diff changeset
153 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
156 }
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // Return true if an object starts in the range of heap addresses.
a61af66fc99e Initial load
duke
parents:
diff changeset
159 // If an object starts at an address corresponding to
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // "start", the method will return true.
a61af66fc99e Initial load
duke
parents:
diff changeset
161 bool object_starts_in_range(HeapWord* start_addr, HeapWord* end_addr) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
162 };