< prev index next >

src/hotspot/share/memory/allocation.cpp

Print this page

*** 1,7 **** /* ! * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 35,44 **** --- 35,47 ---- #include "runtime/task.hpp" #include "runtime/threadCritical.hpp" #include "services/memTracker.hpp" #include "utilities/ostream.hpp" + void* MetaspaceObj::_shared_metaspace_base = NULL; + void* MetaspaceObj::_shared_metaspace_top = NULL; + void* StackObj::operator new(size_t size) throw() { ShouldNotCallThis(); return 0; } void StackObj::operator delete(void* p) { ShouldNotCallThis(); } void* StackObj::operator new [](size_t size) throw() { ShouldNotCallThis(); return 0; } void StackObj::operator delete [](void* p) { ShouldNotCallThis(); }
*** 52,65 **** MetaspaceObj::Type type, TRAPS) throw() { // Klass has it's own operator new return Metaspace::allocate(loader_data, word_size, type, THREAD); } - bool MetaspaceObj::is_shared() const { - return MetaspaceShared::is_in_shared_space(this); - } - bool MetaspaceObj::is_metaspace_object() const { return Metaspace::contains((void*)this); } void MetaspaceObj::print_address_on(outputStream* st) const { --- 55,64 ----
< prev index next >