Path: blob/master/src/hotspot/share/gc/g1/g1BlockOffsetTable.inline.hpp
40957 views
/*1* Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#ifndef SHARE_GC_G1_G1BLOCKOFFSETTABLE_INLINE_HPP25#define SHARE_GC_G1_G1BLOCKOFFSETTABLE_INLINE_HPP2627#include "gc/g1/g1BlockOffsetTable.hpp"2829#include "gc/g1/heapRegion.hpp"30#include "gc/shared/memset_with_concurrent_readers.hpp"31#include "runtime/atomic.hpp"3233inline HeapWord* G1BlockOffsetTablePart::block_start(const void* addr) {34if (addr >= _hr->bottom() && addr < _hr->end()) {35HeapWord* q = block_at_or_preceding(addr, true, _next_offset_index-1);36return forward_to_block_containing_addr(q, addr);37} else {38return NULL;39}40}4142inline HeapWord* G1BlockOffsetTablePart::block_start_const(const void* addr) const {43if (addr >= _hr->bottom() && addr < _hr->end()) {44HeapWord* q = block_at_or_preceding(addr, true, _next_offset_index-1);45HeapWord* n = q + block_size(q);46return forward_to_block_containing_addr_const(q, n, addr);47} else {48return NULL;49}50}5152u_char G1BlockOffsetTable::offset_array(size_t index) const {53check_index(index, "index out of range");54return Atomic::load(&_offset_array[index]);55}5657void G1BlockOffsetTable::set_offset_array_raw(size_t index, u_char offset) {58Atomic::store(&_offset_array[index], offset);59}6061void G1BlockOffsetTable::set_offset_array(size_t index, u_char offset) {62check_index(index, "index out of range");63set_offset_array_raw(index, offset);64}6566void G1BlockOffsetTable::set_offset_array(size_t index, HeapWord* high, HeapWord* low) {67check_index(index, "index out of range");68assert(high >= low, "addresses out of order");69size_t offset = pointer_delta(high, low);70check_offset(offset, "offset too large");71set_offset_array(index, (u_char)offset);72}7374void G1BlockOffsetTable::set_offset_array(size_t left, size_t right, u_char offset) {75check_index(right, "right index out of range");76assert(left <= right, "indexes out of order");77size_t num_cards = right - left + 1;78memset_with_concurrent_readers79(const_cast<u_char*> (&_offset_array[left]), offset, num_cards);80}8182// Variant of index_for that does not check the index for validity.83inline size_t G1BlockOffsetTable::index_for_raw(const void* p) const {84return pointer_delta((char*)p, _reserved.start(), sizeof(char)) >> BOTConstants::LogN;85}8687inline size_t G1BlockOffsetTable::index_for(const void* p) const {88char* pc = (char*)p;89assert(pc >= (char*)_reserved.start() &&90pc < (char*)_reserved.end(),91"p (" PTR_FORMAT ") not in reserved [" PTR_FORMAT ", " PTR_FORMAT ")",92p2i(p), p2i(_reserved.start()), p2i(_reserved.end()));93size_t result = index_for_raw(p);94check_index(result, "bad index from address");95return result;96}9798inline HeapWord* G1BlockOffsetTable::address_for_index(size_t index) const {99check_index(index, "index out of range");100HeapWord* result = address_for_index_raw(index);101assert(result >= _reserved.start() && result < _reserved.end(),102"bad address from index result " PTR_FORMAT103" _reserved.start() " PTR_FORMAT " _reserved.end() " PTR_FORMAT,104p2i(result), p2i(_reserved.start()), p2i(_reserved.end()));105return result;106}107108inline size_t G1BlockOffsetTablePart::block_size(const HeapWord* p) const {109return _hr->block_size(p);110}111112inline HeapWord* G1BlockOffsetTablePart::block_at_or_preceding(const void* addr,113bool has_max_index,114size_t max_index) const {115assert(_object_can_span || _bot->offset_array(_bot->index_for(_hr->bottom())) == 0,116"Object crossed region boundary, found offset %u instead of 0",117(uint) _bot->offset_array(_bot->index_for(_hr->bottom())));118size_t index = _bot->index_for(addr);119// We must make sure that the offset table entry we use is valid. If120// "addr" is past the end, start at the last known one and go forward.121if (has_max_index) {122index = MIN2(index, max_index);123}124HeapWord* q = _bot->address_for_index(index);125126uint offset = _bot->offset_array(index); // Extend u_char to uint.127while (offset >= BOTConstants::N_words) {128// The excess of the offset from N_words indicates a power of Base129// to go back by.130size_t n_cards_back = BOTConstants::entry_to_cards_back(offset);131q -= (BOTConstants::N_words * n_cards_back);132index -= n_cards_back;133offset = _bot->offset_array(index);134}135assert(offset < BOTConstants::N_words, "offset too large");136q -= offset;137return q;138}139140inline HeapWord* G1BlockOffsetTablePart::forward_to_block_containing_addr_const(HeapWord* q, HeapWord* n,141const void* addr) const {142if (addr >= _hr->top()) return _hr->top();143while (n <= addr) {144q = n;145oop obj = cast_to_oop(q);146if (obj->klass_or_null_acquire() == NULL) {147return q;148}149n += block_size(q);150}151assert(q <= n, "wrong order for q and addr");152assert(addr < n, "wrong order for addr and n");153return q;154}155156inline HeapWord* G1BlockOffsetTablePart::forward_to_block_containing_addr(HeapWord* q,157const void* addr) {158if (cast_to_oop(q)->klass_or_null_acquire() == NULL) {159return q;160}161HeapWord* n = q + block_size(q);162// In the normal case, where the query "addr" is a card boundary, and the163// offset table chunks are the same size as cards, the block starting at164// "q" will contain addr, so the test below will fail, and we'll fall165// through quickly.166if (n <= addr) {167q = forward_to_block_containing_addr_slow(q, n, addr);168}169assert(q <= addr, "wrong order for current and arg");170return q;171}172173#endif // SHARE_GC_G1_G1BLOCKOFFSETTABLE_INLINE_HPP174175176