src/hotspot/share/gc/g1/g1Allocator.inline.hpp
author sangheki
Fri, 21 Dec 2018 08:18:59 -0800
changeset 53116 bb03098c4dde
parent 52674 c9325aa887da
child 53244 9807daeb47c4
permissions -rw-r--r--
8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC 8202286: Allocation of old generation of Java heap on alternate memory devices Summary: Enable an experimental feature in HotSpot JVM to allocate old generation of G1 GC on an alternative memory device, such as NV-DIMMs. Reviewed-by: sangheki, sjohanss Contributed-by: kishor.kharbas@intel.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
32185
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
     1
/*
49713
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
     2
 * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
32185
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
     4
 *
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
     7
 * published by the Free Software Foundation.
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
     8
 *
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    13
 * accompanied this code).
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    14
 *
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    18
 *
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    21
 * questions.
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    22
 *
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    23
 */
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    24
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    25
#ifndef SHARE_VM_GC_G1_G1ALLOCATOR_INLINE_HPP
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    26
#define SHARE_VM_GC_G1_G1ALLOCATOR_INLINE_HPP
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    27
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    28
#include "gc/g1/g1Allocator.hpp"
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    29
#include "gc/g1/g1AllocRegion.inline.hpp"
32378
8dd0e7359751 8133470: Uses of Atomic methods in plab.hpp should be moved to .inline.hpp file
tschatzl
parents: 32185
diff changeset
    30
#include "gc/shared/plab.inline.hpp"
32185
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    31
49713
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    32
inline MutatorAllocRegion* G1Allocator::mutator_alloc_region() {
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    33
  return &_mutator_alloc_region;
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    34
}
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    35
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    36
inline SurvivorGCAllocRegion* G1Allocator::survivor_gc_alloc_region() {
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    37
  return &_survivor_gc_alloc_region;
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    38
}
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    39
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    40
inline OldGCAllocRegion* G1Allocator::old_gc_alloc_region() {
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    41
  return &_old_gc_alloc_region;
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    42
}
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    43
49945
9425445633cf 8191471: Elastic TLABs for G1
sjohanss
parents: 49713
diff changeset
    44
inline HeapWord* G1Allocator::attempt_allocation(size_t min_word_size,
9425445633cf 8191471: Elastic TLABs for G1
sjohanss
parents: 49713
diff changeset
    45
                                                 size_t desired_word_size,
9425445633cf 8191471: Elastic TLABs for G1
sjohanss
parents: 49713
diff changeset
    46
                                                 size_t* actual_word_size) {
9425445633cf 8191471: Elastic TLABs for G1
sjohanss
parents: 49713
diff changeset
    47
  HeapWord* result = mutator_alloc_region()->attempt_retained_allocation(min_word_size, desired_word_size, actual_word_size);
9425445633cf 8191471: Elastic TLABs for G1
sjohanss
parents: 49713
diff changeset
    48
  if (result != NULL) {
9425445633cf 8191471: Elastic TLABs for G1
sjohanss
parents: 49713
diff changeset
    49
    return result;
9425445633cf 8191471: Elastic TLABs for G1
sjohanss
parents: 49713
diff changeset
    50
  }
9425445633cf 8191471: Elastic TLABs for G1
sjohanss
parents: 49713
diff changeset
    51
  return mutator_alloc_region()->attempt_allocation(min_word_size, desired_word_size, actual_word_size);
32185
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    52
}
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    53
49713
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    54
inline HeapWord* G1Allocator::attempt_allocation_locked(size_t word_size) {
49323
565336327354 8198424: Remove G1AllocationContext
sjohanss
parents: 48963
diff changeset
    55
  HeapWord* result = mutator_alloc_region()->attempt_allocation_locked(word_size);
565336327354 8198424: Remove G1AllocationContext
sjohanss
parents: 48963
diff changeset
    56
  assert(result != NULL || mutator_alloc_region()->get() == NULL,
565336327354 8198424: Remove G1AllocationContext
sjohanss
parents: 48963
diff changeset
    57
         "Must not have a mutator alloc region if there is no memory, but is " PTR_FORMAT, p2i(mutator_alloc_region()->get()));
32185
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    58
  return result;
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    59
}
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    60
49713
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    61
inline HeapWord* G1Allocator::attempt_allocation_force(size_t word_size) {
49323
565336327354 8198424: Remove G1AllocationContext
sjohanss
parents: 48963
diff changeset
    62
  return mutator_alloc_region()->attempt_allocation_force(word_size);
32185
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    63
}
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
    64
