8201217: Split specialized_oop_closures.hpp into GC specific files
Reviewed-by: sjohanss, eosterlund
This commit is contained in:
parent
367f9ea984
commit
8e0a6a9523
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
#include "precompiled.hpp"
|
#include "precompiled.hpp"
|
||||||
#include "gc/cms/cmsOopClosures.inline.hpp"
|
#include "gc/cms/cmsOopClosures.inline.hpp"
|
||||||
#include "gc/shared/specialized_oop_closures.hpp"
|
#include "gc/cms/cms_specialized_oop_closures.hpp"
|
||||||
#include "memory/iterator.inline.hpp"
|
#include "memory/iterator.inline.hpp"
|
||||||
|
|
||||||
// Generate CMS specialized oop_oop_iterate functions.
|
// Generate CMS specialized oop_oop_iterate functions.
|
||||||
|
73
src/hotspot/share/gc/cms/cms_specialized_oop_closures.hpp
Normal file
73
src/hotspot/share/gc/cms/cms_specialized_oop_closures.hpp
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2001, 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.
|
||||||
|
*
|
||||||
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||||
|
* version 2 for more details (a copy is included in the LICENSE file that
|
||||||
|
* accompanied this code).
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License version
|
||||||
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||||
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
*
|
||||||
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||||
|
* or visit www.oracle.com if you need additional information or have any
|
||||||
|
* questions.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef SHARE_GC_CMS_CMS_SPECIALIZED_OOP_CLOSURES_HPP
|
||||||
|
#define SHARE_GC_CMS_CMS_SPECIALIZED_OOP_CLOSURES_HPP
|
||||||
|
|
||||||
|
// The following OopClosure types get specialized versions of
|
||||||
|
// "oop_oop_iterate" that invoke the closures' do_oop methods
|
||||||
|
// non-virtually, using a mechanism defined in this file. Extend these
|
||||||
|
// macros in the obvious way to add specializations for new closures.
|
||||||
|
|
||||||
|
// Forward declarations.
|
||||||
|
|
||||||
|
// ParNew
|
||||||
|
class ParScanWithBarrierClosure;
|
||||||
|
class ParScanWithoutBarrierClosure;
|
||||||
|
|
||||||
|
// CMS
|
||||||
|
class MarkRefsIntoAndScanClosure;
|
||||||
|
class ParMarkRefsIntoAndScanClosure;
|
||||||
|
class PushAndMarkClosure;
|
||||||
|
class ParPushAndMarkClosure;
|
||||||
|
class PushOrMarkClosure;
|
||||||
|
class ParPushOrMarkClosure;
|
||||||
|
class CMSKeepAliveClosure;
|
||||||
|
class CMSInnerParMarkAndPushClosure;
|
||||||
|
|
||||||
|
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f) \
|
||||||
|
f(ParScanWithBarrierClosure,_nv) \
|
||||||
|
f(ParScanWithoutBarrierClosure,_nv)
|
||||||
|
|
||||||
|
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_CMS(f) \
|
||||||
|
f(MarkRefsIntoAndScanClosure,_nv) \
|
||||||
|
f(ParMarkRefsIntoAndScanClosure,_nv) \
|
||||||
|
f(PushAndMarkClosure,_nv) \
|
||||||
|
f(ParPushAndMarkClosure,_nv) \
|
||||||
|
f(PushOrMarkClosure,_nv) \
|
||||||
|
f(ParPushOrMarkClosure,_nv) \
|
||||||
|
f(CMSKeepAliveClosure,_nv) \
|
||||||
|
f(CMSInnerParMarkAndPushClosure,_nv)
|
||||||
|
|
||||||
|
#define SPECIALIZED_PAR_OOP_ITERATE_CLOSURES(f) \
|
||||||
|
f(MarkRefsIntoAndScanClosure,_nv) \
|
||||||
|
f(PushAndMarkClosure,_nv) \
|
||||||
|
f(ParMarkRefsIntoAndScanClosure,_nv) \
|
||||||
|
f(ParPushAndMarkClosure,_nv)
|
||||||
|
|
||||||
|
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_P(f) \
|
||||||
|
f(ParScanWithBarrierClosure,_nv) \
|
||||||
|
f(ParScanWithoutBarrierClosure,_nv)
|
||||||
|
|
||||||
|
#endif // SHARE_GC_CMS_CMS_SPECIALIZED_OOP_CLOSURES_HPP
|
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
#include "precompiled.hpp"
|
#include "precompiled.hpp"
|
||||||
#include "gc/cms/parOopClosures.inline.hpp"
|
#include "gc/cms/parOopClosures.inline.hpp"
|
||||||
#include "gc/shared/specialized_oop_closures.hpp"
|
#include "gc/cms/cms_specialized_oop_closures.hpp"
|
||||||
#include "memory/iterator.inline.hpp"
|
#include "memory/iterator.inline.hpp"
|
||||||
|
|
||||||
// Generate ParNew specialized oop_oop_iterate functions.
|
// Generate ParNew specialized oop_oop_iterate functions.
|
||||||
|
@ -25,10 +25,10 @@
|
|||||||
#include "precompiled.hpp"
|
#include "precompiled.hpp"
|
||||||
#include "compiler/compileBroker.hpp"
|
#include "compiler/compileBroker.hpp"
|
||||||
#include "gc/serial/markSweep.inline.hpp"
|
#include "gc/serial/markSweep.inline.hpp"
|
||||||
|
#include "gc/serial/serial_specialized_oop_closures.hpp"
|
||||||
#include "gc/shared/collectedHeap.inline.hpp"
|
#include "gc/shared/collectedHeap.inline.hpp"
|
||||||
#include "gc/shared/gcTimer.hpp"
|
#include "gc/shared/gcTimer.hpp"
|
||||||
#include "gc/shared/gcTrace.hpp"
|
#include "gc/shared/gcTrace.hpp"
|
||||||
#include "gc/shared/specialized_oop_closures.hpp"
|
|
||||||
#include "memory/iterator.inline.hpp"
|
#include "memory/iterator.inline.hpp"
|
||||||
#include "oops/access.inline.hpp"
|
#include "oops/access.inline.hpp"
|
||||||
#include "oops/compressedOops.inline.hpp"
|
#include "oops/compressedOops.inline.hpp"
|
||||||
|
@ -0,0 +1,57 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2001, 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.
|
||||||
|
*
|
||||||
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||||
|
* version 2 for more details (a copy is included in the LICENSE file that
|
||||||
|
* accompanied this code).
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License version
|
||||||
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||||
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
*
|
||||||
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||||
|
* or visit www.oracle.com if you need additional information or have any
|
||||||
|
* questions.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef SHARE_GC_SERIAL_SERIAL_SPECIALIZED_OOP_CLOSURES_HPP
|
||||||
|
#define SHARE_GC_SERIAL_SERIAL_SPECIALIZED_OOP_CLOSURES_HPP
|
||||||
|
|
||||||
|
// The following OopClosure types get specialized versions of
|
||||||
|
// "oop_oop_iterate" that invoke the closures' do_oop methods
|
||||||
|
// non-virtually, using a mechanism defined in this file. Extend these
|
||||||
|
// macros in the obvious way to add specializations for new closures.
|
||||||
|
|
||||||
|
// Forward declarations.
|
||||||
|
|
||||||
|
// DefNew
|
||||||
|
class ScanClosure;
|
||||||
|
class FastScanClosure;
|
||||||
|
class FilteringClosure;
|
||||||
|
|
||||||
|
// MarkSweep
|
||||||
|
class MarkAndPushClosure;
|
||||||
|
class AdjustPointerClosure;
|
||||||
|
|
||||||
|
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_S(f) \
|
||||||
|
f(ScanClosure,_nv) \
|
||||||
|
f(FastScanClosure,_nv) \
|
||||||
|
f(FilteringClosure,_nv)
|
||||||
|
|
||||||
|
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_MS(f) \
|
||||||
|
f(MarkAndPushClosure,_nv) \
|
||||||
|
f(AdjustPointerClosure,_nv)
|
||||||
|
|
||||||
|
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_S(f) \
|
||||||
|
f(ScanClosure,_nv) \
|
||||||
|
f(FastScanClosure,_nv)
|
||||||
|
|
||||||
|
#endif // SHARE_GC_SERIAL_SERIAL_SPECIALIZED_OOP_CLOSURES_HPP
|
@ -22,8 +22,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precompiled.hpp"
|
#include "precompiled.hpp"
|
||||||
|
#include "gc/serial/serial_specialized_oop_closures.hpp"
|
||||||
#include "gc/shared/genOopClosures.inline.hpp"
|
#include "gc/shared/genOopClosures.inline.hpp"
|
||||||
#include "gc/shared/specialized_oop_closures.hpp"
|
|
||||||
#include "memory/iterator.inline.hpp"
|
#include "memory/iterator.inline.hpp"
|
||||||
|
|
||||||
void FilteringClosure::do_oop(oop* p) { do_oop_nv(p); }
|
void FilteringClosure::do_oop(oop* p) { do_oop_nv(p); }
|
||||||
|
@ -25,8 +25,10 @@
|
|||||||
#ifndef SHARE_VM_GC_SHARED_SPECIALIZED_OOP_CLOSURES_HPP
|
#ifndef SHARE_VM_GC_SHARED_SPECIALIZED_OOP_CLOSURES_HPP
|
||||||
#define SHARE_VM_GC_SHARED_SPECIALIZED_OOP_CLOSURES_HPP
|
#define SHARE_VM_GC_SHARED_SPECIALIZED_OOP_CLOSURES_HPP
|
||||||
|
|
||||||
|
#include "gc/serial/serial_specialized_oop_closures.hpp"
|
||||||
#include "utilities/macros.hpp"
|
#include "utilities/macros.hpp"
|
||||||
#if INCLUDE_ALL_GCS
|
#if INCLUDE_ALL_GCS
|
||||||
|
#include "gc/cms/cms_specialized_oop_closures.hpp"
|
||||||
#include "gc/g1/g1_specialized_oop_closures.hpp"
|
#include "gc/g1/g1_specialized_oop_closures.hpp"
|
||||||
#endif // INCLUDE_ALL_GCS
|
#endif // INCLUDE_ALL_GCS
|
||||||
|
|
||||||
@ -36,29 +38,9 @@
|
|||||||
// macros in the obvious way to add specializations for new closures.
|
// macros in the obvious way to add specializations for new closures.
|
||||||
|
|
||||||
// Forward declarations.
|
// Forward declarations.
|
||||||
class OopClosure;
|
class ExtendedOopClosure;
|
||||||
class OopsInGenClosure;
|
|
||||||
// DefNew
|
|
||||||
class ScanClosure;
|
|
||||||
class FastScanClosure;
|
|
||||||
class FilteringClosure;
|
|
||||||
// MarkSweep
|
|
||||||
class MarkAndPushClosure;
|
|
||||||
class AdjustPointerClosure;
|
|
||||||
// ParNew
|
|
||||||
class ParScanWithBarrierClosure;
|
|
||||||
class ParScanWithoutBarrierClosure;
|
|
||||||
// CMS
|
|
||||||
class MarkRefsIntoAndScanClosure;
|
|
||||||
class ParMarkRefsIntoAndScanClosure;
|
|
||||||
class PushAndMarkClosure;
|
|
||||||
class ParPushAndMarkClosure;
|
|
||||||
class PushOrMarkClosure;
|
|
||||||
class ParPushOrMarkClosure;
|
|
||||||
class CMSKeepAliveClosure;
|
|
||||||
class CMSInnerParMarkAndPushClosure;
|
|
||||||
// Misc
|
|
||||||
class NoHeaderExtendedOopClosure;
|
class NoHeaderExtendedOopClosure;
|
||||||
|
class OopsInGenClosure;
|
||||||
|
|
||||||
// This macro applies an argument macro to all OopClosures for which we
|
// This macro applies an argument macro to all OopClosures for which we
|
||||||
// want specialized bodies of "oop_oop_iterate". The arguments to "f" are:
|
// want specialized bodies of "oop_oop_iterate". The arguments to "f" are:
|
||||||
@ -72,51 +54,16 @@ class NoHeaderExtendedOopClosure;
|
|||||||
// This is split into several because of a Visual C++ 6.0 compiler bug
|
// This is split into several because of a Visual C++ 6.0 compiler bug
|
||||||
// where very long macros cause the compiler to crash
|
// where very long macros cause the compiler to crash
|
||||||
|
|
||||||
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_S(f) \
|
|
||||||
f(ScanClosure,_nv) \
|
|
||||||
f(FastScanClosure,_nv) \
|
|
||||||
f(FilteringClosure,_nv)
|
|
||||||
|
|
||||||
#if INCLUDE_ALL_GCS
|
|
||||||
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f) \
|
|
||||||
f(ParScanWithBarrierClosure,_nv) \
|
|
||||||
f(ParScanWithoutBarrierClosure,_nv)
|
|
||||||
#else // INCLUDE_ALL_GCS
|
|
||||||
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f)
|
|
||||||
#endif // INCLUDE_ALL_GCS
|
|
||||||
|
|
||||||
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_1(f) \
|
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_1(f) \
|
||||||
f(NoHeaderExtendedOopClosure,_nv) \
|
f(NoHeaderExtendedOopClosure,_nv) \
|
||||||
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_S(f) \
|
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_S(f) \
|
||||||
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f)
|
ALL_GCS_ONLY(SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f))
|
||||||
|
|
||||||
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_MS(f) \
|
|
||||||
f(MarkAndPushClosure,_nv) \
|
|
||||||
f(AdjustPointerClosure,_nv)
|
|
||||||
|
|
||||||
#if INCLUDE_ALL_GCS
|
|
||||||
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_CMS(f) \
|
|
||||||
f(MarkRefsIntoAndScanClosure,_nv) \
|
|
||||||
f(ParMarkRefsIntoAndScanClosure,_nv) \
|
|
||||||
f(PushAndMarkClosure,_nv) \
|
|
||||||
f(ParPushAndMarkClosure,_nv) \
|
|
||||||
f(PushOrMarkClosure,_nv) \
|
|
||||||
f(ParPushOrMarkClosure,_nv) \
|
|
||||||
f(CMSKeepAliveClosure,_nv) \
|
|
||||||
f(CMSInnerParMarkAndPushClosure,_nv)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if INCLUDE_ALL_GCS
|
|
||||||
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f) \
|
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f) \
|
||||||
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_MS(f) \
|
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_MS(f) \
|
||||||
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_CMS(f) \
|
ALL_GCS_ONLY(SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_CMS(f)) \
|
||||||
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_G1(f) \
|
ALL_GCS_ONLY(SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_G1(f)) \
|
||||||
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_G1FULL(f)
|
ALL_GCS_ONLY(SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_G1FULL(f))
|
||||||
#else // INCLUDE_ALL_GCS
|
|
||||||
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f) \
|
|
||||||
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_MS(f)
|
|
||||||
#endif // INCLUDE_ALL_GCS
|
|
||||||
|
|
||||||
|
|
||||||
// We separate these out, because sometime the general one has
|
// We separate these out, because sometime the general one has
|
||||||
// a different definition from the specialized ones, and sometimes it
|
// a different definition from the specialized ones, and sometimes it
|
||||||
@ -129,23 +76,16 @@ class NoHeaderExtendedOopClosure;
|
|||||||
#define ALL_OOP_OOP_ITERATE_CLOSURES_2(f) \
|
#define ALL_OOP_OOP_ITERATE_CLOSURES_2(f) \
|
||||||
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f)
|
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f)
|
||||||
|
|
||||||
#if INCLUDE_ALL_GCS
|
|
||||||
// This macro applies an argument macro to all OopClosures for which we
|
// This macro applies an argument macro to all OopClosures for which we
|
||||||
// want specialized bodies of a family of methods related to
|
// want specialized bodies of a family of methods related to
|
||||||
// "par_oop_iterate". The arguments to f are the same as above.
|
// "par_oop_iterate". The arguments to f are the same as above.
|
||||||
// The "root_class" is the most general class to define; this may be
|
// The "root_class" is the most general class to define; this may be
|
||||||
// "OopClosure" in some applications and "OopsInGenClosure" in others.
|
// "OopClosure" in some applications and "OopsInGenClosure" in others.
|
||||||
|
|
||||||
#define SPECIALIZED_PAR_OOP_ITERATE_CLOSURES(f) \
|
|
||||||
f(MarkRefsIntoAndScanClosure,_nv) \
|
|
||||||
f(PushAndMarkClosure,_nv) \
|
|
||||||
f(ParMarkRefsIntoAndScanClosure,_nv) \
|
|
||||||
f(ParPushAndMarkClosure,_nv)
|
|
||||||
|
|
||||||
#define ALL_PAR_OOP_ITERATE_CLOSURES(f) \
|
#define ALL_PAR_OOP_ITERATE_CLOSURES(f) \
|
||||||
f(ExtendedOopClosure,_v) \
|
f(ExtendedOopClosure,_v) \
|
||||||
SPECIALIZED_PAR_OOP_ITERATE_CLOSURES(f)
|
ALL_GCS_ONLY(SPECIALIZED_PAR_OOP_ITERATE_CLOSURES(f))
|
||||||
#endif // INCLUDE_ALL_GCS
|
|
||||||
|
|
||||||
// This macro applies an argument macro to all OopClosures for which we
|
// This macro applies an argument macro to all OopClosures for which we
|
||||||
// want specialized bodies of a family of methods related to
|
// want specialized bodies of a family of methods related to
|
||||||
@ -153,21 +93,9 @@ class NoHeaderExtendedOopClosure;
|
|||||||
// The "root_class" is the most general class to define; this may be
|
// The "root_class" is the most general class to define; this may be
|
||||||
// "OopClosure" in some applications and "OopsInGenClosure" in others.
|
// "OopClosure" in some applications and "OopsInGenClosure" in others.
|
||||||
|
|
||||||
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_S(f) \
|
|
||||||
f(ScanClosure,_nv) \
|
|
||||||
f(FastScanClosure,_nv)
|
|
||||||
|
|
||||||
#if INCLUDE_ALL_GCS
|
|
||||||
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_P(f) \
|
|
||||||
f(ParScanWithBarrierClosure,_nv) \
|
|
||||||
f(ParScanWithoutBarrierClosure,_nv)
|
|
||||||
#else // INCLUDE_ALL_GCS
|
|
||||||
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_P(f)
|
|
||||||
#endif // INCLUDE_ALL_GCS
|
|
||||||
|
|
||||||
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG(f) \
|
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG(f) \
|
||||||
SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_S(f) \
|
SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_S(f) \
|
||||||
SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_P(f)
|
ALL_GCS_ONLY(SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_P(f))
|
||||||
|
|
||||||
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES(f) \
|
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES(f) \
|
||||||
SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG(f)
|
SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG(f)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user