author | pliden |
Fri, 11 Apr 2014 12:29:24 +0200 | |
changeset 24094 | 5dbf1f44de18 |
parent 22234 | da823d78ad65 |
child 28372 | ce0aad4b8c44 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
22234
da823d78ad65
8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents:
20402
diff
changeset
|
2 |
* Copyright (c) 1997, 2013, 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:
3261
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3261
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:
3261
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_RUNTIME_VIRTUALSPACE_HPP |
26 |
#define SHARE_VM_RUNTIME_VIRTUALSPACE_HPP |
|
27 |
||
28 |
#include "memory/allocation.hpp" |
|
29 |
||
1 | 30 |
// ReservedSpace is a data structure for reserving a contiguous address range. |
31 |
||
32 |
class ReservedSpace VALUE_OBJ_CLASS_SPEC { |
|
33 |
friend class VMStructs; |
|
34 |
private: |
|
35 |
char* _base; |
|
36 |
size_t _size; |
|
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
37 |
size_t _noaccess_prefix; |
1 | 38 |
size_t _alignment; |
39 |
bool _special; |
|
2268 | 40 |
bool _executable; |
1 | 41 |
|
42 |
// ReservedSpace |
|
2268 | 43 |
ReservedSpace(char* base, size_t size, size_t alignment, bool special, |
44 |
bool executable); |
|
1 | 45 |
void initialize(size_t size, size_t alignment, bool large, |
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
46 |
char* requested_address, |
2268 | 47 |
const size_t noaccess_prefix, |
48 |
bool executable); |
|
1 | 49 |
|
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
50 |
protected: |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
51 |
// Create protection page at the beginning of the space. |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
52 |
void protect_noaccess_prefix(const size_t size); |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
53 |
|
1 | 54 |
public: |
55 |
// Constructor |
|
19546
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
17113
diff
changeset
|
56 |
ReservedSpace(); |
1 | 57 |
ReservedSpace(size_t size); |
58 |
ReservedSpace(size_t size, size_t alignment, bool large, |
|
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
59 |
char* requested_address = NULL, |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
60 |
const size_t noaccess_prefix = 0); |
2268 | 61 |
ReservedSpace(size_t size, size_t alignment, bool large, bool executable); |
1 | 62 |
|
63 |
// Accessors |
|
2268 | 64 |
char* base() const { return _base; } |
65 |
size_t size() const { return _size; } |
|
66 |
size_t alignment() const { return _alignment; } |
|
67 |
bool special() const { return _special; } |
|
68 |
bool executable() const { return _executable; } |
|
69 |
size_t noaccess_prefix() const { return _noaccess_prefix; } |
|
70 |
bool is_reserved() const { return _base != NULL; } |
|
1 | 71 |
void release(); |
72 |
||
73 |
// Splitting |
|
74 |
ReservedSpace first_part(size_t partition_size, size_t alignment, |
|
75 |
bool split = false, bool realloc = true); |
|
76 |
ReservedSpace last_part (size_t partition_size, size_t alignment); |
|
77 |
||
78 |
// These simply call the above using the default alignment. |
|
79 |
inline ReservedSpace first_part(size_t partition_size, |
|
80 |
bool split = false, bool realloc = true); |
|
81 |
inline ReservedSpace last_part (size_t partition_size); |
|
82 |
||
83 |
// Alignment |
|
84 |
static size_t page_align_size_up(size_t size); |
|
85 |
static size_t page_align_size_down(size_t size); |
|
86 |
static size_t allocation_align_size_up(size_t size); |
|
87 |
static size_t allocation_align_size_down(size_t size); |
|
88 |
}; |
|
89 |
||
90 |
ReservedSpace |
|
91 |
ReservedSpace::first_part(size_t partition_size, bool split, bool realloc) |
|
92 |
{ |
|
93 |
return first_part(partition_size, alignment(), split, realloc); |
|
94 |
} |
|
95 |
||
96 |
ReservedSpace ReservedSpace::last_part(size_t partition_size) |
|
97 |
{ |
|
98 |
return last_part(partition_size, alignment()); |
|
99 |
} |
|
100 |
||
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
101 |
// Class encapsulating behavior specific of memory space reserved for Java heap |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
102 |
class ReservedHeapSpace : public ReservedSpace { |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
103 |
public: |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
104 |
// Constructor |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
105 |
ReservedHeapSpace(size_t size, size_t forced_base_alignment, |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
106 |
bool large, char* requested_address); |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
107 |
}; |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
108 |
|
2268 | 109 |
// Class encapsulating behavior specific memory space for Code |
110 |
class ReservedCodeSpace : public ReservedSpace { |
|
111 |
public: |
|
112 |
// Constructor |
|
113 |
ReservedCodeSpace(size_t r_size, size_t rs_align, bool large); |
|
114 |
}; |
|
115 |
||
1 | 116 |
// VirtualSpace is data structure for committing a previously reserved address range in smaller chunks. |
117 |
||
118 |
class VirtualSpace VALUE_OBJ_CLASS_SPEC { |
|
119 |
friend class VMStructs; |
|
120 |
private: |
|
121 |
// Reserved area |
|
122 |
char* _low_boundary; |
|
123 |
char* _high_boundary; |
|
124 |
||
125 |
// Committed area |
|
126 |
char* _low; |
|
127 |
char* _high; |
|
128 |
||
129 |
// The entire space has been committed and pinned in memory, no |
|
130 |
// os::commit_memory() or os::uncommit_memory(). |
|
131 |
bool _special; |
|
132 |
||
2268 | 133 |
// Need to know if commit should be executable. |
134 |
bool _executable; |
|
135 |
||
1 | 136 |
// MPSS Support |
137 |
// Each virtualspace region has a lower, middle, and upper region. |
|
138 |
// Each region has an end boundary and a high pointer which is the |
|
139 |
// high water mark for the last allocated byte. |
|
140 |
// The lower and upper unaligned to LargePageSizeInBytes uses default page. |
|
141 |
// size. The middle region uses large page size. |
|
142 |
char* _lower_high; |
|
143 |
char* _middle_high; |
|
144 |
char* _upper_high; |
|
145 |
||
146 |
char* _lower_high_boundary; |
|
147 |
char* _middle_high_boundary; |
|
148 |
char* _upper_high_boundary; |
|
149 |
||
150 |
size_t _lower_alignment; |
|
151 |
size_t _middle_alignment; |
|
152 |
size_t _upper_alignment; |
|
153 |
||
154 |
// MPSS Accessors |
|
155 |
char* lower_high() const { return _lower_high; } |
|
156 |
char* middle_high() const { return _middle_high; } |
|
157 |
char* upper_high() const { return _upper_high; } |
|
158 |
||
159 |
char* lower_high_boundary() const { return _lower_high_boundary; } |
|
160 |
char* middle_high_boundary() const { return _middle_high_boundary; } |
|
161 |
char* upper_high_boundary() const { return _upper_high_boundary; } |
|
162 |
||
163 |
size_t lower_alignment() const { return _lower_alignment; } |
|
164 |
size_t middle_alignment() const { return _middle_alignment; } |
|
165 |
size_t upper_alignment() const { return _upper_alignment; } |
|
166 |
||
167 |
public: |
|
168 |
// Committed area |
|
169 |
char* low() const { return _low; } |
|
170 |
char* high() const { return _high; } |
|
171 |
||
172 |
// Reserved area |
|
173 |
char* low_boundary() const { return _low_boundary; } |
|
174 |
char* high_boundary() const { return _high_boundary; } |
|
175 |
||
176 |
bool special() const { return _special; } |
|
177 |
||
178 |
public: |
|
179 |
// Initialization |
|
180 |
VirtualSpace(); |
|
20402
9def9d6d969a
8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents:
19993
diff
changeset
|
181 |
bool initialize_with_granularity(ReservedSpace rs, size_t committed_byte_size, size_t max_commit_ganularity); |
1 | 182 |
bool initialize(ReservedSpace rs, size_t committed_byte_size); |
183 |
||
184 |
// Destruction |
|
185 |
~VirtualSpace(); |
|
186 |
||
19989
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
187 |
// Reserved memory |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
188 |
size_t reserved_size() const; |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
189 |
// Actually committed OS memory |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
190 |
size_t actual_committed_size() const; |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
191 |
// Memory used/expanded in this virtual space |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
192 |
size_t committed_size() const; |
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
193 |
// Memory left to use/expand in this virtual space |
1 | 194 |
size_t uncommitted_size() const; |
19989
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
195 |
|
0fc247fb59bc
8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents:
19546
diff
changeset
|
196 |
bool contains(const void* p) const; |
1 | 197 |
|
198 |
// Operations |
|
199 |
// returns true on success, false otherwise |
|
200 |
bool expand_by(size_t bytes, bool pre_touch = false); |
|
201 |
void shrink_by(size_t bytes); |
|
202 |
void release(); |
|
203 |
||
204 |
void check_for_contiguity() PRODUCT_RETURN; |
|
205 |
||
206 |
// Debugging |
|
19993
b1d392324718
8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents:
19989
diff
changeset
|
207 |
void print_on(outputStream* out) PRODUCT_RETURN; |
b1d392324718
8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents:
19989
diff
changeset
|
208 |
void print(); |
1 | 209 |
}; |
7397 | 210 |
|
211 |
#endif // SHARE_VM_RUNTIME_VIRTUALSPACE_HPP |