Path: blob/master/src/hotspot/share/gc/parallel/objectStartArray.cpp
41149 views
/*1* Copyright (c) 2001, 2018, 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#include "precompiled.hpp"25#include "gc/parallel/objectStartArray.inline.hpp"26#include "gc/shared/cardTableBarrierSet.hpp"27#include "memory/allocation.inline.hpp"28#include "oops/oop.inline.hpp"29#include "runtime/java.hpp"30#include "services/memTracker.hpp"31#include "utilities/align.hpp"3233void ObjectStartArray::initialize(MemRegion reserved_region) {34// We're based on the assumption that we use the same35// size blocks as the card table.36assert((int)block_size == (int)CardTable::card_size, "Sanity");37assert((int)block_size <= 512, "block_size must be less than or equal to 512");3839// Calculate how much space must be reserved40_reserved_region = reserved_region;4142size_t bytes_to_reserve = reserved_region.word_size() / block_size_in_words;43assert(bytes_to_reserve > 0, "Sanity");4445bytes_to_reserve =46align_up(bytes_to_reserve, os::vm_allocation_granularity());4748// Do not use large-pages for the backing store. The one large page region49// will be used for the heap proper.50ReservedSpace backing_store(bytes_to_reserve);51if (!backing_store.is_reserved()) {52vm_exit_during_initialization("Could not reserve space for ObjectStartArray");53}54MemTracker::record_virtual_memory_type((address)backing_store.base(), mtGC);5556// We do not commit any memory initially57if (!_virtual_space.initialize(backing_store, 0)) {58vm_exit_during_initialization("Could not commit space for ObjectStartArray");59}6061_raw_base = (jbyte*)_virtual_space.low_boundary();6263if (_raw_base == NULL) {64vm_exit_during_initialization("Could not get raw_base address");65}6667MemTracker::record_virtual_memory_type((address)_raw_base, mtGC);686970_offset_base = _raw_base - (size_t(reserved_region.start()) >> block_shift);7172_covered_region.set_start(reserved_region.start());73_covered_region.set_word_size(0);7475_blocks_region.set_start((HeapWord*)_raw_base);76_blocks_region.set_word_size(0);77}7879void ObjectStartArray::set_covered_region(MemRegion mr) {80assert(_reserved_region.contains(mr), "MemRegion outside of reserved space");81assert(_reserved_region.start() == mr.start(), "Attempt to move covered region");8283HeapWord* low_bound = mr.start();84HeapWord* high_bound = mr.end();85assert((uintptr_t(low_bound) & (block_size - 1)) == 0, "heap must start at block boundary");86assert((uintptr_t(high_bound) & (block_size - 1)) == 0, "heap must end at block boundary");8788size_t requested_blocks_size_in_bytes = mr.word_size() / block_size_in_words;8990// Only commit memory in page sized chunks91requested_blocks_size_in_bytes =92align_up(requested_blocks_size_in_bytes, os::vm_page_size());9394_covered_region = mr;9596size_t current_blocks_size_in_bytes = _blocks_region.byte_size();9798if (requested_blocks_size_in_bytes > current_blocks_size_in_bytes) {99// Expand100size_t expand_by = requested_blocks_size_in_bytes - current_blocks_size_in_bytes;101if (!_virtual_space.expand_by(expand_by)) {102vm_exit_out_of_memory(expand_by, OOM_MMAP_ERROR, "object start array expansion");103}104// Clear *only* the newly allocated region105memset(_blocks_region.end(), clean_block, expand_by);106}107108if (requested_blocks_size_in_bytes < current_blocks_size_in_bytes) {109// Shrink110size_t shrink_by = current_blocks_size_in_bytes - requested_blocks_size_in_bytes;111_virtual_space.shrink_by(shrink_by);112}113114_blocks_region.set_word_size(requested_blocks_size_in_bytes / sizeof(HeapWord));115116assert(requested_blocks_size_in_bytes % sizeof(HeapWord) == 0, "Block table not expanded in word sized increment");117assert(requested_blocks_size_in_bytes == _blocks_region.byte_size(), "Sanity");118assert(block_for_addr(low_bound) == &_raw_base[0], "Checking start of map");119assert(block_for_addr(high_bound-1) <= &_raw_base[_blocks_region.byte_size()-1], "Checking end of map");120}121122void ObjectStartArray::reset() {123memset(_blocks_region.start(), clean_block, _blocks_region.byte_size());124}125126bool ObjectStartArray::object_starts_in_range(HeapWord* start_addr,127HeapWord* end_addr) const {128assert(start_addr <= end_addr,129"Range is wrong. start_addr (" PTR_FORMAT ") is after end_addr (" PTR_FORMAT ")",130p2i(start_addr), p2i(end_addr));131132jbyte* start_block = block_for_addr(start_addr);133jbyte* end_block = block_for_addr(end_addr);134135for (jbyte* block = start_block; block <= end_block; block++) {136if (*block != clean_block) {137return true;138}139}140141return false;142}143144145