annotate src/share/vm/runtime/virtualspace.hpp @ 23071:fb260f267e87

8036913: make DeoptimizeALot dependent on number of threads Reviewed-by: kvn, shade
author iignatyev
date Sun, 02 Nov 2014 18:42:30 +0300
parents 30e04eba9e29
children dd9cc155639c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
17467
55fb97c4c58d 8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents: 12834
diff changeset
2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. 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 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_RUNTIME_VIRTUALSPACE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_RUNTIME_VIRTUALSPACE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "memory/allocation.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29
0
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // ReservedSpace is a data structure for reserving a contiguous address range.
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class ReservedSpace VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
35 char* _base;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 size_t _size;
237
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
37 size_t _noaccess_prefix;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
38 size_t _alignment;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 bool _special;
656
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
40 bool _executable;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // ReservedSpace
656
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
43 ReservedSpace(char* base, size_t size, size_t alignment, bool special,
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
44 bool executable);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
45 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
46 char* requested_address,
656
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
47 const size_t noaccess_prefix,
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
48 bool executable);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
49
237
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
50 protected:
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
51 // Create protection page at the beginning of the space.
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
52 void protect_noaccess_prefix(const size_t size);
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
53
0
a61af66fc99e Initial load
duke
parents:
diff changeset
54 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // Constructor
12110
4c84d351cca9 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 10187
diff changeset
56 ReservedSpace();
22978
30e04eba9e29 8077255: TracePageSizes output reports wrong page size on Windows with G1
tschatzl
parents: 22977
diff changeset
57 // Initialize the reserved space with the given size. If preferred_page_size
30e04eba9e29 8077255: TracePageSizes output reports wrong page size on Windows with G1
tschatzl
parents: 22977
diff changeset
58 // is set, use this as minimum page size/alignment. This may waste some space
30e04eba9e29 8077255: TracePageSizes output reports wrong page size on Windows with G1
tschatzl
parents: 22977
diff changeset
59 // if the given size is not aligned to that value, as the reservation will be
30e04eba9e29 8077255: TracePageSizes output reports wrong page size on Windows with G1
tschatzl
parents: 22977
diff changeset
60 // aligned up to the final alignment in this case.
30e04eba9e29 8077255: TracePageSizes output reports wrong page size on Windows with G1
tschatzl
parents: 22977
diff changeset
61 ReservedSpace(size_t size, size_t preferred_page_size = 0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
62 ReservedSpace(size_t size, size_t alignment, bool large,
237
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
63 char* requested_address = NULL,
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
64 const size_t noaccess_prefix = 0);
656
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
65 ReservedSpace(size_t size, size_t alignment, bool large, bool executable);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // Accessors
656
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
68 char* base() const { return _base; }
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
69 size_t size() const { return _size; }
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
70 size_t alignment() const { return _alignment; }
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
71 bool special() const { return _special; }
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
72 bool executable() const { return _executable; }
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
73 size_t noaccess_prefix() const { return _noaccess_prefix; }
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
74 bool is_reserved() const { return _base != NULL; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
75 void release();
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // Splitting
a61af66fc99e Initial load
duke
parents:
diff changeset
78 ReservedSpace first_part(size_t partition_size, size_t alignment,
a61af66fc99e Initial load
duke
parents:
diff changeset
79 bool split = false, bool realloc = true);
a61af66fc99e Initial load
duke
parents:
diff changeset
80 ReservedSpace last_part (size_t partition_size, size_t alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // These simply call the above using the default alignment.
a61af66fc99e Initial load
duke
parents:
diff changeset
83 inline ReservedSpace first_part(size_t partition_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
84 bool split = false, bool realloc = true);
a61af66fc99e Initial load
duke
parents:
diff changeset
85 inline ReservedSpace last_part (size_t partition_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // Alignment
a61af66fc99e Initial load
duke
parents:
diff changeset
88 static size_t page_align_size_up(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 static size_t page_align_size_down(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
90 static size_t allocation_align_size_up(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
91 static size_t allocation_align_size_down(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 };
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 ReservedSpace
a61af66fc99e Initial load
duke
parents:
diff changeset
95 ReservedSpace::first_part(size_t partition_size, bool split, bool realloc)
a61af66fc99e Initial load
duke
parents:
diff changeset
96 {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 return first_part(partition_size, alignment(), split, realloc);
a61af66fc99e Initial load
duke
parents:
diff changeset
98 }
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 ReservedSpace ReservedSpace::last_part(size_t partition_size)
a61af66fc99e Initial load
duke
parents:
diff changeset
101 {
a61af66fc99e Initial load
duke
parents:
diff changeset
102 return last_part(partition_size, alignment());
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104
237
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
105 // 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
106 class ReservedHeapSpace : public ReservedSpace {
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
107 public:
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
108 // Constructor
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
109 ReservedHeapSpace(size_t size, size_t forced_base_alignment,
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
110 bool large, char* requested_address);
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
111 };
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 0
diff changeset
112
656
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
113 // Class encapsulating behavior specific memory space for Code
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
114 class ReservedCodeSpace : public ReservedSpace {
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
115 public:
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
116 // Constructor
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
117 ReservedCodeSpace(size_t r_size, size_t rs_align, bool large);
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
118 };
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
119
0
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // VirtualSpace is data structure for committing a previously reserved address range in smaller chunks.
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 class VirtualSpace VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
123 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
124 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // Reserved area
a61af66fc99e Initial load
duke
parents:
diff changeset
126 char* _low_boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 char* _high_boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // Committed area
a61af66fc99e Initial load
duke
parents:
diff changeset
130 char* _low;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 char* _high;
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // The entire space has been committed and pinned in memory, no
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // os::commit_memory() or os::uncommit_memory().
a61af66fc99e Initial load
duke
parents:
diff changeset
135 bool _special;
a61af66fc99e Initial load
duke
parents:
diff changeset
136
656
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
137 // Need to know if commit should be executable.
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
138 bool _executable;
6bdd6923ba16 6541756: Reduce executable C-heap
coleenp
parents: 642
diff changeset
139
0
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // MPSS Support
a61af66fc99e Initial load
duke
parents:
diff changeset
141 // Each virtualspace region has a lower, middle, and upper region.
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // Each region has an end boundary and a high pointer which is the
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // high water mark for the last allocated byte.
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // The lower and upper unaligned to LargePageSizeInBytes uses default page.
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // size. The middle region uses large page size.
a61af66fc99e Initial load
duke
parents:
diff changeset
146 char* _lower_high;
a61af66fc99e Initial load
duke
parents:
diff changeset
147 char* _middle_high;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 char* _upper_high;
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 char* _lower_high_boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
151 char* _middle_high_boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 char* _upper_high_boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 size_t _lower_alignment;
a61af66fc99e Initial load
duke
parents:
diff changeset
155 size_t _middle_alignment;
a61af66fc99e Initial load
duke
parents:
diff changeset
156 size_t _upper_alignment;
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // MPSS Accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
159 char* lower_high() const { return _lower_high; }
a61af66fc99e Initial load
duke
parents:
diff changeset
160 char* middle_high() const { return _middle_high; }
a61af66fc99e Initial load
duke
parents:
diff changeset
161 char* upper_high() const { return _upper_high; }
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 char* lower_high_boundary() const { return _lower_high_boundary; }
a61af66fc99e Initial load
duke
parents:
diff changeset
164 char* middle_high_boundary() const { return _middle_high_boundary; }
a61af66fc99e Initial load
duke
parents:
diff changeset
165 char* upper_high_boundary() const { return _upper_high_boundary; }
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 size_t lower_alignment() const { return _lower_alignment; }
a61af66fc99e Initial load
duke
parents:
diff changeset
168 size_t middle_alignment() const { return _middle_alignment; }
a61af66fc99e Initial load
duke
parents:
diff changeset
169 size_t upper_alignment() const { return _upper_alignment; }
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
172 // Committed area
a61af66fc99e Initial load
duke
parents:
diff changeset
173 char* low() const { return _low; }
a61af66fc99e Initial load
duke
parents:
diff changeset
174 char* high() const { return _high; }
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // Reserved area
a61af66fc99e Initial load
duke
parents:
diff changeset
177 char* low_boundary() const { return _low_boundary; }
a61af66fc99e Initial load
duke
parents:
diff changeset
178 char* high_boundary() const { return _high_boundary; }
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 bool special() const { return _special; }
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // Initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
184 VirtualSpace();
12834
04b18a42c2f3 8025526: VirtualSpace should support per-instance disabling of large pages
mgerdin
parents: 12240
diff changeset
185 bool initialize_with_granularity(ReservedSpace rs, size_t committed_byte_size, size_t max_commit_ganularity);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
186 bool initialize(ReservedSpace rs, size_t committed_byte_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 // Destruction
a61af66fc99e Initial load
duke
parents:
diff changeset
189 ~VirtualSpace();
a61af66fc99e Initial load
duke
parents:
diff changeset
190
12236
c4c768305a8f 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 12110
diff changeset
191 // Reserved memory
c4c768305a8f 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 12110
diff changeset
192 size_t reserved_size() const;
c4c768305a8f 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 12110
diff changeset
193 // Actually committed OS memory
c4c768305a8f 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 12110
diff changeset
194 size_t actual_committed_size() const;
c4c768305a8f 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 12110
diff changeset
195 // Memory used/expanded in this virtual space
c4c768305a8f 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 12110
diff changeset
196 size_t committed_size() const;
c4c768305a8f 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 12110
diff changeset
197 // Memory left to use/expand in this virtual space
0
a61af66fc99e Initial load
duke
parents:
diff changeset
198 size_t uncommitted_size() const;
12236
c4c768305a8f 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 12110
diff changeset
199
c4c768305a8f 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 12110
diff changeset
200 bool contains(const void* p) const;
0
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
12240
8c5e6482cbfc 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 12236
diff changeset
211 void print_on(outputStream* out) PRODUCT_RETURN;
8c5e6482cbfc 8024752: Log TraceMetadata* output to gclog_or_tty instead of tty
stefank
parents: 12236
diff changeset
212 void print();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
213 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
214
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
215 #endif // SHARE_VM_RUNTIME_VIRTUALSPACE_HPP