Skip to content

Commit 317bd88

Browse files
committedMay 6, 2020
8244489: Zero and minimal VM build failure after JDK-8241071 (MetaspaceShared::symbol_space_alloc is undefined)
Reviewed-by: dholmes
1 parent 0c0d485 commit 317bd88

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/hotspot/share/oops/symbol.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ Symbol::Symbol(const u1* name, int length, int refcount) {
5757
}
5858

5959
void* Symbol::operator new(size_t sz, int len) throw() {
60+
#if INCLUDE_CDS
6061
if (DumpSharedSpaces) {
6162
// To get deterministic output from -Xshare:dump, we ensure that Symbols are allocated in
6263
// increasing addresses. When the symbols are copied into the archive, we preserve their
@@ -71,6 +72,7 @@ void* Symbol::operator new(size_t sz, int len) throw() {
7172
DEBUG_ONLY(last = p);
7273
return p;
7374
}
75+
#endif
7476
int alloc_size = size(len)*wordSize;
7577
address res = (address) AllocateHeap(alloc_size, mtSymbol);
7678
return res;

0 commit comments

Comments
 (0)
Please sign in to comment.