2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2018-04-05 10:54:53 +02:00
|
|
|
* Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2010-05-27 19:08:38 -07:00
|
|
|
* 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.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-05-13 15:16:06 +02:00
|
|
|
#ifndef SHARE_VM_GC_SHARED_GENOOPCLOSURES_INLINE_HPP
|
|
|
|
#define SHARE_VM_GC_SHARED_GENOOPCLOSURES_INLINE_HPP
|
2010-11-23 13:22:55 -08:00
|
|
|
|
2015-05-13 15:16:06 +02:00
|
|
|
#include "gc/shared/cardTableRS.hpp"
|
|
|
|
#include "gc/shared/genCollectedHeap.hpp"
|
|
|
|
#include "gc/shared/genOopClosures.hpp"
|
|
|
|
#include "gc/shared/generation.hpp"
|
|
|
|
#include "gc/shared/space.hpp"
|
2018-03-15 21:24:10 +01:00
|
|
|
#include "oops/access.inline.hpp"
|
|
|
|
#include "oops/compressedOops.inline.hpp"
|
2018-04-05 10:54:53 +02:00
|
|
|
#include "oops/oop.inline.hpp"
|
2018-05-04 11:41:35 +02:00
|
|
|
#if INCLUDE_SERIALGC
|
|
|
|
#include "gc/serial/defNewGeneration.inline.hpp"
|
|
|
|
#endif
|
2010-11-23 13:22:55 -08:00
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
inline OopsInGenClosure::OopsInGenClosure(Generation* gen) :
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
ExtendedOopClosure(gen->ref_processor()), _orig_gen(gen), _rs(NULL) {
|
2007-12-01 00:00:00 +00:00
|
|
|
set_generation(gen);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void OopsInGenClosure::set_generation(Generation* gen) {
|
|
|
|
_gen = gen;
|
|
|
|
_gen_boundary = _gen->reserved().start();
|
|
|
|
// Barrier set for the heap, must be set after heap is initialized
|
|
|
|
if (_rs == NULL) {
|
2015-10-14 09:33:45 +02:00
|
|
|
_rs = GenCollectedHeap::heap()->rem_set();
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
template <class T> inline void OopsInGenClosure::do_barrier(T* p) {
|
2007-12-01 00:00:00 +00:00
|
|
|
assert(generation()->is_in_reserved(p), "expected ref in generation");
|
2018-03-15 21:24:10 +01:00
|
|
|
T heap_oop = RawAccess<>::oop_load(p);
|
|
|
|
assert(!CompressedOops::is_null(heap_oop), "expected non-null oop");
|
|
|
|
oop obj = CompressedOops::decode_not_null(heap_oop);
|
2007-12-01 00:00:00 +00:00
|
|
|
// If p points to a younger generation, mark the card.
|
|
|
|
if ((HeapWord*)obj < _gen_boundary) {
|
|
|
|
_rs->inline_write_ref_field_gc(p, obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-14 15:40:39 -07:00
|
|
|
template <class T> inline void OopsInGenClosure::par_do_barrier(T* p) {
|
2008-06-05 15:57:56 -07:00
|
|
|
assert(generation()->is_in_reserved(p), "expected ref in generation");
|
2018-03-15 21:24:10 +01:00
|
|
|
T heap_oop = RawAccess<>::oop_load(p);
|
|
|
|
assert(!CompressedOops::is_null(heap_oop), "expected non-null oop");
|
|
|
|
oop obj = CompressedOops::decode_not_null(heap_oop);
|
2008-06-05 15:57:56 -07:00
|
|
|
// If p points to a younger generation, mark the card.
|
|
|
|
if ((HeapWord*)obj < gen_boundary()) {
|
|
|
|
rs()->write_ref_field_gc_par(p, obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-03 16:42:04 -04:00
|
|
|
inline void OopsInClassLoaderDataOrGenClosure::do_cld_barrier() {
|
|
|
|
assert(_scanned_cld != NULL, "Must be");
|
|
|
|
if (!_scanned_cld->has_modified_oops()) {
|
|
|
|
_scanned_cld->record_modified_oops();
|
|
|
|
}
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
}
|
|
|
|
|
2018-05-04 11:41:35 +02:00
|
|
|
#if INCLUDE_SERIALGC
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// NOTE! Any changes made here should also be made
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
// in FastScanClosure::do_oop_work()
|
|
|
|
template <class T> inline void ScanClosure::do_oop_work(T* p) {
|
2018-03-15 21:24:10 +01:00
|
|
|
T heap_oop = RawAccess<>::oop_load(p);
|
2007-12-01 00:00:00 +00:00
|
|
|
// Should we copy the obj?
|
2018-03-15 21:24:10 +01:00
|
|
|
if (!CompressedOops::is_null(heap_oop)) {
|
|
|
|
oop obj = CompressedOops::decode_not_null(heap_oop);
|
2007-12-01 00:00:00 +00:00
|
|
|
if ((HeapWord*)obj < _boundary) {
|
|
|
|
assert(!_g->to()->is_in_reserved(obj), "Scanning field twice?");
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
oop new_obj = obj->is_forwarded() ? obj->forwardee()
|
|
|
|
: _g->copy_to_survivor_space(obj);
|
2018-03-15 21:24:10 +01:00
|
|
|
RawAccess<OOP_NOT_NULL>::oop_store(p, new_obj);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
|
2017-10-03 16:42:04 -04:00
|
|
|
if (is_scanning_a_cld()) {
|
|
|
|
do_cld_barrier();
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
} else if (_gc_barrier) {
|
2007-12-01 00:00:00 +00:00
|
|
|
// Now call parent closure
|
|
|
|
do_barrier(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
inline void ScanClosure::do_oop_nv(oop* p) { ScanClosure::do_oop_work(p); }
|
|
|
|
inline void ScanClosure::do_oop_nv(narrowOop* p) { ScanClosure::do_oop_work(p); }
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// NOTE! Any changes made here should also be made
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
// in ScanClosure::do_oop_work()
|
|
|
|
template <class T> inline void FastScanClosure::do_oop_work(T* p) {
|
2018-03-15 21:24:10 +01:00
|
|
|
T heap_oop = RawAccess<>::oop_load(p);
|
2007-12-01 00:00:00 +00:00
|
|
|
// Should we copy the obj?
|
2018-03-15 21:24:10 +01:00
|
|
|
if (!CompressedOops::is_null(heap_oop)) {
|
|
|
|
oop obj = CompressedOops::decode_not_null(heap_oop);
|
2007-12-01 00:00:00 +00:00
|
|
|
if ((HeapWord*)obj < _boundary) {
|
|
|
|
assert(!_g->to()->is_in_reserved(obj), "Scanning field twice?");
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
oop new_obj = obj->is_forwarded() ? obj->forwardee()
|
|
|
|
: _g->copy_to_survivor_space(obj);
|
2018-03-15 21:24:10 +01:00
|
|
|
RawAccess<OOP_NOT_NULL>::oop_store(p, new_obj);
|
2017-10-03 16:42:04 -04:00
|
|
|
if (is_scanning_a_cld()) {
|
|
|
|
do_cld_barrier();
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
} else if (_gc_barrier) {
|
2007-12-01 00:00:00 +00:00
|
|
|
// Now call parent closure
|
|
|
|
do_barrier(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
inline void FastScanClosure::do_oop_nv(oop* p) { FastScanClosure::do_oop_work(p); }
|
|
|
|
inline void FastScanClosure::do_oop_nv(narrowOop* p) { FastScanClosure::do_oop_work(p); }
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2018-05-04 11:41:35 +02:00
|
|
|
#endif // INCLUDE_SERIALGC
|
|
|
|
|
2016-01-18 10:25:41 +01:00
|
|
|
template <class T> void FilteringClosure::do_oop_work(T* p) {
|
2018-03-15 21:24:10 +01:00
|
|
|
T heap_oop = RawAccess<>::oop_load(p);
|
|
|
|
if (!CompressedOops::is_null(heap_oop)) {
|
|
|
|
oop obj = CompressedOops::decode_not_null(heap_oop);
|
2016-01-18 10:25:41 +01:00
|
|
|
if ((HeapWord*)obj < _boundary) {
|
|
|
|
_cl->do_oop(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilteringClosure::do_oop_nv(oop* p) { FilteringClosure::do_oop_work(p); }
|
|
|
|
void FilteringClosure::do_oop_nv(narrowOop* p) { FilteringClosure::do_oop_work(p); }
|
|
|
|
|
2018-05-04 11:41:35 +02:00
|
|
|
#if INCLUDE_SERIALGC
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// Note similarity to ScanClosure; the difference is that
|
|
|
|
// the barrier set is taken care of outside this closure.
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
template <class T> inline void ScanWeakRefClosure::do_oop_work(T* p) {
|
2018-03-15 21:24:10 +01:00
|
|
|
oop obj = RawAccess<OOP_NOT_NULL>::oop_load(p);
|
2007-12-01 00:00:00 +00:00
|
|
|
// weak references are sometimes scanned twice; must check
|
|
|
|
// that to-space doesn't already contain this object
|
|
|
|
if ((HeapWord*)obj < _boundary && !_g->to()->is_in_reserved(obj)) {
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
oop new_obj = obj->is_forwarded() ? obj->forwardee()
|
|
|
|
: _g->copy_to_survivor_space(obj);
|
2018-03-15 21:24:10 +01:00
|
|
|
RawAccess<OOP_NOT_NULL>::oop_store(p, new_obj);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
inline void ScanWeakRefClosure::do_oop_nv(oop* p) { ScanWeakRefClosure::do_oop_work(p); }
|
|
|
|
inline void ScanWeakRefClosure::do_oop_nv(narrowOop* p) { ScanWeakRefClosure::do_oop_work(p); }
|
2010-11-23 13:22:55 -08:00
|
|
|
|
2018-05-04 11:41:35 +02:00
|
|
|
#endif // INCLUDE_SERIALGC
|
|
|
|
|
2015-05-13 15:16:06 +02:00
|
|
|
#endif // SHARE_VM_GC_SHARED_GENOOPCLOSURES_INLINE_HPP
|