diff -r 63eb7e38ce84 -r 9d1a788dea3d src/hotspot/share/memory/metaspace.cpp --- a/src/hotspot/share/memory/metaspace.cpp Tue Jan 29 14:34:26 2019 +0100 +++ b/src/hotspot/share/memory/metaspace.cpp Tue Jan 29 14:43:05 2019 +0100 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 2019, 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 @@ -873,19 +873,6 @@ return vsn; } -bool MetaspaceUtils::is_in_committed(const void* p) { -#if INCLUDE_CDS - if (UseSharedSpaces) { - for (int idx = MetaspaceShared::ro; idx <= MetaspaceShared::mc; idx++) { - if (FileMapInfo::current_info()->is_in_shared_region(p, idx)) { - return true; - } - } - } -#endif - return find_enclosing_virtual_space(p) != NULL; -} - bool MetaspaceUtils::is_range_in_committed(const void* from, const void* to) { #if INCLUDE_CDS if (UseSharedSpaces) {