49713
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    65
inline PLAB* G1PLABAllocator::alloc_buffer(InCSetState dest) {
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    66
  assert(dest.is_valid(),
50095
bf2f27b92064 8202745: Remove hyphens from "out-of-bounds".
goetz
parents: 49945
diff changeset
    67
         "Allocation buffer index out of bounds: " CSETSTATE_FORMAT, dest.value());
49713
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    68
  assert(_alloc_buffers[dest.value()] != NULL,
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    69
         "Allocation buffer is NULL: " CSETSTATE_FORMAT, dest.value());
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    70
  return _alloc_buffers[dest.value()];
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    71
}
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    72
32378
8dd0e7359751 8133470: Uses of Atomic methods in plab.hpp should be moved to .inline.hpp file
tschatzl
parents: 32185
diff changeset
    73
inline HeapWord* G1PLABAllocator::plab_allocate(InCSetState dest,
49323
565336327354 8198424: Remove G1AllocationContext
sjohanss
parents: 48963
diff changeset
    74
                                                size_t word_sz) {
565336327354 8198424: Remove G1AllocationContext
sjohanss
parents: 48963
diff changeset
    75
  PLAB* buffer = alloc_buffer(dest);
32378
8dd0e7359751 8133470: Uses of Atomic methods in plab.hpp should be moved to .inline.hpp file
tschatzl
parents: 32185
diff changeset
    76
  if (_survivor_alignment_bytes == 0 || !dest.is_young()) {
8dd0e7359751 8133470: Uses of Atomic methods in plab.hpp should be moved to .inline.hpp file
tschatzl
parents: 32185
diff changeset
    77
    return buffer->allocate(word_sz);
8dd0e7359751 8133470: Uses of Atomic methods in plab.hpp should be moved to .inline.hpp file
tschatzl
parents: 32185
diff changeset
    78
  } else {
8dd0e7359751 8133470: Uses of Atomic methods in plab.hpp should be moved to .inline.hpp file
tschatzl
parents: 32185
diff changeset
    79
    return buffer->allocate_aligned(word_sz, _survivor_alignment_bytes);
8dd0e7359751 8133470: Uses of Atomic methods in plab.hpp should be moved to .inline.hpp file
tschatzl
parents: 32185
diff changeset
    80
  }
8dd0e7359751 8133470: Uses of Atomic methods in plab.hpp should be moved to .inline.hpp file
tschatzl
parents: 32185
diff changeset
    81
}
8dd0e7359751 8133470: Uses of Atomic methods in plab.hpp should be moved to .inline.hpp file
tschatzl
parents: 32185
diff changeset
    82
49713
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    83
inline HeapWord* G1PLABAllocator::allocate(InCSetState dest,
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    84
                                           size_t word_sz,
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    85
                                           bool* refill_failed) {
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    86
  HeapWord* const obj = plab_allocate(dest, word_sz);
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    87
  if (obj != NULL) {
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    88
    return obj;
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    89
  }
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    90
  return allocate_direct_or_new_plab(dest, word_sz, refill_failed);
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    91
}
456e51e56ea2 8200169: Flatten G1Allocator class hierarchy
sjohanss
parents: 49323
diff changeset
    92
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
    93
// Create the maps which is used to identify archive objects.
46285
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 33105
diff changeset
    94
