author | iklam |
Wed, 02 Aug 2017 18:06:38 -0700 | |
changeset 46746 | ea379ebb9447 |
parent 46704 | 211b3f6b75ef |
child 46818 | d0475215ae39 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46704
diff
changeset
|
2 |
* Copyright (c) 1997, 2017, 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:
1374
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1374
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:
1374
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_MEMORY_ALLOCATION_HPP |
26 |
#define SHARE_VM_MEMORY_ALLOCATION_HPP |
|
27 |
||
28 |
#include "runtime/globals.hpp" |
|
29 |
#include "utilities/globalDefinitions.hpp" |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
30 |
#include "utilities/macros.hpp" |
7397 | 31 |
#ifdef COMPILER1 |
32 |
#include "c1/c1_globals.hpp" |
|
33 |
#endif |
|
34 |
#ifdef COMPILER2 |
|
35 |
#include "opto/c2_globals.hpp" |
|
36 |
#endif |
|
37 |
||
9403
6f3c6231c20a
7036747: 7017009 reappeared, problem with ElfStringTable
zgu
parents:
8481
diff
changeset
|
38 |
#include <new> |
6f3c6231c20a
7036747: 7017009 reappeared, problem with ElfStringTable
zgu
parents:
8481
diff
changeset
|
39 |
|
46625 | 40 |
// The byte alignment to be used by Arena::Amalloc. See bugid 4169348. |
41 |
// Note: this value must be a power of 2 |
|
42 |
||
43 |
#define ARENA_AMALLOC_ALIGNMENT (2*BytesPerWord) |
|
44 |
||
1 | 45 |
#define ARENA_ALIGN_M1 (((size_t)(ARENA_AMALLOC_ALIGNMENT)) - 1) |
46 |
#define ARENA_ALIGN_MASK (~((size_t)ARENA_ALIGN_M1)) |
|
47 |
#define ARENA_ALIGN(x) ((((size_t)(x)) + ARENA_ALIGN_M1) & ARENA_ALIGN_MASK) |
|
48 |
||
14083
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
49 |
class AllocFailStrategy { |
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
50 |
public: |
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
51 |
enum AllocFailEnum { EXIT_OOM, RETURN_NULL }; |
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
52 |
}; |
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
53 |
typedef AllocFailStrategy::AllocFailEnum AllocFailType; |
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
54 |
|
1 | 55 |
// All classes in the virtual machine must be subclassed |
56 |
// by one of the following allocation classes: |
|
57 |
// |
|
58 |
// For objects allocated in the resource area (see resourceArea.hpp). |
|
59 |
// - ResourceObj |
|
60 |
// |
|
61 |
// For objects allocated in the C-heap (managed by: free & malloc). |
|
62 |
// - CHeapObj |
|
63 |
// |
|
64 |
// For objects allocated on the stack. |
|
65 |
// - StackObj |
|
66 |
// |
|
67 |
// For embedded objects. |
|
68 |
// - ValueObj |
|
69 |
// |
|
70 |
// For classes used as name spaces. |
|
71 |
// - AllStatic |
|
72 |
// |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
73 |
// For classes in Metaspace (class data) |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
74 |
// - MetaspaceObj |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
75 |
// |
1 | 76 |
// The printable subclasses are used for debugging and define virtual |
77 |
// member functions for printing. Classes that avoid allocating the |
|
78 |
// vtbl entries in the objects should therefore not be the printable |
|
79 |
// subclasses. |
|
80 |
// |
|
81 |
// The following macros and function should be used to allocate memory |
|
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
82 |
// directly in the resource area or in the C-heap, The _OBJ variants |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
83 |
// of the NEW/FREE_C_HEAP macros are used for alloc/dealloc simple |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
84 |
// objects which are not inherited from CHeapObj, note constructor and |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
85 |
// destructor are not called. The preferable way to allocate objects |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
86 |
// is using the new operator. |
1 | 87 |
// |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
88 |
// WARNING: The array variant must only be used for a homogenous array |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
89 |
// where all objects are of the exact type specified. If subtypes are |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
90 |
// stored in the array then must pay attention to calling destructors |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
91 |
// at needed. |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
92 |
// |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
93 |
// NEW_RESOURCE_ARRAY(type, size) |
1 | 94 |
// NEW_RESOURCE_OBJ(type) |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
95 |
// NEW_C_HEAP_ARRAY(type, size) |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
96 |
// NEW_C_HEAP_OBJ(type, memflags) |
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
26135
diff
changeset
|
97 |
// FREE_C_HEAP_ARRAY(type, old) |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
98 |
// FREE_C_HEAP_OBJ(objname, type, memflags) |
1 | 99 |
// char* AllocateHeap(size_t size, const char* name); |
100 |
// void FreeHeap(void* p); |
|
101 |
// |
|
102 |
// C-heap allocation can be traced using +PrintHeapAllocation. |
|
103 |
// malloc and free should therefore never called directly. |
|
104 |
||
105 |
// Base class for objects allocated in the C-heap. |
|
106 |
||
107 |
// In non product mode we introduce a super class for all allocation classes |
|
108 |
// that supports printing. |
|
109 |
// We avoid the superclass in product mode since some C++ compilers add |
|
110 |
// a word overhead for empty super classes. |
|
111 |
||
112 |
#ifdef PRODUCT |
|
113 |
#define ALLOCATION_SUPER_CLASS_SPEC |
|
114 |
#else |
|
115 |
#define ALLOCATION_SUPER_CLASS_SPEC : public AllocatedObj |
|
116 |
class AllocatedObj { |
|
117 |
public: |
|
118 |
// Printing support |
|
119 |
void print() const; |
|
120 |
void print_value() const; |
|
121 |
||
122 |
virtual void print_on(outputStream* st) const; |
|
123 |
virtual void print_value_on(outputStream* st) const; |
|
124 |
}; |
|
125 |
#endif |
|
126 |
||
13195 | 127 |
|
128 |
/* |
|
25946 | 129 |
* Memory types |
13195 | 130 |
*/ |
131 |
enum MemoryType { |
|
132 |
// Memory type by sub systems. It occupies lower byte. |
|
25946 | 133 |
mtJavaHeap = 0x00, // Java heap |
134 |
mtClass = 0x01, // memory class for Java classes |
|
135 |
mtThread = 0x02, // memory for thread objects |
|
136 |
mtThreadStack = 0x03, |
|
137 |
mtCode = 0x04, // memory for generated code |
|
138 |
mtGC = 0x05, // memory for GC |
|
139 |
mtCompiler = 0x06, // memory for compiler |
|
140 |
mtInternal = 0x07, // memory used by VM, but does not belong to |
|
13195 | 141 |
// any of above categories, and not used for |
142 |
// native memory tracking |
|
25946 | 143 |
mtOther = 0x08, // memory not used by VM |
144 |
mtSymbol = 0x09, // symbol |
|
145 |
mtNMT = 0x0A, // memory used by native memory tracking |
|
146 |
mtClassShared = 0x0B, // class data sharing |
|
147 |
mtChunk = 0x0C, // chunk that holds content of arenas |
|
148 |
mtTest = 0x0D, // Test type for verifying NMT |
|
149 |
mtTracing = 0x0E, // memory used for Tracing |
|
33097 | 150 |
mtLogging = 0x0F, // memory for logging |
37491
edf4cc53f5a3
8153039: Command line processing should use mtCommand or mtArguments rather than mtInternal for NMT
gziemski
parents:
37096
diff
changeset
|
151 |
mtArguments = 0x10, // memory for argument processing |
38733 | 152 |
mtModule = 0x11, // memory for module processing |
153 |
mtNone = 0x12, // undefined |
|
154 |
mt_number_of_types = 0x13 // number of memory types (mtDontTrack |
|
14120
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
14083
diff
changeset
|
155 |
// is not included as validate type) |
13195 | 156 |
}; |
157 |
||
25946 | 158 |
typedef MemoryType MEMFLAGS; |
13195 | 159 |
|
160 |
||
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
161 |
#if INCLUDE_NMT |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
162 |
|
13195 | 163 |
extern bool NMT_track_callsite; |
164 |
||
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
165 |
#else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
166 |
|
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
167 |
const bool NMT_track_callsite = false; |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
168 |
|
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
169 |
#endif // INCLUDE_NMT |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
170 |
|
25946 | 171 |
class NativeCallStack; |
13195 | 172 |
|
173 |
||
174 |
template <MEMFLAGS F> class CHeapObj ALLOCATION_SUPER_CLASS_SPEC { |
|
1 | 175 |
public: |
37092
0e56e3c9d545
8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents:
37057
diff
changeset
|
176 |
NOINLINE void* operator new(size_t size, const NativeCallStack& stack) throw(); |
0e56e3c9d545
8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents:
37057
diff
changeset
|
177 |
NOINLINE void* operator new(size_t size) throw(); |
0e56e3c9d545
8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents:
37057
diff
changeset
|
178 |
NOINLINE void* operator new (size_t size, const std::nothrow_t& nothrow_constant, |
25946 | 179 |
const NativeCallStack& stack) throw(); |
37092
0e56e3c9d545
8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents:
37057
diff
changeset
|
180 |
NOINLINE void* operator new (size_t size, const std::nothrow_t& nothrow_constant) |
25946 | 181 |
throw(); |
37092
0e56e3c9d545
8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents:
37057
diff
changeset
|
182 |
NOINLINE void* operator new [](size_t size, const NativeCallStack& stack) throw(); |
0e56e3c9d545
8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents:
37057
diff
changeset
|
183 |
NOINLINE void* operator new [](size_t size) throw(); |
0e56e3c9d545
8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents:
37057
diff
changeset
|
184 |
NOINLINE void* operator new [](size_t size, const std::nothrow_t& nothrow_constant, |
25946 | 185 |
const NativeCallStack& stack) throw(); |
37092
0e56e3c9d545
8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents:
37057
diff
changeset
|
186 |
NOINLINE void* operator new [](size_t size, const std::nothrow_t& nothrow_constant) |
25946 | 187 |
throw(); |
1 | 188 |
void operator delete(void* p); |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
189 |
void operator delete [] (void* p); |
1 | 190 |
}; |
191 |
||
192 |
// Base class for objects allocated on the stack only. |
|
193 |
// Calling new or delete will result in fatal error. |
|
194 |
||
195 |
class StackObj ALLOCATION_SUPER_CLASS_SPEC { |
|
14841
d069f5506f71
8004845: Catch incorrect usage of new and delete during compile time for value objects and stack objects
brutisso
parents:
14579
diff
changeset
|
196 |
private: |
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
197 |
void* operator new(size_t size) throw(); |
22838 | 198 |
void* operator new [](size_t size) throw(); |
22827 | 199 |
#ifdef __IBMCPP__ |
200 |
public: |
|
201 |
#endif |
|
1 | 202 |
void operator delete(void* p); |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
203 |
void operator delete [](void* p); |
1 | 204 |
}; |
205 |
||
206 |
// Base class for objects used as value objects. |
|
207 |
// Calling new or delete will result in fatal error. |
|
208 |
// |
|
209 |
// Portability note: Certain compilers (e.g. gcc) will |
|
210 |
// always make classes bigger if it has a superclass, even |
|
211 |
// if the superclass does not have any virtual methods or |
|
212 |
// instance fields. The HotSpot implementation relies on this |
|
213 |
// not to happen. So never make a ValueObj class a direct subclass |
|
214 |
// of this object, but use the VALUE_OBJ_CLASS_SPEC class instead, e.g., |
|
215 |
// like this: |
|
216 |
// |
|
217 |
// class A VALUE_OBJ_CLASS_SPEC { |
|
218 |
// ... |
|
219 |
// } |
|
220 |
// |
|
221 |
// With gcc and possible other compilers the VALUE_OBJ_CLASS_SPEC can |
|
222 |
// be defined as a an empty string "". |
|
223 |
// |
|
224 |
class _ValueObj { |
|
14841
d069f5506f71
8004845: Catch incorrect usage of new and delete during compile time for value objects and stack objects
brutisso
parents:
14579
diff
changeset
|
225 |
private: |
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
226 |
void* operator new(size_t size) throw(); |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
227 |
void operator delete(void* p); |
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
228 |
void* operator new [](size_t size) throw(); |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
229 |
void operator delete [](void* p); |
1 | 230 |
}; |
231 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
232 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
233 |
// Base class for objects stored in Metaspace. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
234 |
// Calling delete will result in fatal error. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
235 |
// |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
236 |
// Do not inherit from something with a vptr because this class does |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
237 |
// not introduce one. This class is used to allocate both shared read-only |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
238 |
// and shared read-write classes. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
239 |
// |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
240 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
241 |
class ClassLoaderData; |
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46704
diff
changeset
|
242 |
class MetaspaceClosure; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
243 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
244 |
class MetaspaceObj { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
245 |
public: |
22201
9c2ccfa3a5fe
8029178: Parallel class loading test anonymous-simple gets SIGSEGV in Metaspace::contains
coleenp
parents:
19696
diff
changeset
|
246 |
bool is_metaspace_object() const; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
247 |
bool is_shared() const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
248 |
void print_address_on(outputStream* st) const; // nonvirtual address printing |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
249 |
|
17858
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
250 |
#define METASPACE_OBJ_TYPES_DO(f) \ |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
251 |
f(Unknown) \ |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
252 |
f(Class) \ |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
253 |
f(Symbol) \ |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
254 |
f(TypeArrayU1) \ |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
255 |
f(TypeArrayU2) \ |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
256 |
f(TypeArrayU4) \ |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
257 |
f(TypeArrayU8) \ |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
258 |
f(TypeArrayOther) \ |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
259 |
f(Method) \ |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
260 |
f(ConstMethod) \ |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
261 |
f(MethodData) \ |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
262 |
f(ConstantPool) \ |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
263 |
f(ConstantPoolCache) \ |
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46704
diff
changeset
|
264 |
f(Annotations) \ |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46704
diff
changeset
|
265 |
f(MethodCounters) |
17858
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
266 |
|
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
267 |
#define METASPACE_OBJ_TYPE_DECLARE(name) name ## Type, |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
268 |
#define METASPACE_OBJ_TYPE_NAME_CASE(name) case name ## Type: return #name; |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
269 |
|
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
270 |
enum Type { |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
271 |
// Types are MetaspaceObj::ClassType, MetaspaceObj::SymbolType, etc |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
272 |
METASPACE_OBJ_TYPES_DO(METASPACE_OBJ_TYPE_DECLARE) |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
273 |
_number_of_types |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
274 |
}; |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
275 |
|
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
276 |
static const char * type_name(Type type) { |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
277 |
switch(type) { |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
278 |
METASPACE_OBJ_TYPES_DO(METASPACE_OBJ_TYPE_NAME_CASE) |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
279 |
default: |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
280 |
ShouldNotReachHere(); |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
281 |
return NULL; |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
282 |
} |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
283 |
} |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
284 |
|
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
285 |
static MetaspaceObj::Type array_type(size_t elem_size) { |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
286 |
switch (elem_size) { |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
287 |
case 1: return TypeArrayU1Type; |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
288 |
case 2: return TypeArrayU2Type; |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
289 |
case 4: return TypeArrayU4Type; |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
290 |
case 8: return TypeArrayU8Type; |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
291 |
default: |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
292 |
return TypeArrayOtherType; |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
293 |
} |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
294 |
} |
c292f8791cca
8014912: Restore PrintSharedSpaces functionality after NPG
iklam
parents:
17376
diff
changeset
|
295 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
296 |
void* operator new(size_t size, ClassLoaderData* loader_data, |
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46704
diff
changeset
|
297 |
size_t word_size, |
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
298 |
Type type, Thread* thread) throw(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
299 |
// can't use TRAPS from this header file. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
300 |
void operator delete(void* p) { ShouldNotCallThis(); } |
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46704
diff
changeset
|
301 |
|
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46704
diff
changeset
|
302 |
// Declare a *static* method with the same signature in any subclass of MetaspaceObj |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46704
diff
changeset
|
303 |
// that should be read-only by default. See symbol.hpp for an example. This function |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46704
diff
changeset
|
304 |
// is used by the templates in metaspaceClosure.hpp |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46704
diff
changeset
|
305 |
static bool is_read_only_by_default() { return false; } |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
306 |
}; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
307 |
|
1 | 308 |
// Base class for classes that constitute name spaces. |
309 |
||
310 |
class AllStatic { |
|
311 |
public: |
|
312 |
AllStatic() { ShouldNotCallThis(); } |
|
313 |
~AllStatic() { ShouldNotCallThis(); } |
|
314 |
}; |
|
315 |
||
316 |
||
317 |
//------------------------------Chunk------------------------------------------ |
|
318 |
// Linked list of raw memory chunks |
|
13195 | 319 |
class Chunk: CHeapObj<mtChunk> { |
10547 | 320 |
friend class VMStructs; |
321 |
||
1 | 322 |
protected: |
323 |
Chunk* _next; // Next Chunk in list |
|
324 |
const size_t _len; // Size of this Chunk |
|
325 |
public: |
|
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
326 |
void* operator new(size_t size, AllocFailType alloc_failmode, size_t length) throw(); |
1 | 327 |
void operator delete(void* p); |
328 |
Chunk(size_t length); |
|
329 |
||
330 |
enum { |
|
331 |
// default sizes; make them slightly smaller than 2**k to guard against |
|
332 |
// buddy-system style malloc implementations |
|
333 |
#ifdef _LP64 |
|
334 |
slack = 40, // [RGV] Not sure if this is right, but make it |
|
335 |
// a multiple of 8. |
|
336 |
#else |
|
337 |
slack = 20, // suspected sizeof(Chunk) + internal malloc headers |
|
338 |
#endif |
|
339 |
||
18686 | 340 |
tiny_size = 256 - slack, // Size of first chunk (tiny) |
341 |
init_size = 1*K - slack, // Size of first chunk (normal aka small) |
|
1 | 342 |
medium_size= 10*K - slack, // Size of medium-sized chunk |
343 |
size = 32*K - slack, // Default size of an Arena chunk (following the first) |
|
344 |
non_pool_size = init_size + 32 // An initial size which is not one of above |
|
345 |
}; |
|
346 |
||
347 |
void chop(); // Chop this chunk |
|
348 |
void next_chop(); // Chop next chunk |
|
349 |
static size_t aligned_overhead_size(void) { return ARENA_ALIGN(sizeof(Chunk)); } |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
350 |
static size_t aligned_overhead_size(size_t byte_size) { return ARENA_ALIGN(byte_size); } |
1 | 351 |
|
352 |
size_t length() const { return _len; } |
|
353 |
Chunk* next() const { return _next; } |
|
354 |
void set_next(Chunk* n) { _next = n; } |
|
355 |
// Boundaries of data area (possibly unused) |
|
356 |
char* bottom() const { return ((char*) this) + aligned_overhead_size(); } |
|
357 |
char* top() const { return bottom() + _len; } |
|
358 |
bool contains(char* p) const { return bottom() <= p && p <= top(); } |
|
359 |
||
360 |
// Start the chunk_pool cleaner task |
|
361 |
static void start_chunk_pool_cleaner_task(); |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
362 |
|
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
363 |
static void clean_chunk_pool(); |
1 | 364 |
}; |
365 |
||
366 |
//------------------------------Arena------------------------------------------ |
|
367 |
// Fast allocation of memory |
|
25946 | 368 |
class Arena : public CHeapObj<mtNone> { |
1 | 369 |
protected: |
370 |
friend class ResourceMark; |
|
371 |
friend class HandleMark; |
|
372 |
friend class NoHandleMark; |
|
10547 | 373 |
friend class VMStructs; |
374 |
||
25946 | 375 |
MEMFLAGS _flags; // Memory tracking flags |
376 |
||
1 | 377 |
Chunk *_first; // First chunk |
378 |
Chunk *_chunk; // current chunk |
|
379 |
char *_hwm, *_max; // High water mark and max in current chunk |
|
14083
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
380 |
// Get a new Chunk of at least size x |
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
381 |
void* grow(size_t x, AllocFailType alloc_failmode = AllocFailStrategy::EXIT_OOM); |
13195 | 382 |
size_t _size_in_bytes; // Size of arena (used for native memory tracking) |
383 |
||
8320 | 384 |
NOT_PRODUCT(static julong _bytes_allocated;) // total #bytes allocated since start |
1 | 385 |
friend class AllocStats; |
386 |
debug_only(void* malloc(size_t size);) |
|
387 |
debug_only(void* internal_malloc_4(size_t x);) |
|
8320 | 388 |
NOT_PRODUCT(void inc_bytes_allocated(size_t x);) |
8481
42a79b703814
6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents:
8320
diff
changeset
|
389 |
|
42a79b703814
6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents:
8320
diff
changeset
|
390 |
void signal_out_of_memory(size_t request, const char* whence) const; |
42a79b703814
6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents:
8320
diff
changeset
|
391 |
|
18055
ba8c01e0d016
7158805: Better rewriting of nested subroutine calls
hseigel
parents:
16682
diff
changeset
|
392 |
bool check_for_overflow(size_t request, const char* whence, |
ba8c01e0d016
7158805: Better rewriting of nested subroutine calls
hseigel
parents:
16682
diff
changeset
|
393 |
AllocFailType alloc_failmode = AllocFailStrategy::EXIT_OOM) const { |
8481
42a79b703814
6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents:
8320
diff
changeset
|
394 |
if (UINTPTR_MAX - request < (uintptr_t)_hwm) { |
18055
ba8c01e0d016
7158805: Better rewriting of nested subroutine calls
hseigel
parents:
16682
diff
changeset
|
395 |
if (alloc_failmode == AllocFailStrategy::RETURN_NULL) { |
ba8c01e0d016
7158805: Better rewriting of nested subroutine calls
hseigel
parents:
16682
diff
changeset
|
396 |
return false; |
ba8c01e0d016
7158805: Better rewriting of nested subroutine calls
hseigel
parents:
16682
diff
changeset
|
397 |
} |
8481
42a79b703814
6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents:
8320
diff
changeset
|
398 |
signal_out_of_memory(request, whence); |
42a79b703814
6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents:
8320
diff
changeset
|
399 |
} |
18055
ba8c01e0d016
7158805: Better rewriting of nested subroutine calls
hseigel
parents:
16682
diff
changeset
|
400 |
return true; |
8481
42a79b703814
6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents:
8320
diff
changeset
|
401 |
} |
42a79b703814
6878713: Verifier heap corruption, relating to backward jsrs
kamg
parents:
8320
diff
changeset
|
402 |
|
1 | 403 |
public: |
25946 | 404 |
Arena(MEMFLAGS memflag); |
405 |
Arena(MEMFLAGS memflag, size_t init_size); |
|
1 | 406 |
~Arena(); |
407 |
void destruct_contents(); |
|
408 |
char* hwm() const { return _hwm; } |
|
409 |
||
13195 | 410 |
// new operators |
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
411 |
void* operator new (size_t size) throw(); |
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
412 |
void* operator new (size_t size, const std::nothrow_t& nothrow_constant) throw(); |
13195 | 413 |
|
414 |
// dynamic memory type tagging |
|
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
415 |
void* operator new(size_t size, MEMFLAGS flags) throw(); |
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
416 |
void* operator new(size_t size, const std::nothrow_t& nothrow_constant, MEMFLAGS flags) throw(); |
13195 | 417 |
void operator delete(void* p); |
418 |
||
1 | 419 |
// Fast allocate in the arena. Common case is: pointer test + increment. |
14083
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
420 |
void* Amalloc(size_t x, AllocFailType alloc_failmode = AllocFailStrategy::EXIT_OOM) { |
1 | 421 |
assert(is_power_of_2(ARENA_AMALLOC_ALIGNMENT) , "should be a power of 2"); |
422 |
x = ARENA_ALIGN(x); |
|
423 |
debug_only(if (UseMallocOnly) return malloc(x);) |
|
18055
ba8c01e0d016
7158805: Better rewriting of nested subroutine calls
hseigel
parents:
16682
diff
changeset
|
424 |
if (!check_for_overflow(x, "Arena::Amalloc", alloc_failmode)) |
ba8c01e0d016
7158805: Better rewriting of nested subroutine calls
hseigel
parents:
16682
diff
changeset
|
425 |
return NULL; |
8320 | 426 |
NOT_PRODUCT(inc_bytes_allocated(x);) |
1 | 427 |
if (_hwm + x > _max) { |
14083
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
428 |
return grow(x, alloc_failmode); |
1 | 429 |
} else { |
430 |
char *old = _hwm; |
|
431 |
_hwm += x; |
|
432 |
return old; |
|
433 |
} |
|
434 |
} |
|
435 |
// Further assume size is padded out to words |
|
14083
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
436 |
void *Amalloc_4(size_t x, AllocFailType alloc_failmode = AllocFailStrategy::EXIT_OOM) { |
1 | 437 |
assert( (x&(sizeof(char*)-1)) == 0, "misaligned size" ); |
438 |
debug_only(if (UseMallocOnly) return malloc(x);) |
|
18055
ba8c01e0d016
7158805: Better rewriting of nested subroutine calls
hseigel
parents:
16682
diff
changeset
|
439 |
if (!check_for_overflow(x, "Arena::Amalloc_4", alloc_failmode)) |
ba8c01e0d016
7158805: Better rewriting of nested subroutine calls
hseigel
parents:
16682
diff
changeset
|
440 |
return NULL; |
8320 | 441 |
NOT_PRODUCT(inc_bytes_allocated(x);) |
1 | 442 |
if (_hwm + x > _max) { |
14083
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
443 |
return grow(x, alloc_failmode); |
1 | 444 |
} else { |
445 |
char *old = _hwm; |
|
446 |
_hwm += x; |
|
447 |
return old; |
|
448 |
} |
|
449 |
} |
|
450 |
||
451 |
// Allocate with 'double' alignment. It is 8 bytes on sparc. |
|
452 |
// In other cases Amalloc_D() should be the same as Amalloc_4(). |
|
14083
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
453 |
void* Amalloc_D(size_t x, AllocFailType alloc_failmode = AllocFailStrategy::EXIT_OOM) { |
1 | 454 |
assert( (x&(sizeof(char*)-1)) == 0, "misaligned size" ); |
455 |
debug_only(if (UseMallocOnly) return malloc(x);) |
|
456 |
#if defined(SPARC) && !defined(_LP64) |
|
457 |
#define DALIGN_M1 7 |
|
458 |
size_t delta = (((size_t)_hwm + DALIGN_M1) & ~DALIGN_M1) - (size_t)_hwm; |
|
459 |
x += delta; |
|
460 |
#endif |
|
18055
ba8c01e0d016
7158805: Better rewriting of nested subroutine calls
hseigel
parents:
16682
diff
changeset
|
461 |
if (!check_for_overflow(x, "Arena::Amalloc_D", alloc_failmode)) |
ba8c01e0d016
7158805: Better rewriting of nested subroutine calls
hseigel
parents:
16682
diff
changeset
|
462 |
return NULL; |
8320 | 463 |
NOT_PRODUCT(inc_bytes_allocated(x);) |
1 | 464 |
if (_hwm + x > _max) { |
14083
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
465 |
return grow(x, alloc_failmode); // grow() returns a result aligned >= 8 bytes. |
1 | 466 |
} else { |
467 |
char *old = _hwm; |
|
468 |
_hwm += x; |
|
469 |
#if defined(SPARC) && !defined(_LP64) |
|
470 |
old += delta; // align to 8-bytes |
|
471 |
#endif |
|
472 |
return old; |
|
473 |
} |
|
474 |
} |
|
475 |
||
476 |
// Fast delete in area. Common case is: NOP (except for storage reclaimed) |
|
477 |
void Afree(void *ptr, size_t size) { |
|
478 |
#ifdef ASSERT |
|
479 |
if (ZapResourceArea) memset(ptr, badResourceValue, size); // zap freed memory |
|
480 |
if (UseMallocOnly) return; |
|
481 |
#endif |
|
482 |
if (((char*)ptr) + size == _hwm) _hwm = (char*)ptr; |
|
483 |
} |
|
484 |
||
14083
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
485 |
void *Arealloc( void *old_ptr, size_t old_size, size_t new_size, |
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
486 |
AllocFailType alloc_failmode = AllocFailStrategy::EXIT_OOM); |
1 | 487 |
|
488 |
// Move contents of this arena into an empty arena |
|
489 |
Arena *move_contents(Arena *empty_arena); |
|
490 |
||
491 |
// Determine if pointer belongs to this Arena or not. |
|
492 |
bool contains( const void *ptr ) const; |
|
493 |
||
494 |
// Total of all chunks in use (not thread-safe) |
|
495 |
size_t used() const; |
|
496 |
||
497 |
// Total # of bytes used |
|
13195 | 498 |
size_t size_in_bytes() const { return _size_in_bytes; }; |
499 |
void set_size_in_bytes(size_t size); |
|
500 |
||
1 | 501 |
static void free_malloced_objects(Chunk* chunk, char* hwm, char* max, char* hwm2) PRODUCT_RETURN; |
502 |
static void free_all(char** start, char** end) PRODUCT_RETURN; |
|
503 |
||
504 |
private: |
|
505 |
// Reset this Arena to empty, access will trigger grow if necessary |
|
506 |
void reset(void) { |
|
507 |
_first = _chunk = NULL; |
|
508 |
_hwm = _max = NULL; |
|
13195 | 509 |
set_size_in_bytes(0); |
1 | 510 |
} |
511 |
}; |
|
512 |
||
513 |
// One of the following macros must be used when allocating |
|
514 |
// an array or object from an arena |
|
6762
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
6184
diff
changeset
|
515 |
#define NEW_ARENA_ARRAY(arena, type, size) \ |
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
6184
diff
changeset
|
516 |
(type*) (arena)->Amalloc((size) * sizeof(type)) |
1 | 517 |
|
6762
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
6184
diff
changeset
|
518 |
#define REALLOC_ARENA_ARRAY(arena, type, old, old_size, new_size) \ |
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
6184
diff
changeset
|
519 |
(type*) (arena)->Arealloc((char*)(old), (old_size) * sizeof(type), \ |
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
6184
diff
changeset
|
520 |
(new_size) * sizeof(type) ) |
1 | 521 |
|
6762
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
6184
diff
changeset
|
522 |
#define FREE_ARENA_ARRAY(arena, type, old, size) \ |
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
6184
diff
changeset
|
523 |
(arena)->Afree((char*)(old), (size) * sizeof(type)) |
1 | 524 |
|
6762
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
6184
diff
changeset
|
525 |
#define NEW_ARENA_OBJ(arena, type) \ |
1 | 526 |
NEW_ARENA_ARRAY(arena, type, 1) |
527 |
||
528 |
||
529 |
//%note allocation_1 |
|
14083
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
530 |
extern char* resource_allocate_bytes(size_t size, |
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
531 |
AllocFailType alloc_failmode = AllocFailStrategy::EXIT_OOM); |
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
532 |
extern char* resource_allocate_bytes(Thread* thread, size_t size, |
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
533 |
AllocFailType alloc_failmode = AllocFailStrategy::EXIT_OOM); |
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
534 |
extern char* resource_reallocate_bytes( char *old, size_t old_size, size_t new_size, |
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
535 |
AllocFailType alloc_failmode = AllocFailStrategy::EXIT_OOM); |
1 | 536 |
extern void resource_free_bytes( char *old, size_t size ); |
537 |
||
538 |
//---------------------------------------------------------------------- |
|
539 |
// Base class for objects allocated in the resource area per default. |
|
540 |
// Optionally, objects may be allocated on the C heap with |
|
541 |
// new(ResourceObj::C_HEAP) Foo(...) or in an Arena with new (&arena) |
|
542 |
// ResourceObj's can be allocated within other objects, but don't use |
|
543 |
// new or delete (allocation_type is unknown). If new is used to allocate, |
|
544 |
// use delete to deallocate. |
|
545 |
class ResourceObj ALLOCATION_SUPER_CLASS_SPEC { |
|
546 |
public: |
|
6180 | 547 |
enum allocation_type { STACK_OR_EMBEDDED = 0, RESOURCE_AREA, C_HEAP, ARENA, allocation_mask = 0x3 }; |
6183
4c74cfe14f20
6975078: assert(allocated_on_res_area() || allocated_on_C_heap() || allocated_on_arena()
kvn
parents:
6180
diff
changeset
|
548 |
static void set_allocation_type(address res, allocation_type type) NOT_DEBUG_RETURN; |
1 | 549 |
#ifdef ASSERT |
550 |
private: |
|
6180 | 551 |
// When this object is allocated on stack the new() operator is not |
552 |
// called but garbage on stack may look like a valid allocation_type. |
|
553 |
// Store negated 'this' pointer when new() is called to distinguish cases. |
|
7440
eabaf35910a1
6993125: runThese crashes with assert(Thread::current()->on_local_stack((address)this))
kvn
parents:
7397
diff
changeset
|
554 |
// Use second array's element for verification value to distinguish garbage. |
eabaf35910a1
6993125: runThese crashes with assert(Thread::current()->on_local_stack((address)this))
kvn
parents:
7397
diff
changeset
|
555 |
uintptr_t _allocation_t[2]; |
eabaf35910a1
6993125: runThese crashes with assert(Thread::current()->on_local_stack((address)this))
kvn
parents:
7397
diff
changeset
|
556 |
bool is_type_set() const; |
1 | 557 |
public: |
6183
4c74cfe14f20
6975078: assert(allocated_on_res_area() || allocated_on_C_heap() || allocated_on_arena()
kvn
parents:
6180
diff
changeset
|
558 |
allocation_type get_allocation_type() const; |
4c74cfe14f20
6975078: assert(allocated_on_res_area() || allocated_on_C_heap() || allocated_on_arena()
kvn
parents:
6180
diff
changeset
|
559 |
bool allocated_on_stack() const { return get_allocation_type() == STACK_OR_EMBEDDED; } |
4c74cfe14f20
6975078: assert(allocated_on_res_area() || allocated_on_C_heap() || allocated_on_arena()
kvn
parents:
6180
diff
changeset
|
560 |
bool allocated_on_res_area() const { return get_allocation_type() == RESOURCE_AREA; } |
4c74cfe14f20
6975078: assert(allocated_on_res_area() || allocated_on_C_heap() || allocated_on_arena()
kvn
parents:
6180
diff
changeset
|
561 |
bool allocated_on_C_heap() const { return get_allocation_type() == C_HEAP; } |
4c74cfe14f20
6975078: assert(allocated_on_res_area() || allocated_on_C_heap() || allocated_on_arena()
kvn
parents:
6180
diff
changeset
|
562 |
bool allocated_on_arena() const { return get_allocation_type() == ARENA; } |
22551 | 563 |
ResourceObj(); // default constructor |
564 |
ResourceObj(const ResourceObj& r); // default copy constructor |
|
6180 | 565 |
ResourceObj& operator=(const ResourceObj& r); // default copy assignment |
566 |
~ResourceObj(); |
|
1 | 567 |
#endif // ASSERT |
568 |
||
569 |
public: |
|
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
570 |
void* operator new(size_t size, allocation_type type, MEMFLAGS flags) throw(); |
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
571 |
void* operator new [](size_t size, allocation_type type, MEMFLAGS flags) throw(); |
14083
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
572 |
void* operator new(size_t size, const std::nothrow_t& nothrow_constant, |
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
573 |
allocation_type type, MEMFLAGS flags) throw(); |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
574 |
void* operator new [](size_t size, const std::nothrow_t& nothrow_constant, |
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
575 |
allocation_type type, MEMFLAGS flags) throw(); |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
576 |
|
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
577 |
void* operator new(size_t size, Arena *arena) throw() { |
1 | 578 |
address res = (address)arena->Amalloc(size); |
6180 | 579 |
DEBUG_ONLY(set_allocation_type(res, ARENA);) |
1 | 580 |
return res; |
581 |
} |
|
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
582 |
|
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
583 |
void* operator new [](size_t size, Arena *arena) throw() { |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
584 |
address res = (address)arena->Amalloc(size); |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
585 |
DEBUG_ONLY(set_allocation_type(res, ARENA);) |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
586 |
return res; |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
587 |
} |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
588 |
|
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
589 |
void* operator new(size_t size) throw() { |
1 | 590 |
address res = (address)resource_allocate_bytes(size); |
6180 | 591 |
DEBUG_ONLY(set_allocation_type(res, RESOURCE_AREA);) |
1 | 592 |
return res; |
593 |
} |
|
14083
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
594 |
|
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
595 |
void* operator new(size_t size, const std::nothrow_t& nothrow_constant) throw() { |
14083
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
596 |
address res = (address)resource_allocate_bytes(size, AllocFailStrategy::RETURN_NULL); |
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
597 |
DEBUG_ONLY(if (res != NULL) set_allocation_type(res, RESOURCE_AREA);) |
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
598 |
return res; |
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
599 |
} |
103054a71a30
8000617: It should be possible to allocate memory without the VM dying.
nloodin
parents:
13975
diff
changeset
|
600 |
|
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
601 |
void* operator new [](size_t size) throw() { |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
602 |
address res = (address)resource_allocate_bytes(size); |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
603 |
DEBUG_ONLY(set_allocation_type(res, RESOURCE_AREA);) |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
604 |
return res; |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
605 |
} |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
606 |
|
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
19545
diff
changeset
|
607 |
void* operator new [](size_t size, const std::nothrow_t& nothrow_constant) throw() { |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
608 |
address res = (address)resource_allocate_bytes(size, AllocFailStrategy::RETURN_NULL); |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
609 |
DEBUG_ONLY(if (res != NULL) set_allocation_type(res, RESOURCE_AREA);) |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
610 |
return res; |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
611 |
} |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
612 |
|
1 | 613 |
void operator delete(void* p); |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
614 |
void operator delete [](void* p); |
1 | 615 |
}; |
616 |
||
617 |
// One of the following macros must be used when allocating an array |
|
618 |
// or object to determine whether it should reside in the C heap on in |
|
619 |
// the resource area. |
|
620 |
||
621 |
#define NEW_RESOURCE_ARRAY(type, size)\ |
|
622 |
(type*) resource_allocate_bytes((size) * sizeof(type)) |
|
623 |
||
17081
cf52c2bc3f8c
8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents:
17032
diff
changeset
|
624 |
#define NEW_RESOURCE_ARRAY_RETURN_NULL(type, size)\ |
cf52c2bc3f8c
8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents:
17032
diff
changeset
|
625 |
(type*) resource_allocate_bytes((size) * sizeof(type), AllocFailStrategy::RETURN_NULL) |
cf52c2bc3f8c
8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents:
17032
diff
changeset
|
626 |
|
1 | 627 |
#define NEW_RESOURCE_ARRAY_IN_THREAD(thread, type, size)\ |
628 |
(type*) resource_allocate_bytes(thread, (size) * sizeof(type)) |
|
629 |
||
18083
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
630 |
#define NEW_RESOURCE_ARRAY_IN_THREAD_RETURN_NULL(thread, type, size)\ |
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
631 |
(type*) resource_allocate_bytes(thread, (size) * sizeof(type), AllocFailStrategy::RETURN_NULL) |
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
632 |
|
1 | 633 |
#define REALLOC_RESOURCE_ARRAY(type, old, old_size, new_size)\ |
18083
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
634 |
(type*) resource_reallocate_bytes((char*)(old), (old_size) * sizeof(type), (new_size) * sizeof(type)) |
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
635 |
|
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
636 |
#define REALLOC_RESOURCE_ARRAY_RETURN_NULL(type, old, old_size, new_size)\ |
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
637 |
(type*) resource_reallocate_bytes((char*)(old), (old_size) * sizeof(type),\ |
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
638 |
(new_size) * sizeof(type), AllocFailStrategy::RETURN_NULL) |
1 | 639 |
|
640 |
#define FREE_RESOURCE_ARRAY(type, old, size)\ |
|
641 |
resource_free_bytes((char*)(old), (size) * sizeof(type)) |
|
642 |
||
643 |
#define FREE_FAST(old)\ |
|
644 |
/* nop */ |
|
645 |
||
646 |
#define NEW_RESOURCE_OBJ(type)\ |
|
647 |
NEW_RESOURCE_ARRAY(type, 1) |
|
648 |
||
18083
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
649 |
#define NEW_RESOURCE_OBJ_RETURN_NULL(type)\ |
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
650 |
NEW_RESOURCE_ARRAY_RETURN_NULL(type, 1) |
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
651 |
|
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
652 |
#define NEW_C_HEAP_ARRAY3(type, size, memflags, pc, allocfail)\ |
19545
409c50cf1e5d
8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents:
18686
diff
changeset
|
653 |
(type*) AllocateHeap((size) * sizeof(type), memflags, pc, allocfail) |
18083
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
654 |
|
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
655 |
#define NEW_C_HEAP_ARRAY2(type, size, memflags, pc)\ |
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
656 |
(type*) (AllocateHeap((size) * sizeof(type), memflags, pc)) |
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
657 |
|
13195 | 658 |
#define NEW_C_HEAP_ARRAY(type, size, memflags)\ |
659 |
(type*) (AllocateHeap((size) * sizeof(type), memflags)) |
|
1 | 660 |
|
18083
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
661 |
#define NEW_C_HEAP_ARRAY2_RETURN_NULL(type, size, memflags, pc)\ |
19545
409c50cf1e5d
8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents:
18686
diff
changeset
|
662 |
NEW_C_HEAP_ARRAY3(type, (size), memflags, pc, AllocFailStrategy::RETURN_NULL) |
18083
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
663 |
|
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
664 |
#define NEW_C_HEAP_ARRAY_RETURN_NULL(type, size, memflags)\ |
25946 | 665 |
NEW_C_HEAP_ARRAY3(type, (size), memflags, CURRENT_PC, AllocFailStrategy::RETURN_NULL) |
18083
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
666 |
|
13195 | 667 |
#define REALLOC_C_HEAP_ARRAY(type, old, size, memflags)\ |
19545
409c50cf1e5d
8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents:
18686
diff
changeset
|
668 |
(type*) (ReallocateHeap((char*)(old), (size) * sizeof(type), memflags)) |
13195 | 669 |
|
18083
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
670 |
#define REALLOC_C_HEAP_ARRAY_RETURN_NULL(type, old, size, memflags)\ |
19545
409c50cf1e5d
8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents:
18686
diff
changeset
|
671 |
(type*) (ReallocateHeap((char*)(old), (size) * sizeof(type), memflags, AllocFailStrategy::RETURN_NULL)) |
18083
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
672 |
|
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
26135
diff
changeset
|
673 |
#define FREE_C_HEAP_ARRAY(type, old) \ |
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
26135
diff
changeset
|
674 |
FreeHeap((char*)(old)) |
1 | 675 |
|
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
676 |
// allocate type in heap without calling ctor |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
677 |
#define NEW_C_HEAP_OBJ(type, memflags)\ |
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
678 |
NEW_C_HEAP_ARRAY(type, 1, memflags) |
1 | 679 |
|
18083
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
680 |
#define NEW_C_HEAP_OBJ_RETURN_NULL(type, memflags)\ |
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
681 |
NEW_C_HEAP_ARRAY_RETURN_NULL(type, 1, memflags) |
6424d03bb556
8016105: Add complementary RETURN_NULL allocation macros in allocation.hpp
mgronlun
parents:
18025
diff
changeset
|
682 |
|
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17081
diff
changeset
|
683 |
// deallocate obj of type in heap without calling dtor |
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
26135
diff
changeset
|
684 |
#define FREE_C_HEAP_OBJ(objname)\ |
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
26135
diff
changeset
|
685 |
FreeHeap((char*)objname); |
1 | 686 |
|
687 |
// for statistics |
|
688 |
#ifndef PRODUCT |
|
689 |
class AllocStats : StackObj { |
|
8320 | 690 |
julong start_mallocs, start_frees; |
691 |
julong start_malloc_bytes, start_mfree_bytes, start_res_bytes; |
|
1 | 692 |
public: |
693 |
AllocStats(); |
|
694 |
||
8320 | 695 |
julong num_mallocs(); // since creation of receiver |
696 |
julong alloc_bytes(); |
|
697 |
julong num_frees(); |
|
698 |
julong free_bytes(); |
|
699 |
julong resource_bytes(); |
|
1 | 700 |
void print(); |
701 |
}; |
|
702 |
#endif |
|
703 |
||
704 |
||
705 |
//------------------------------ReallocMark--------------------------------- |
|
706 |
// Code which uses REALLOC_RESOURCE_ARRAY should check an associated |
|
707 |
// ReallocMark, which is declared in the same scope as the reallocated |
|
708 |
// pointer. Any operation that could __potentially__ cause a reallocation |
|
709 |
// should check the ReallocMark. |
|
710 |
class ReallocMark: public StackObj { |
|
711 |
protected: |
|
712 |
NOT_PRODUCT(int _nesting;) |
|
713 |
||
714 |
public: |
|
715 |
ReallocMark() PRODUCT_RETURN; |
|
716 |
void check() PRODUCT_RETURN; |
|
717 |
}; |
|
7397 | 718 |
|
16682
4e30a46f6b76
7197666: java -d64 -version core dumps in a box with lots of memory
brutisso
parents:
15452
diff
changeset
|
719 |
// Helper class to allocate arrays that may become large. |
4e30a46f6b76
7197666: java -d64 -version core dumps in a box with lots of memory
brutisso
parents:
15452
diff
changeset
|
720 |
// Uses the OS malloc for allocations smaller than ArrayAllocatorMallocLimit |
4e30a46f6b76
7197666: java -d64 -version core dumps in a box with lots of memory
brutisso
parents:
15452
diff
changeset
|
721 |
// and uses mapped memory for larger allocations. |
4e30a46f6b76
7197666: java -d64 -version core dumps in a box with lots of memory
brutisso
parents:
15452
diff
changeset
|
722 |
// Most OS mallocs do something similar but Solaris malloc does not revert |
4e30a46f6b76
7197666: java -d64 -version core dumps in a box with lots of memory
brutisso
parents:
15452
diff
changeset
|
723 |
// to mapped memory for large allocations. By default ArrayAllocatorMallocLimit |
4e30a46f6b76
7197666: java -d64 -version core dumps in a box with lots of memory
brutisso
parents:
15452
diff
changeset
|
724 |
// is set so that we always use malloc except for Solaris where we set the |
4e30a46f6b76
7197666: java -d64 -version core dumps in a box with lots of memory
brutisso
parents:
15452
diff
changeset
|
725 |
// limit to get mapped memory. |
46704
211b3f6b75ef
8182169: ArrayAllocator should take MEMFLAGS as regular parameter
kbarrett
parents:
46625
diff
changeset
|
726 |
template <class E> |
37057 | 727 |
class ArrayAllocator : public AllStatic { |
728 |
private: |
|
729 |
static bool should_use_malloc(size_t length); |
|
730 |
||
46704
211b3f6b75ef
8182169: ArrayAllocator should take MEMFLAGS as regular parameter
kbarrett
parents:
46625
diff
changeset
|
731 |
static E* allocate_malloc(size_t length, MEMFLAGS flags); |
211b3f6b75ef
8182169: ArrayAllocator should take MEMFLAGS as regular parameter
kbarrett
parents:
46625
diff
changeset
|
732 |
static E* allocate_mmap(size_t length, MEMFLAGS flags); |
23545
2c14fb03a06d
8037959: BitMap::resize frees old map before copying memory if !in_resource_area
mgerdin
parents:
22876
diff
changeset
|
733 |
|
37057 | 734 |
static void free_malloc(E* addr, size_t length); |
735 |
static void free_mmap(E* addr, size_t length); |
|
736 |
||
16682
4e30a46f6b76
7197666: java -d64 -version core dumps in a box with lots of memory
brutisso
parents:
15452
diff
changeset
|
737 |
public: |
46704
211b3f6b75ef
8182169: ArrayAllocator should take MEMFLAGS as regular parameter
kbarrett
parents:
46625
diff
changeset
|
738 |
static E* allocate(size_t length, MEMFLAGS flags); |
211b3f6b75ef
8182169: ArrayAllocator should take MEMFLAGS as regular parameter
kbarrett
parents:
46625
diff
changeset
|
739 |
static E* reallocate(E* old_addr, size_t old_length, size_t new_length, MEMFLAGS flags); |
37057 | 740 |
static void free(E* addr, size_t length); |
16682
4e30a46f6b76
7197666: java -d64 -version core dumps in a box with lots of memory
brutisso
parents:
15452
diff
changeset
|
741 |
}; |
4e30a46f6b76
7197666: java -d64 -version core dumps in a box with lots of memory
brutisso
parents:
15452
diff
changeset
|
742 |
|
37096
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
743 |
// Uses mmaped memory for all allocations. All allocations are initially |
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
744 |
// zero-filled. No pre-touching. |
46704
211b3f6b75ef
8182169: ArrayAllocator should take MEMFLAGS as regular parameter
kbarrett
parents:
46625
diff
changeset
|
745 |
template <class E> |
37096
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
746 |
class MmapArrayAllocator : public AllStatic { |
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
747 |
private: |
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
748 |
static size_t size_for(size_t length); |
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
749 |
|
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
750 |
public: |
46704
211b3f6b75ef
8182169: ArrayAllocator should take MEMFLAGS as regular parameter
kbarrett
parents:
46625
diff
changeset
|
751 |
static E* allocate_or_null(size_t length, MEMFLAGS flags); |
211b3f6b75ef
8182169: ArrayAllocator should take MEMFLAGS as regular parameter
kbarrett
parents:
46625
diff
changeset
|
752 |
static E* allocate(size_t length, MEMFLAGS flags); |
37096
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
753 |
static void free(E* addr, size_t length); |
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
754 |
}; |
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
755 |
|
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
756 |
// Uses malloc:ed memory for all allocations. |
46704
211b3f6b75ef
8182169: ArrayAllocator should take MEMFLAGS as regular parameter
kbarrett
parents:
46625
diff
changeset
|
757 |
template <class E> |
37096
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
758 |
class MallocArrayAllocator : public AllStatic { |
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
759 |
public: |
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
760 |
static size_t size_for(size_t length); |
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
761 |
|
46704
211b3f6b75ef
8182169: ArrayAllocator should take MEMFLAGS as regular parameter
kbarrett
parents:
46625
diff
changeset
|
762 |
static E* allocate(size_t length, MEMFLAGS flags); |
37096
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
763 |
static void free(E* addr, size_t length); |
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
764 |
}; |
42437cf54027
8151534: Refactor ArrayAllocator for easier reuse
stefank
parents:
37092
diff
changeset
|
765 |
|
7397 | 766 |
#endif // SHARE_VM_MEMORY_ALLOCATION_HPP |