2008-06-05 15:57:56 -07:00
|
|
|
/*
|
2018-04-04 11:21:14 +02:00
|
|
|
* Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
|
2008-06-05 15:57:56 -07: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.
|
2008-06-05 15:57:56 -07:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-05-13 15:16:06 +02:00
|
|
|
#ifndef SHARE_VM_GC_G1_HEAPREGION_INLINE_HPP
|
|
|
|
#define SHARE_VM_GC_G1_HEAPREGION_INLINE_HPP
|
2010-11-23 13:22:55 -08:00
|
|
|
|
2015-05-13 15:16:06 +02:00
|
|
|
#include "gc/g1/g1BlockOffsetTable.inline.hpp"
|
2015-08-06 15:49:50 +02:00
|
|
|
#include "gc/g1/g1CollectedHeap.inline.hpp"
|
2017-11-14 11:33:23 +01:00
|
|
|
#include "gc/g1/g1ConcurrentMarkBitMap.inline.hpp"
|
2015-05-13 15:16:06 +02:00
|
|
|
#include "gc/g1/heapRegion.hpp"
|
|
|
|
#include "gc/shared/space.hpp"
|
2015-02-13 14:37:35 +01:00
|
|
|
#include "oops/oop.inline.hpp"
|
2016-08-21 20:56:37 -04:00
|
|
|
#include "runtime/atomic.hpp"
|
2017-11-14 11:33:23 +01:00
|
|
|
#include "runtime/prefetch.inline.hpp"
|
2017-07-05 11:33:17 +02:00
|
|
|
#include "utilities/align.hpp"
|
2014-06-26 11:36:58 +02:00
|
|
|
|
2016-01-07 16:25:53 +01:00
|
|
|
inline HeapWord* G1ContiguousSpace::allocate_impl(size_t min_word_size,
|
|
|
|
size_t desired_word_size,
|
|
|
|
size_t* actual_size) {
|
2014-06-26 11:36:58 +02:00
|
|
|
HeapWord* obj = top();
|
2015-08-24 16:27:41 +02:00
|
|
|
size_t available = pointer_delta(end(), obj);
|
|
|
|
size_t want_to_allocate = MIN2(available, desired_word_size);
|
|
|
|
if (want_to_allocate >= min_word_size) {
|
|
|
|
HeapWord* new_top = obj + want_to_allocate;
|
2014-06-26 11:36:58 +02:00
|
|
|
set_top(new_top);
|
|
|
|
assert(is_aligned(obj) && is_aligned(new_top), "checking alignment");
|
2015-08-24 16:27:41 +02:00
|
|
|
*actual_size = want_to_allocate;
|
2014-06-26 11:36:58 +02:00
|
|
|
return obj;
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-07 16:25:53 +01:00
|
|
|
inline HeapWord* G1ContiguousSpace::par_allocate_impl(size_t min_word_size,
|
|
|
|
size_t desired_word_size,
|
|
|
|
size_t* actual_size) {
|
2014-06-26 11:36:58 +02:00
|
|
|
do {
|
|
|
|
HeapWord* obj = top();
|
2015-08-24 16:27:41 +02:00
|
|
|
size_t available = pointer_delta(end(), obj);
|
|
|
|
size_t want_to_allocate = MIN2(available, desired_word_size);
|
|
|
|
if (want_to_allocate >= min_word_size) {
|
|
|
|
HeapWord* new_top = obj + want_to_allocate;
|
2017-10-16 22:36:06 -04:00
|
|
|
HeapWord* result = Atomic::cmpxchg(new_top, top_addr(), obj);
|
2014-06-26 11:36:58 +02:00
|
|
|
// result can be one of two:
|
|
|
|
// the old top value: the exchange succeeded
|
|
|
|
// otherwise: the new value of the top is returned.
|
|
|
|
if (result == obj) {
|
|
|
|
assert(is_aligned(obj) && is_aligned(new_top), "checking alignment");
|
2015-08-24 16:27:41 +02:00
|
|
|
*actual_size = want_to_allocate;
|
2014-06-26 11:36:58 +02:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
} while (true);
|
|
|
|
}
|
2014-06-25 16:53:13 +02:00
|
|
|
|
2016-01-07 16:25:53 +01:00
|
|
|
inline HeapWord* G1ContiguousSpace::allocate(size_t min_word_size,
|
|
|
|
size_t desired_word_size,
|
|
|
|
size_t* actual_size) {
|
2015-08-24 16:27:41 +02:00
|
|
|
HeapWord* res = allocate_impl(min_word_size, desired_word_size, actual_size);
|
2008-06-05 15:57:56 -07:00
|
|
|
if (res != NULL) {
|
2016-01-07 16:25:53 +01:00
|
|
|
_bot_part.alloc_block(res, *actual_size);
|
2008-06-05 15:57:56 -07:00
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2016-01-07 16:25:53 +01:00
|
|
|
inline HeapWord* G1ContiguousSpace::allocate(size_t word_size) {
|
2015-08-24 16:27:41 +02:00
|
|
|
size_t temp;
|
|
|
|
return allocate(word_size, word_size, &temp);
|
|
|
|
}
|
|
|
|
|
2016-01-07 16:25:53 +01:00
|
|
|
inline HeapWord* G1ContiguousSpace::par_allocate(size_t word_size) {
|
2015-08-24 16:27:41 +02:00
|
|
|
size_t temp;
|
|
|
|
return par_allocate(word_size, word_size, &temp);
|
|
|
|
}
|
|
|
|
|
2008-06-05 15:57:56 -07:00
|
|
|
// Because of the requirement of keeping "_offsets" up to date with the
|
|
|
|
// allocations, we sequentialize these with a lock. Therefore, best if
|
|
|
|
// this is used for larger LAB allocations only.
|
2016-01-07 16:25:53 +01:00
|
|
|
inline HeapWord* G1ContiguousSpace::par_allocate(size_t min_word_size,
|
|
|
|
size_t desired_word_size,
|
|
|
|
size_t* actual_size) {
|
2008-06-05 15:57:56 -07:00
|
|
|
MutexLocker x(&_par_alloc_lock);
|
2015-08-24 16:27:41 +02:00
|
|
|
return allocate(min_word_size, desired_word_size, actual_size);
|
2008-06-05 15:57:56 -07:00
|
|
|
}
|
|
|
|
|
2016-01-07 16:25:53 +01:00
|
|
|
inline HeapWord* G1ContiguousSpace::block_start(const void* p) {
|
|
|
|
return _bot_part.block_start(p);
|
2008-06-05 15:57:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
inline HeapWord*
|
2016-01-07 16:25:53 +01:00
|
|
|
G1ContiguousSpace::block_start_const(const void* p) const {
|
|
|
|
return _bot_part.block_start_const(p);
|
2008-06-05 15:57:56 -07:00
|
|
|
}
|
2010-11-23 13:22:55 -08:00
|
|
|
|
2017-08-04 14:15:42 +02:00
|
|
|
inline bool HeapRegion::is_obj_dead_with_size(const oop obj, const G1CMBitMap* const prev_bitmap, size_t* size) const {
|
2017-06-02 13:45:15 +02:00
|
|
|
HeapWord* addr = (HeapWord*) obj;
|
|
|
|
|
|
|
|
assert(addr < top(), "must be");
|
2017-08-14 14:32:17 -04:00
|
|
|
assert(!is_closed_archive(),
|
|
|
|
"Closed archive regions should not have references into other regions");
|
2017-06-02 13:45:15 +02:00
|
|
|
assert(!is_humongous(), "Humongous objects not handled here");
|
|
|
|
bool obj_is_dead = is_obj_dead(obj, prev_bitmap);
|
|
|
|
|
|
|
|
if (ClassUnloadingWithConcurrentMark && obj_is_dead) {
|
|
|
|
assert(!block_is_obj(addr), "must be");
|
|
|
|
*size = block_size_using_bitmap(addr, prev_bitmap);
|
|
|
|
} else {
|
|
|
|
assert(block_is_obj(addr), "must be");
|
|
|
|
*size = obj->size();
|
|
|
|
}
|
|
|
|
return obj_is_dead;
|
|
|
|
}
|
|
|
|
|
2014-06-26 11:36:58 +02:00
|
|
|
inline bool
|
|
|
|
HeapRegion::block_is_obj(const HeapWord* p) const {
|
2014-07-07 10:12:40 +02:00
|
|
|
G1CollectedHeap* g1h = G1CollectedHeap::heap();
|
2015-11-09 09:19:39 +01:00
|
|
|
|
|
|
|
if (!this->is_in(p)) {
|
|
|
|
assert(is_continues_humongous(), "This case can only happen for humongous regions");
|
|
|
|
return (p == humongous_start_region()->bottom());
|
|
|
|
}
|
2014-08-06 09:55:16 +02:00
|
|
|
if (ClassUnloadingWithConcurrentMark) {
|
|
|
|
return !g1h->is_obj_dead(oop(p), this);
|
|
|
|
}
|
|
|
|
return p < top();
|
2014-06-26 11:36:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-04 14:15:42 +02:00
|
|
|
inline size_t HeapRegion::block_size_using_bitmap(const HeapWord* addr, const G1CMBitMap* const prev_bitmap) const {
|
2014-08-06 09:55:16 +02:00
|
|
|
assert(ClassUnloadingWithConcurrentMark,
|
2017-06-02 13:45:15 +02:00
|
|
|
"All blocks should be objects if class unloading isn't used, so this method should not be called. "
|
2015-09-29 11:02:08 +02:00
|
|
|
"HR: [" PTR_FORMAT ", " PTR_FORMAT ", " PTR_FORMAT ") "
|
|
|
|
"addr: " PTR_FORMAT,
|
|
|
|
p2i(bottom()), p2i(top()), p2i(end()), p2i(addr));
|
2014-08-06 09:55:16 +02:00
|
|
|
|
2014-07-07 10:12:40 +02:00
|
|
|
// Old regions' dead objects may have dead classes
|
2017-06-02 13:45:15 +02:00
|
|
|
// We need to find the next live object using the bitmap
|
2017-08-04 14:15:42 +02:00
|
|
|
HeapWord* next = prev_bitmap->get_next_marked_addr(addr, prev_top_at_mark_start());
|
2014-07-07 10:12:40 +02:00
|
|
|
|
2014-08-06 09:55:16 +02:00
|
|
|
assert(next > addr, "must get the next live object");
|
|
|
|
return pointer_delta(next, addr);
|
2014-06-26 11:36:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-04 14:15:42 +02:00
|
|
|
inline bool HeapRegion::is_obj_dead(const oop obj, const G1CMBitMap* const prev_bitmap) const {
|
2017-06-02 13:45:15 +02:00
|
|
|
assert(is_in_reserved(obj), "Object " PTR_FORMAT " must be in region", p2i(obj));
|
2017-08-14 14:32:17 -04:00
|
|
|
return !obj_allocated_since_prev_marking(obj) &&
|
|
|
|
!prev_bitmap->is_marked((HeapWord*)obj) &&
|
|
|
|
!is_open_archive();
|
2017-06-02 13:45:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline size_t HeapRegion::block_size(const HeapWord *addr) const {
|
|
|
|
if (addr == top()) {
|
|
|
|
return pointer_delta(end(), addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (block_is_obj(addr)) {
|
|
|
|
return oop(addr)->size();
|
|
|
|
}
|
|
|
|
|
2017-10-23 11:46:12 +02:00
|
|
|
return block_size_using_bitmap(addr, G1CollectedHeap::heap()->concurrent_mark()->prev_mark_bitmap());
|
2017-06-02 13:45:15 +02:00
|
|
|
}
|
|
|
|
|
2017-11-14 11:33:23 +01:00
|
|
|
inline void HeapRegion::complete_compaction() {
|
|
|
|
// Reset space and bot after compaction is complete if needed.
|
|
|
|
reset_after_compaction();
|
|
|
|
if (used_region().is_empty()) {
|
|
|
|
reset_bot();
|
|
|
|
}
|
|
|
|
|
|
|
|
// After a compaction the mark bitmap is invalid, so we must
|
|
|
|
// treat all objects as being inside the unmarked area.
|
|
|
|
zero_marked_bytes();
|
|
|
|
init_top_at_mark_start();
|
|
|
|
|
|
|
|
// Clear unused heap memory in debug builds.
|
|
|
|
if (ZapUnusedHeapArea) {
|
|
|
|
mangle_unused_area();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename ApplyToMarkedClosure>
|
|
|
|
inline void HeapRegion::apply_to_marked_objects(G1CMBitMap* bitmap, ApplyToMarkedClosure* closure) {
|
|
|
|
HeapWord* limit = scan_limit();
|
|
|
|
HeapWord* next_addr = bottom();
|
|
|
|
|
|
|
|
while (next_addr < limit) {
|
|
|
|
Prefetch::write(next_addr, PrefetchScanIntervalInBytes);
|
|
|
|
// This explicit is_marked check is a way to avoid
|
|
|
|
// some extra work done by get_next_marked_addr for
|
|
|
|
// the case where next_addr is marked.
|
|
|
|
if (bitmap->is_marked(next_addr)) {
|
|
|
|
oop current = oop(next_addr);
|
|
|
|
next_addr += closure->apply(current);
|
|
|
|
} else {
|
|
|
|
next_addr = bitmap->get_next_marked_addr(next_addr, limit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(next_addr == limit, "Should stop the scan at the limit.");
|
|
|
|
}
|
|
|
|
|
2015-08-24 16:27:41 +02:00
|
|
|
inline HeapWord* HeapRegion::par_allocate_no_bot_updates(size_t min_word_size,
|
|
|
|
size_t desired_word_size,
|
|
|
|
size_t* actual_word_size) {
|
2014-06-26 11:36:58 +02:00
|
|
|
assert(is_young(), "we can only skip BOT updates on young regions");
|
2015-08-24 16:27:41 +02:00
|
|
|
return par_allocate_impl(min_word_size, desired_word_size, actual_word_size);
|
2014-06-26 11:36:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline HeapWord* HeapRegion::allocate_no_bot_updates(size_t word_size) {
|
2015-08-24 16:27:41 +02:00
|
|
|
size_t temp;
|
|
|
|
return allocate_no_bot_updates(word_size, word_size, &temp);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline HeapWord* HeapRegion::allocate_no_bot_updates(size_t min_word_size,
|
|
|
|
size_t desired_word_size,
|
|
|
|
size_t* actual_word_size) {
|
2014-06-26 11:36:58 +02:00
|
|
|
assert(is_young(), "we can only skip BOT updates on young regions");
|
2015-08-24 16:27:41 +02:00
|
|
|
return allocate_impl(min_word_size, desired_word_size, actual_word_size);
|
2014-06-26 11:36:58 +02:00
|
|
|
}
|
|
|
|
|
2012-01-10 18:58:13 -05:00
|
|
|
inline void HeapRegion::note_start_of_marking() {
|
|
|
|
_next_marked_bytes = 0;
|
|
|
|
_next_top_at_mark_start = top();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void HeapRegion::note_end_of_marking() {
|
|
|
|
_prev_top_at_mark_start = _next_top_at_mark_start;
|
2018-04-04 11:21:14 +02:00
|
|
|
_next_top_at_mark_start = bottom();
|
2012-01-10 18:58:13 -05:00
|
|
|
_prev_marked_bytes = _next_marked_bytes;
|
|
|
|
_next_marked_bytes = 0;
|
|
|
|
}
|
|
|
|
|
2015-01-26 10:32:35 +01:00
|
|
|
inline bool HeapRegion::in_collection_set() const {
|
|
|
|
return G1CollectedHeap::heap()->is_in_cset(this);
|
|
|
|
}
|
|
|
|
|
2017-06-02 13:45:15 +02:00
|
|
|
template <class Closure, bool is_gc_active>
|
|
|
|
bool HeapRegion::do_oops_on_card_in_humongous(MemRegion mr,
|
|
|
|
Closure* cl,
|
|
|
|
G1CollectedHeap* g1h) {
|
|
|
|
assert(is_humongous(), "precondition");
|
|
|
|
HeapRegion* sr = humongous_start_region();
|
|
|
|
oop obj = oop(sr->bottom());
|
|
|
|
|
|
|
|
// If concurrent and klass_or_null is NULL, then space has been
|
|
|
|
// allocated but the object has not yet been published by setting
|
|
|
|
// the klass. That can only happen if the card is stale. However,
|
|
|
|
// we've already set the card clean, so we must return failure,
|
|
|
|
// since the allocating thread could have performed a write to the
|
|
|
|
// card that might be missed otherwise.
|
|
|
|
if (!is_gc_active && (obj->klass_or_null_acquire() == NULL)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We have a well-formed humongous object at the start of sr.
|
|
|
|
// Only filler objects follow a humongous object in the containing
|
|
|
|
// regions, and we can ignore those. So only process the one
|
|
|
|
// humongous object.
|
|
|
|
if (!g1h->is_obj_dead(obj, sr)) {
|
|
|
|
if (obj->is_objArray() || (sr->bottom() < mr.start())) {
|
|
|
|
// objArrays are always marked precisely, so limit processing
|
|
|
|
// with mr. Non-objArrays might be precisely marked, and since
|
|
|
|
// it's humongous it's worthwhile avoiding full processing.
|
|
|
|
// However, the card could be stale and only cover filler
|
|
|
|
// objects. That should be rare, so not worth checking for;
|
|
|
|
// instead let it fall out from the bounded iteration.
|
|
|
|
obj->oop_iterate(cl, mr);
|
|
|
|
} else {
|
|
|
|
// If obj is not an objArray and mr contains the start of the
|
|
|
|
// obj, then this could be an imprecise mark, and we need to
|
|
|
|
// process the entire object.
|
|
|
|
obj->oop_iterate(cl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <bool is_gc_active, class Closure>
|
|
|
|
bool HeapRegion::oops_on_card_seq_iterate_careful(MemRegion mr,
|
|
|
|
Closure* cl) {
|
|
|
|
assert(MemRegion(bottom(), end()).contains(mr), "Card region not in heap region");
|
|
|
|
G1CollectedHeap* g1h = G1CollectedHeap::heap();
|
|
|
|
|
|
|
|
// Special handling for humongous regions.
|
|
|
|
if (is_humongous()) {
|
|
|
|
return do_oops_on_card_in_humongous<Closure, is_gc_active>(mr, cl, g1h);
|
|
|
|
}
|
2018-08-22 20:37:07 +02:00
|
|
|
assert(is_old() || is_archive(), "Wrongly trying to iterate over region %u type %s", _hrm_index, get_type_str());
|
2017-06-02 13:45:15 +02:00
|
|
|
|
|
|
|
// Because mr has been trimmed to what's been allocated in this
|
|
|
|
// region, the parts of the heap that are examined here are always
|
|
|
|
// parsable; there's no need to use klass_or_null to detect
|
|
|
|
// in-progress allocation.
|
|
|
|
|
|
|
|
// Cache the boundaries of the memory region in some const locals
|
|
|
|
HeapWord* const start = mr.start();
|
|
|
|
HeapWord* const end = mr.end();
|
|
|
|
|
|
|
|
// Find the obj that extends onto mr.start().
|
|
|
|
// Update BOT as needed while finding start of (possibly dead)
|
|
|
|
// object containing the start of the region.
|
|
|
|
HeapWord* cur = block_start(start);
|
|
|
|
|
|
|
|
#ifdef ASSERT
|
|
|
|
{
|
|
|
|
assert(cur <= start,
|
|
|
|
"cur: " PTR_FORMAT ", start: " PTR_FORMAT, p2i(cur), p2i(start));
|
|
|
|
HeapWord* next = cur + block_size(cur);
|
|
|
|
assert(start < next,
|
|
|
|
"start: " PTR_FORMAT ", next: " PTR_FORMAT, p2i(start), p2i(next));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-10-23 11:46:12 +02:00
|
|
|
const G1CMBitMap* const bitmap = g1h->concurrent_mark()->prev_mark_bitmap();
|
2017-06-02 13:45:15 +02:00
|
|
|
do {
|
|
|
|
oop obj = oop(cur);
|
2017-08-23 14:52:55 -04:00
|
|
|
assert(oopDesc::is_oop(obj, true), "Not an oop at " PTR_FORMAT, p2i(cur));
|
2017-06-02 13:45:15 +02:00
|
|
|
assert(obj->klass_or_null() != NULL,
|
|
|
|
"Unparsable heap at " PTR_FORMAT, p2i(cur));
|
|
|
|
|
|
|
|
size_t size;
|
|
|
|
bool is_dead = is_obj_dead_with_size(obj, bitmap, &size);
|
|
|
|
|
|
|
|
cur += size;
|
|
|
|
if (!is_dead) {
|
|
|
|
// Process live object's references.
|
|
|
|
|
|
|
|
// Non-objArrays are usually marked imprecise at the object
|
|
|
|
// start, in which case we need to iterate over them in full.
|
|
|
|
// objArrays are precisely marked, but can still be iterated
|
|
|
|
// over in full if completely covered.
|
|
|
|
if (!obj->is_objArray() || (((HeapWord*)obj) >= start && cur <= end)) {
|
|
|
|
obj->oop_iterate(cl);
|
|
|
|
} else {
|
|
|
|
obj->oop_iterate(cl, mr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (cur < end);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-05-13 15:16:06 +02:00
|
|
|
#endif // SHARE_VM_GC_G1_HEAPREGION_INLINE_HPP
|