inline void G1ArchiveAllocator::enable_archive_object_check() {
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
    95
  if (_archive_check_enabled) {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
    96
    return;
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
    97
  }
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
    98
46285
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 33105
diff changeset
    99
  _archive_check_enabled = true;
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 52674
diff changeset
   100
  size_t length = G1CollectedHeap::heap()->max_reserved_capacity();
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   101
  _closed_archive_region_map.initialize((HeapWord*)Universe::heap()->base(),
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   102
                                        (HeapWord*)Universe::heap()->base() + length,
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   103
                                        HeapRegion::GrainBytes);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   104
  _open_archive_region_map.initialize((HeapWord*)Universe::heap()->base(),
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   105
                                      (HeapWord*)Universe::heap()->base() + length,
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   106
                                      HeapRegion::GrainBytes);
46285
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 33105
diff changeset
   107
}
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 33105
diff changeset
   108
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   109
// Set the regions containing the specified address range as archive.
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   110
inline void G1ArchiveAllocator::set_range_archive(MemRegion range, bool open) {
46285
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 33105
diff changeset
   111
  assert(_archive_check_enabled, "archive range check not enabled");
52674
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   112
  log_info(gc, cds)("Mark %s archive regions in map: [" PTR_FORMAT ", " PTR_FORMAT "]",
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   113
                     open ? "open" : "closed",
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   114
                     p2i(range.start()),
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   115
                     p2i(range.last()));
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   116
  if (open) {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   117
    _open_archive_region_map.set_by_address(range, true);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   118
  } else {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   119
    _closed_archive_region_map.set_by_address(range, true);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   120
  }
46285
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 33105
diff changeset
   121
}
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 33105
diff changeset
   122
52674
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   123
// Clear the archive regions map containing the specified address range.
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   124
inline void G1ArchiveAllocator::clear_range_archive(MemRegion range, bool open) {
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   125
  assert(_archive_check_enabled, "archive range check not enabled");
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   126
  log_info(gc, cds)("Clear %s archive regions in map: [" PTR_FORMAT ", " PTR_FORMAT "]",
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   127
                    open ? "open" : "closed",
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   128
                    p2i(range.start()),
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   129
                    p2i(range.last()));
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   130
  if (open) {
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   131
    _open_archive_region_map.set_by_address(range, false);
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   132
  } else {
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   133
    _closed_archive_region_map.set_by_address(range, false);
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   134
  }
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   135
}
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52062
diff changeset
   136
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   137
// Check if an object is in a closed archive region using the _archive_region_map.
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   138
inline bool G1ArchiveAllocator::in_closed_archive_range(oop object) {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   139
  // This is the out-of-line part of is_closed_archive_object test, done separately
46285
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 33105
diff changeset
   140
  // to avoid additional performance impact when the check is not enabled.
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   141
  return _closed_archive_region_map.get_by_address((HeapWord*)object);
46285
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 33105
diff changeset
   142
}
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 33105
diff changeset
   143
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   144
inline bool G1ArchiveAllocator::in_open_archive_range(oop object) {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   145
  return _open_archive_region_map.get_by_address((HeapWord*)object);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   146
}
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   147
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   148
// Check if archive object checking is enabled, to avoid calling in_open/closed_archive_range
46285
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 33105
diff changeset
   149
// unnecessarily.
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 33105
diff changeset
   150
inline bool G1ArchiveAllocator::archive_check_enabled() {
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 33105
diff changeset
   151
  return _archive_check_enabled;
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 33105
diff changeset
   152
}
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 33105
diff changeset
   153
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   154
inline bool G1ArchiveAllocator::is_closed_archive_object(oop object) {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   155
  return (archive_check_enabled() && in_closed_archive_range(object));
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   156
}
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   157
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   158
inline bool G1ArchiveAllocator::is_open_archive_object(oop object) {
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   159
  return (archive_check_enabled() && in_open_archive_range(object));
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   160
}
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   161
52062
8dbf1a13af49 8206009: Move CDS java heap object archiving code to heapShared.hpp and heapShared.cpp
jiangli
parents: 50095
diff changeset
   162
inline bool G1ArchiveAllocator::is_archived_object(oop object) {
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   163
  return (archive_check_enabled() && (in_closed_archive_range(object) ||
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46285
diff changeset
   164
                                      in_open_archive_range(object)));
46285
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 33105
diff changeset
   165
}
5b673a9fa682 8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents: 33105
diff changeset
   166
32185
49a57ff2c3cb 8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff changeset
   167
#endif // SHARE_VM_GC_G1_G1ALLOCATOR_HPP