author | tschatzl |
Wed, 17 Jul 2019 16:33:19 +0200 | |
changeset 55722 | 5ee183a90e65 |
parent 54843 | 25c329958c70 |
child 58015 | dd84de796f2c |
permissions | -rw-r--r-- |
32185
49a57ff2c3cb
8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff
changeset
|
1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
53116
diff
changeset
|
2 |
* Copyright (c) 2015, 2019, 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 |
|
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
53116
diff
changeset
|
25 |
#ifndef SHARE_GC_G1_G1ALLOCATOR_INLINE_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
53116
diff
changeset
|
26 |
#define SHARE_GC_G1_G1ALLOCATOR_INLINE_HPP |
32185
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" |
54786 | 31 |
#include "memory/universe.hpp" |
32185
49a57ff2c3cb
8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff
changeset
|
32 |
|
49713 | 33 |
inline MutatorAllocRegion* G1Allocator::mutator_alloc_region() { |
34 |
return &_mutator_alloc_region; |
|
35 |
} |
|
36 |
||
37 |
inline SurvivorGCAllocRegion* G1Allocator::survivor_gc_alloc_region() { |
|
38 |
return &_survivor_gc_alloc_region; |
|
39 |
} |
|
40 |
||
41 |
inline OldGCAllocRegion* G1Allocator::old_gc_alloc_region() { |
|
42 |
return &_old_gc_alloc_region; |
|
43 |
} |
|
44 |
||
49945 | 45 |
inline HeapWord* G1Allocator::attempt_allocation(size_t min_word_size, |
46 |
size_t desired_word_size, |
|
47 |
size_t* actual_word_size) { |
|
48 |
HeapWord* result = mutator_alloc_region()->attempt_retained_allocation(min_word_size, desired_word_size, actual_word_size); |
|
49 |
if (result != NULL) { |
|
50 |
return result; |
|
51 |
} |
|
52 |
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
|
53 |
} |
49a57ff2c3cb
8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff
changeset
|
54 |
|
49713 | 55 |
inline HeapWord* G1Allocator::attempt_allocation_locked(size_t word_size) { |
49323 | 56 |
HeapWord* result = mutator_alloc_region()->attempt_allocation_locked(word_size); |
57 |
assert(result != NULL || mutator_alloc_region()->get() == NULL, |
|
58 |
"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
|
59 |
return result; |
49a57ff2c3cb
8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff
changeset
|
60 |
} |
49a57ff2c3cb
8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff
changeset
|
61 |
|
49713 | 62 |
inline HeapWord* G1Allocator::attempt_allocation_force(size_t word_size) { |
49323 | 63 |
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
|
64 |
} |
49a57ff2c3cb
8073052: Rename and clean up the allocation manager hierarchy in g1Allocator.?pp
tschatzl
parents:
diff
changeset
|
65 |
|
54843
25c329958c70
8200545: Improve filter for enqueued deferred cards
tschatzl
parents:
54786
diff
changeset
|
66 |
inline PLAB* G1PLABAllocator::alloc_buffer(G1HeapRegionAttr dest) { |
49713 | 67 |
assert(dest.is_valid(), |
54843
25c329958c70
8200545: Improve filter for enqueued deferred cards
tschatzl
parents:
54786
diff
changeset
|
68 |
"Allocation buffer index out of bounds: %s", dest.get_type_str()); |
25c329958c70
8200545: Improve filter for enqueued deferred cards
tschatzl
parents:
54786
diff
changeset
|
69 |
assert(_alloc_buffers[dest.type()] != NULL, |
25c329958c70
8200545: Improve filter for enqueued deferred cards
tschatzl
parents:
54786
diff
changeset
|
70 |
"Allocation buffer is NULL: %s", dest.get_type_str()); |
25c329958c70
8200545: Improve filter for enqueued deferred cards
tschatzl
parents:
54786
diff
changeset
|
71 |
return _alloc_buffers[dest.type()]; |
49713 | 72 |
} |
73 |
||
54843
25c329958c70
8200545: Improve filter for enqueued deferred cards
tschatzl
parents:
54786
diff
changeset
|
74 |
inline HeapWord* G1PLABAllocator::plab_allocate(G1HeapRegionAttr dest, |
49323 | 75 |
size_t word_sz) { |
76 |
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
|
77 |
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
|
78 |
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
|
79 |
} else { |
8dd0e7359751
8133470: Uses of Atomic methods in plab.hpp should be moved to .inline.hpp file
tschatzl
parents:
32185
diff
changeset
|
80 |
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
|
81 |
} |
8dd0e7359751
8133470: Uses of Atomic methods in plab.hpp should be moved to .inline.hpp file
tschatzl
parents:
32185
diff
changeset
|
82 |
} |
8dd0e7359751
8133470: Uses of Atomic methods in plab.hpp should be moved to .inline.hpp file
tschatzl
parents:
32185
diff
changeset
|
83 |
|
54843
25c329958c70
8200545: Improve filter for enqueued deferred cards
tschatzl
parents:
54786
diff
changeset
|
84 |
inline HeapWord* G1PLABAllocator::allocate(G1HeapRegionAttr dest, |
49713 | 85 |
size_t word_sz, |
86 |
bool* refill_failed) { |
|
87 |
HeapWord* const obj = plab_allocate(dest, word_sz); |
|
88 |
if (obj != NULL) { |
|
89 |
return obj; |
|
90 |
} |
|
91 |
return allocate_direct_or_new_plab(dest, word_sz, refill_failed); |
|
92 |
} |
|
93 |
||
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46285
diff
changeset
|
94 |
// 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
|
95 |
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
|
96 |
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
|
97 |
return; |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46285
diff
changeset
|
98 |
} |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46285
diff
changeset
|
99 |
|
46285
5b673a9fa682
8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents:
33105
diff
changeset
|
100 |
_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
|
101 |
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
|
102 |
_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
|
103 |
(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
|
104 |
HeapRegion::GrainBytes); |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46285
diff
changeset
|
105 |
_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
|
106 |
(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
|
107 |
HeapRegion::GrainBytes); |
46285
5b673a9fa682
8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents:
33105
diff
changeset
|
108 |
} |
5b673a9fa682
8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents:
33105
diff
changeset
|
109 |
|
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46285
diff
changeset
|
110 |
// 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
|
111 |
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
|
112 |
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
|
113 |
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
|
114 |
open ? "open" : "closed", |
c9325aa887da
8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents:
52062
diff
changeset
|
115 |
p2i(range.start()), |
c9325aa887da
8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents:
52062
diff
changeset
|
116 |
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
|
117 |
if (open) { |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46285
diff
changeset
|
118 |
_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
|
119 |
} else { |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46285
diff
changeset
|
120 |
_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
|
121 |
} |
46285
5b673a9fa682
8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents:
33105
diff
changeset
|
122 |
} |
5b673a9fa682
8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents:
33105
diff
changeset
|
123 |
|
52674
c9325aa887da
8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents:
52062
diff
changeset
|
124 |
// 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
|
125 |
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
|
126 |
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
|
127 |
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
|
128 |
open ? "open" : "closed", |
c9325aa887da
8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents:
52062
diff
changeset
|
129 |
p2i(range.start()), |
c9325aa887da
8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents:
52062
diff
changeset
|
130 |
p2i(range.last())); |
c9325aa887da
8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents:
52062
diff
changeset
|
131 |
if (open) { |
c9325aa887da
8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents:
52062
diff
changeset
|
132 |
_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
|
133 |
} else { |
c9325aa887da
8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents:
52062
diff
changeset
|
134 |
_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
|
135 |
} |
c9325aa887da
8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents:
52062
diff
changeset
|
136 |
} |
c9325aa887da
8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents:
52062
diff
changeset
|
137 |
|
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46285
diff
changeset
|
138 |
// 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
|
139 |
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
|
140 |
// 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
|
141 |
// 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
|
142 |
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
|
143 |
} |
5b673a9fa682
8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents:
33105
diff
changeset
|
144 |
|
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46285
diff
changeset
|
145 |
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
|
146 |
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
|
147 |
} |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46285
diff
changeset
|
148 |
|
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46285
diff
changeset
|
149 |
// 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
|
150 |
// unnecessarily. |
5b673a9fa682
8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents:
33105
diff
changeset
|
151 |
inline bool G1ArchiveAllocator::archive_check_enabled() { |
5b673a9fa682
8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents:
33105
diff
changeset
|
152 |
return _archive_check_enabled; |
5b673a9fa682
8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents:
33105
diff
changeset
|
153 |
} |
5b673a9fa682
8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents:
33105
diff
changeset
|
154 |
|
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46285
diff
changeset
|
155 |
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
|
156 |
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
|
157 |
} |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46285
diff
changeset
|
158 |
|
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46285
diff
changeset
|
159 |
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
|
160 |
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
|
161 |
} |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46285
diff
changeset
|
162 |
|
52062
8dbf1a13af49
8206009: Move CDS java heap object archiving code to heapShared.hpp and heapShared.cpp
jiangli
parents:
50095
diff
changeset
|
163 |
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
|
164 |
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
|
165 |
in_open_archive_range(object))); |
46285
5b673a9fa682
8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents:
33105
diff
changeset
|
166 |
} |
5b673a9fa682
8171235: Move archive object code from G1MarkSweep into G1ArchiveAllocator
sjohanss
parents:
33105
diff
changeset
|
167 |
|
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
53116
diff
changeset
|
168 |
#endif // SHARE_GC_G1_G1ALLOCATOR_INLINE_HPP |