2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2010-11-23 13:22:55 -08:00
|
|
|
* Copyright (c) 2001, 2010, 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
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-11-23 13:22:55 -08:00
|
|
|
#ifndef SHARE_VM_MEMORY_DEFNEWGENERATION_INLINE_HPP
|
|
|
|
#define SHARE_VM_MEMORY_DEFNEWGENERATION_INLINE_HPP
|
|
|
|
|
|
|
|
#include "memory/cardTableRS.hpp"
|
|
|
|
#include "memory/defNewGeneration.hpp"
|
|
|
|
#include "memory/space.hpp"
|
|
|
|
|
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
|
|
|
// Methods of protected closure types
|
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 DefNewGeneration::KeepAliveClosure::do_oop_work(T* p) {
|
|
|
|
#ifdef ASSERT
|
|
|
|
{
|
|
|
|
// We never expect to see a null reference being processed
|
|
|
|
// as a weak reference.
|
|
|
|
assert (!oopDesc::is_null(*p), "expected non-null ref");
|
|
|
|
oop obj = oopDesc::load_decode_heap_oop_not_null(p);
|
|
|
|
assert (obj->is_oop(), "expected an oop while scanning weak refs");
|
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
|
|
|
#endif // ASSERT
|
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
|
|
|
_cl->do_oop_nv(p);
|
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
|
|
|
// Card marking is trickier for weak refs.
|
|
|
|
// This oop is a 'next' field which was filled in while we
|
|
|
|
// were discovering weak references. While we might not need
|
|
|
|
// to take a special action to keep this reference alive, we
|
|
|
|
// will need to dirty a card as the field was modified.
|
|
|
|
//
|
|
|
|
// Alternatively, we could create a method which iterates through
|
|
|
|
// each generation, allowing them in turn to examine the modified
|
|
|
|
// field.
|
|
|
|
//
|
|
|
|
// We could check that p is also in an older generation, but
|
|
|
|
// dirty cards in the youngest gen are never scanned, so the
|
|
|
|
// extra check probably isn't worthwhile.
|
|
|
|
if (Universe::heap()->is_in_reserved(p)) {
|
|
|
|
oop obj = oopDesc::load_decode_heap_oop_not_null(p);
|
|
|
|
_rs->inline_write_ref_field_gc(p, 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
|
|
|
template <class T>
|
|
|
|
inline void DefNewGeneration::FastKeepAliveClosure::do_oop_work(T* p) {
|
|
|
|
#ifdef ASSERT
|
|
|
|
{
|
|
|
|
// We never expect to see a null reference being processed
|
|
|
|
// as a weak reference.
|
|
|
|
assert (!oopDesc::is_null(*p), "expected non-null ref");
|
|
|
|
oop obj = oopDesc::load_decode_heap_oop_not_null(p);
|
|
|
|
assert (obj->is_oop(), "expected an oop while scanning weak refs");
|
|
|
|
}
|
|
|
|
#endif // ASSERT
|
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
|
|
|
_cl->do_oop_nv(p);
|
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
|
|
|
// Optimized for Defnew generation if it's the youngest generation:
|
|
|
|
// we set a younger_gen card if we have an older->youngest
|
|
|
|
// generation pointer.
|
|
|
|
oop obj = oopDesc::load_decode_heap_oop_not_null(p);
|
|
|
|
if (((HeapWord*)obj < _boundary) && Universe::heap()->is_in_reserved(p)) {
|
|
|
|
_rs->inline_write_ref_field_gc(p, obj);
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
2010-11-23 13:22:55 -08:00
|
|
|
|
|
|
|
#endif // SHARE_VM_MEMORY_DEFNEWGENERATION_INLINE_HPP
|