annotate src/share/vm/runtime/virtualspace.hpp @ 642:660978a2a31a

6791178: Specialize for zero as the compressed oop vm heap base Summary: Use zero based compressed oops if java heap is below 32gb and unscaled compressed oops if java heap is below 4gb. Reviewed-by: never, twisti, jcoomes, coleenp
author kvn
date Thu, 12 Mar 2009 10:37:46 -0700
parents 9ee9cf798b59
children 6bdd6923ba16
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
337
9ee9cf798b59 6754988: Update copyright year
xdono
parents: 237
diff changeset
2 * Copyright 1997-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 // ReservedSpace is a data structure for reserving a contiguous address range.
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 class ReservedSpace VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
28 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
29 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
30 char* _base;
a61af66fc99e Initial load
duke
parents:
diff changeset
31 size_t _size;
237
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
32 size_t _noaccess_prefix;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
33 size_t _alignment;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 bool _special;
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // ReservedSpace
a61af66fc99e Initial load
duke
parents:
diff changeset
37 ReservedSpace(char* base, size_t size, size_t alignment, bool special);
a61af66fc99e Initial load
duke
parents:
diff changeset
38 void initialize(size_t size, size_t alignment, bool large,
237
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
39 char* requested_address,
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
40 const size_t noaccess_prefix);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // Release parts of an already-reserved memory region [addr, addr + len) to
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // get a new region that has "compound alignment." Return the start of the
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // resulting region, or NULL on failure.
a61af66fc99e Initial load
duke
parents:
diff changeset
45 //
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // The region is logically divided into a prefix and a suffix. The prefix
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // starts at the result address, which is aligned to prefix_align. The suffix
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // starts at result address + prefix_size, which is aligned to suffix_align.
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // The total size of the result region is size prefix_size + suffix_size.
a61af66fc99e Initial load
duke
parents:
diff changeset
50 char* align_reserved_region(char* addr, const size_t len,
a61af66fc99e Initial load
duke
parents:
diff changeset
51 const size_t prefix_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
52 const size_t prefix_align,
a61af66fc99e Initial load
duke
parents:
diff changeset
53 const size_t suffix_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
54 const size_t suffix_align);
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // Reserve memory, call align_reserved_region() to alignment it and return the
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // result.
a61af66fc99e Initial load
duke
parents:
diff changeset
58 char* reserve_and_align(const size_t reserve_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
59 const size_t prefix_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
60 const size_t prefix_align,
a61af66fc99e Initial load
duke
parents:
diff changeset
61 const size_t suffix_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
62 const size_t suffix_align);
a61af66fc99e Initial load
duke
parents:
diff changeset
63
237
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
64 protected:
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
65 // Create protection page at the beginning of the space.
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
66 void protect_noaccess_prefix(const size_t size);
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
67
0
a61af66fc99e Initial load
duke
parents:
diff changeset
68 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
70 ReservedSpace(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
71 ReservedSpace(size_t size, size_t alignment, bool large,
237
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
72 char* requested_address = NULL,
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
73 const size_t noaccess_prefix = 0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
74 ReservedSpace(const size_t prefix_size, const size_t prefix_align,
237
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
75 const size_t suffix_size, const size_t suffix_align,
642
660978a2a31a 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 337
diff changeset
76 char* requested_address,
660978a2a31a 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 337
diff changeset
77 const size_t noaccess_prefix = 0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // Accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
80 char* base() const { return _base; }
a61af66fc99e Initial load
duke
parents:
diff changeset
81 size_t size() const { return _size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
82 size_t alignment() const { return _alignment; }
a61af66fc99e Initial load
duke
parents:
diff changeset
83 bool special() const { return _special; }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
237
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
85 size_t noaccess_prefix() const { return _noaccess_prefix; }
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
86
0
a61af66fc99e Initial load
duke
parents:
diff changeset
87 bool is_reserved() const { return _base != NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
88 void release();
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // Splitting
a61af66fc99e Initial load
duke
parents:
diff changeset
91 ReservedSpace first_part(size_t partition_size, size_t alignment,
a61af66fc99e Initial load
duke
parents:
diff changeset
92 bool split = false, bool realloc = true);
a61af66fc99e Initial load
duke
parents:
diff changeset
93 ReservedSpace last_part (size_t partition_size, size_t alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // These simply call the above using the default alignment.
a61af66fc99e Initial load
duke
parents:
diff changeset
96 inline ReservedSpace first_part(size_t partition_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
97 bool split = false, bool realloc = true);
a61af66fc99e Initial load
duke
parents:
diff changeset
98 inline ReservedSpace last_part (size_t partition_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // Alignment
a61af66fc99e Initial load
duke
parents:
diff changeset
101 static size_t page_align_size_up(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 static size_t page_align_size_down(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 static size_t allocation_align_size_up(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
104 static size_t allocation_align_size_down(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 };
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 ReservedSpace
a61af66fc99e Initial load
duke
parents:
diff changeset
108 ReservedSpace::first_part(size_t partition_size, bool split, bool realloc)
a61af66fc99e Initial load
duke
parents:
diff changeset
109 {
a61af66fc99e Initial load
duke
parents:
diff changeset
110 return first_part(partition_size, alignment(), split, realloc);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 }
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 ReservedSpace ReservedSpace::last_part(size_t partition_size)
a61af66fc99e Initial load
duke
parents:
diff changeset
114 {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 return last_part(partition_size, alignment());
a61af66fc99e Initial load
duke
parents:
diff changeset
116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
117
237
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
118 // Class encapsulating behavior specific of memory space reserved for Java heap
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
119 class ReservedHeapSpace : public ReservedSpace {
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
120 public:
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
121 // Constructor
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
122 ReservedHeapSpace(size_t size, size_t forced_base_alignment,
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
123 bool large, char* requested_address);
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
124 ReservedHeapSpace(const size_t prefix_size, const size_t prefix_align,
642
660978a2a31a 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 337
diff changeset
125 const size_t suffix_size, const size_t suffix_align,
660978a2a31a 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 337
diff changeset
126 char* requested_address);
237
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
127 };
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
128
0
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // VirtualSpace is data structure for committing a previously reserved address range in smaller chunks.
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 class VirtualSpace VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
132 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // Reserved area
a61af66fc99e Initial load
duke
parents:
diff changeset
135 char* _low_boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
136 char* _high_boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // Committed area
a61af66fc99e Initial load
duke
parents:
diff changeset
139 char* _low;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 char* _high;
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // The entire space has been committed and pinned in memory, no
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // os::commit_memory() or os::uncommit_memory().
a61af66fc99e Initial load
duke
parents:
diff changeset
144 bool _special;
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 // MPSS Support
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // Each virtualspace region has a lower, middle, and upper region.
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // Each region has an end boundary and a high pointer which is the
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // high water mark for the last allocated byte.
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // The lower and upper unaligned to LargePageSizeInBytes uses default page.
a61af66fc99e Initial load
duke
parents:
diff changeset
151 // size. The middle region uses large page size.
a61af66fc99e Initial load
duke
parents:
diff changeset
152 char* _lower_high;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 char* _middle_high;
a61af66fc99e Initial load
duke
parents:
diff changeset
154 char* _upper_high;
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 char* _lower_high_boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
157 char* _middle_high_boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
158 char* _upper_high_boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 size_t _lower_alignment;
a61af66fc99e Initial load
duke
parents:
diff changeset
161 size_t _middle_alignment;
a61af66fc99e Initial load
duke
parents:
diff changeset
162 size_t _upper_alignment;
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // MPSS Accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
165 char* lower_high() const { return _lower_high; }
a61af66fc99e Initial load
duke
parents:
diff changeset
166 char* middle_high() const { return _middle_high; }
a61af66fc99e Initial load
duke
parents:
diff changeset
167 char* upper_high() const { return _upper_high; }
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 char* lower_high_boundary() const { return _lower_high_boundary; }
a61af66fc99e Initial load
duke
parents:
diff changeset
170 char* middle_high_boundary() const { return _middle_high_boundary; }
a61af66fc99e Initial load
duke
parents:
diff changeset
171 char* upper_high_boundary() const { return _upper_high_boundary; }
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 size_t lower_alignment() const { return _lower_alignment; }
a61af66fc99e Initial load
duke
parents:
diff changeset
174 size_t middle_alignment() const { return _middle_alignment; }
a61af66fc99e Initial load
duke
parents:
diff changeset
175 size_t upper_alignment() const { return _upper_alignment; }
a61af66fc99e Initial load
duke
parents:
diff changeset
176
a61af66fc99e Initial load
duke
parents:
diff changeset
177 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // Committed area
a61af66fc99e Initial load
duke
parents:
diff changeset
179 char* low() const { return _low; }
a61af66fc99e Initial load
duke
parents:
diff changeset
180 char* high() const { return _high; }
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // Reserved area
a61af66fc99e Initial load
duke
parents:
diff changeset
183 char* low_boundary() const { return _low_boundary; }
a61af66fc99e Initial load
duke
parents:
diff changeset
184 char* high_boundary() const { return _high_boundary; }
a61af66fc99e Initial load
duke
parents:
diff changeset
185
a61af66fc99e Initial load
duke
parents:
diff changeset
186 bool special() const { return _special; }
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // Initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
190 VirtualSpace();
a61af66fc99e Initial load
duke
parents:
diff changeset
191 bool initialize(ReservedSpace rs, size_t committed_byte_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193 // Destruction
a61af66fc99e Initial load
duke
parents:
diff changeset
194 ~VirtualSpace();
a61af66fc99e Initial load
duke
parents:
diff changeset
195
a61af66fc99e Initial load
duke
parents:
diff changeset
196 // Testers (all sizes are byte sizes)
a61af66fc99e Initial load
duke
parents:
diff changeset
197 size_t committed_size() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
198 size_t reserved_size() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
199 size_t uncommitted_size() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
200 bool contains(const void* p) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // Operations
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // returns true on success, false otherwise
a61af66fc99e Initial load
duke
parents:
diff changeset
204 bool expand_by(size_t bytes, bool pre_touch = false);
a61af66fc99e Initial load
duke
parents:
diff changeset
205 void shrink_by(size_t bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
206 void release();
a61af66fc99e Initial load
duke
parents:
diff changeset
207
a61af66fc99e Initial load
duke
parents:
diff changeset
208 void check_for_contiguity() PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210 // Debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
211 void print() PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 };