annotate src/share/vm/gc_implementation/g1/g1SATBCardTableModRefBS.cpp @ 21143:e13c65f874e5

Make G1 and Graal be friends in JDK9
author iveresov
date Tue, 28 Apr 2015 17:08:47 -0700
parents 7848fc12602b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
1 /*
12316
190899198332 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 11068
diff changeset
2 * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
4 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
7 * published by the Free Software Foundation.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
8 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
13 * accompanied this code).
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
14 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1317
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1317
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1317
diff changeset
21 * questions.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
22 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
23 */
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #include "precompiled.hpp"
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
26 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "gc_implementation/g1/g1SATBCardTableModRefBS.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "gc_implementation/g1/heapRegion.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "gc_implementation/g1/satbQueue.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "runtime/mutexLocker.hpp"
20197
ce8f6bb717c9 8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents: 17951
diff changeset
31 #include "runtime/orderAccess.inline.hpp"
7180
f34d701e952e 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 3960
diff changeset
32 #include "runtime/thread.inline.hpp"
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
33
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
34 G1SATBCardTableModRefBS::G1SATBCardTableModRefBS(MemRegion whole_heap,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
35 int max_covered_regions) :
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
36 CardTableModRefBSForCTRS(whole_heap, max_covered_regions)
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
37 {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
38 _kind = G1SATBCT;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
39 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
40
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
41 void G1SATBCardTableModRefBS::enqueue(oop pre_val) {
3249
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 1972
diff changeset
42 // Nulls should have been already filtered.
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 1972
diff changeset
43 assert(pre_val->is_oop(true), "Error");
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 1972
diff changeset
44
1317
d4197f8d516a 6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents: 845
diff changeset
45 if (!JavaThread::satb_mark_queue_set().is_active()) return;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
46 Thread* thr = Thread::current();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
47 if (thr->is_Java_thread()) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
48 JavaThread* jt = (JavaThread*)thr;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
49 jt->satb_mark_queue().enqueue(pre_val);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
50 } else {
11068
b30744960351 8014022: G1: Non Java threads should lock the shared SATB queue lock without safepoint checks.
brutisso
parents: 7180
diff changeset
51 MutexLockerEx x(Shared_SATB_Q_lock, Mutex::_no_safepoint_check_flag);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
52 JavaThread::satb_mark_queue_set().shared_satb_queue()->enqueue(pre_val);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
53 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
54 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
55
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
56 template <class T> void
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
57 G1SATBCardTableModRefBS::write_ref_array_pre_work(T* dst, int count) {
1317
d4197f8d516a 6935821: G1: threads created during marking do not active their SATB queues
tonyp
parents: 845
diff changeset
58 if (!JavaThread::satb_mark_queue_set().is_active()) return;
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
59 T* elem_ptr = dst;
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
60 for (int i = 0; i < count; i++, elem_ptr++) {
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
61 T heap_oop = oopDesc::load_heap_oop(elem_ptr);
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
62 if (!oopDesc::is_null(heap_oop)) {
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
63 enqueue(oopDesc::decode_heap_oop_not_null(heap_oop));
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 342
diff changeset
64 }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
65 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
66 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
67
20275
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
68 void G1SATBCardTableModRefBS::write_ref_array_pre(oop* dst, int count, bool dest_uninitialized) {
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
69 if (!dest_uninitialized) {
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
70 write_ref_array_pre_work(dst, count);
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
71 }
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
72 }
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
73 void G1SATBCardTableModRefBS::write_ref_array_pre(narrowOop* dst, int count, bool dest_uninitialized) {
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
74 if (!dest_uninitialized) {
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
75 write_ref_array_pre_work(dst, count);
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
76 }
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
77 }
e5035defa3c4 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 20197
diff changeset
78
12343
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
79 bool G1SATBCardTableModRefBS::mark_card_deferred(size_t card_index) {
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
80 jbyte val = _byte_map[card_index];
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
81 // It's already processed
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
82 if ((val & (clean_card_mask_val() | deferred_card_val())) == deferred_card_val()) {
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
83 return false;
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
84 }
12835
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
85
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
86 if (val == g1_young_gen) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
87 // the card is for a young gen region. We don't need to keep track of all pointers into young
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
88 return false;
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
89 }
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
90
12343
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
91 // Cached bit can be installed either on a clean card or on a claimed card.
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
92 jbyte new_val = val;
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
93 if (val == clean_card_val()) {
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
94 new_val = (jbyte)deferred_card_val();
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
95 } else {
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
96 if (val & claimed_card_val()) {
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
97 new_val = val | (jbyte)deferred_card_val();
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
98 }
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
99 }
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
100 if (new_val != val) {
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
101 Atomic::cmpxchg(new_val, &_byte_map[card_index], val);
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
102 }
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
103 return true;
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
104 }
d55c004e1d4d 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 11068
diff changeset
105
12835
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
106 void G1SATBCardTableModRefBS::g1_mark_as_young(const MemRegion& mr) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
107 jbyte *const first = byte_for(mr.start());
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
108 jbyte *const last = byte_after(mr.last());
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
109
17951
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
110 // Below we may use an explicit loop instead of memset() because on
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
111 // certain platforms memset() can give concurrent readers phantom zeros.
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
112 if (UseMemSetInBOT) {
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
113 memset(first, g1_young_gen, last - first);
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
114 } else {
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
115 for (jbyte* i = first; i < last; i++) {
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
116 *i = g1_young_gen;
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
117 }
6a0ad2977919 8039042: G1: Phantom zeros in cardtable
pliden
parents: 14443
diff changeset
118 }
12835
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
119 }
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
120
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
121 #ifndef PRODUCT
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
122 void G1SATBCardTableModRefBS::verify_g1_young_region(MemRegion mr) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
123 verify_region(mr, g1_young_gen, true);
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
124 }
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
125 #endif
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
126
20543
e7d0505c8a30 8059758: Footprint regressions with JDK-8038423
tschatzl
parents: 20337
diff changeset
127 void G1SATBCardTableLoggingModRefBSChangedListener::on_commit(uint start_idx, size_t num_regions, bool zero_filled) {
e7d0505c8a30 8059758: Footprint regressions with JDK-8038423
tschatzl
parents: 20337
diff changeset
128 // Default value for a clean card on the card table is -1. So we cannot take advantage of the zero_filled parameter.
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
129 MemRegion mr(G1CollectedHeap::heap()->bottom_addr_for_region(start_idx), num_regions * HeapRegion::GrainWords);
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
130 _card_table->clear(mr);
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
131 }
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
132
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
133 G1SATBCardTableLoggingModRefBS::
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
134 G1SATBCardTableLoggingModRefBS(MemRegion whole_heap,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
135 int max_covered_regions) :
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
136 G1SATBCardTableModRefBS(whole_heap, max_covered_regions),
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
137 _dcqs(JavaThread::dirty_card_queue_set()),
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
138 _listener()
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
139 {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
140 _kind = G1SATBCTLogging;
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
141 _listener.set_card_table(this);
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
142 }
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
143
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
144 void G1SATBCardTableLoggingModRefBS::initialize(G1RegionToSpaceMapper* mapper) {
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
145 mapper->set_mapping_changed_listener(&_listener);
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
146
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
147 _byte_map_size = mapper->reserved().byte_size();
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
148
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
149 _guard_index = cards_required(_whole_heap.word_size()) - 1;
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
150 _last_valid_index = _guard_index - 1;
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
151
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
152 HeapWord* low_bound = _whole_heap.start();
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
153 HeapWord* high_bound = _whole_heap.end();
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
154
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
155 _cur_covered_regions = 1;
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
156 _covered[0] = _whole_heap;
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
157
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
158 _byte_map = (jbyte*) mapper->reserved().start();
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
159 byte_map_base = _byte_map - (uintptr_t(low_bound) >> card_shift);
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
160 assert(byte_for(low_bound) == &_byte_map[0], "Checking start of map");
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
161 assert(byte_for(high_bound-1) <= &_byte_map[_last_valid_index], "Checking end of map");
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
162
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
163 if (TraceCardTableModRefBS) {
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
164 gclog_or_tty->print_cr("G1SATBCardTableModRefBS::G1SATBCardTableModRefBS: ");
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
165 gclog_or_tty->print_cr(" "
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
166 " &_byte_map[0]: " INTPTR_FORMAT
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
167 " &_byte_map[_last_valid_index]: " INTPTR_FORMAT,
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
168 p2i(&_byte_map[0]),
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
169 p2i(&_byte_map[_last_valid_index]));
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
170 gclog_or_tty->print_cr(" "
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
171 " byte_map_base: " INTPTR_FORMAT,
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
172 p2i(byte_map_base));
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20275
diff changeset
173 }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
174 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
175
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
176 void
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
177 G1SATBCardTableLoggingModRefBS::write_ref_field_work(void* field,
14443
3205e78d8193 8029396: PPC64 (part 212): Several memory ordering fixes in C-code.
goetz
parents: 12840
diff changeset
178 oop new_val,
3205e78d8193 8029396: PPC64 (part 212): Several memory ordering fixes in C-code.
goetz
parents: 12840
diff changeset
179 bool release) {
12835
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
180 volatile jbyte* byte = byte_for(field);
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
181 if (*byte == g1_young_gen) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
182 return;
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
183 }
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
184 OrderAccess::storeload();
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
185 if (*byte != dirty_card) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
186 *byte = dirty_card;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
187 Thread* thr = Thread::current();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
188 if (thr->is_Java_thread()) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
189 JavaThread* jt = (JavaThread*)thr;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
190 jt->dirty_card_queue().enqueue(byte);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
191 } else {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
192 MutexLockerEx x(Shared_DirtyCardQ_lock,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
193 Mutex::_no_safepoint_check_flag);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
194 _dcqs.shared_dirty_card_queue()->enqueue(byte);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
195 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
196 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
197 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
198
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
199 void
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
200 G1SATBCardTableLoggingModRefBS::write_ref_field_static(void* field,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
201 oop new_val) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
202 uintptr_t field_uint = (uintptr_t)field;
12316
190899198332 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 11068
diff changeset
203 uintptr_t new_val_uint = cast_from_oop<uintptr_t>(new_val);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
204 uintptr_t comb = field_uint ^ new_val_uint;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
205 comb = comb >> HeapRegion::LogOfHRGrainBytes;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
206 if (comb == 0) return;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
207 if (new_val == NULL) return;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
208 // Otherwise, log it.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
209 G1SATBCardTableLoggingModRefBS* g1_bs =
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
210 (G1SATBCardTableLoggingModRefBS*)Universe::heap()->barrier_set();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
211 g1_bs->write_ref_field_work(field, new_val);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
212 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
213
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
214 void
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
215 G1SATBCardTableLoggingModRefBS::invalidate(MemRegion mr, bool whole_heap) {
12835
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
216 volatile jbyte* byte = byte_for(mr.start());
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
217 jbyte* last_byte = byte_for(mr.last());
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
218 Thread* thr = Thread::current();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
219 if (whole_heap) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
220 while (byte <= last_byte) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
221 *byte = dirty_card;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
222 byte++;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
223 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
224 } else {
12835
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
225 // skip all consecutive young cards
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
226 for (; byte <= last_byte && *byte == g1_young_gen; byte++);
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
227
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
228 if (byte <= last_byte) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
229 OrderAccess::storeload();
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
230 // Enqueue if necessary.
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
231 if (thr->is_Java_thread()) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
232 JavaThread* jt = (JavaThread*)thr;
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
233 for (; byte <= last_byte; byte++) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
234 if (*byte == g1_young_gen) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
235 continue;
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
236 }
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
237 if (*byte != dirty_card) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
238 *byte = dirty_card;
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
239 jt->dirty_card_queue().enqueue(byte);
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
240 }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
241 }
12835
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
242 } else {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
243 MutexLockerEx x(Shared_DirtyCardQ_lock,
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
244 Mutex::_no_safepoint_check_flag);
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
245 for (; byte <= last_byte; byte++) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
246 if (*byte == g1_young_gen) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
247 continue;
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
248 }
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
249 if (*byte != dirty_card) {
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
250 *byte = dirty_card;
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
251 _dcqs.shared_dirty_card_queue()->enqueue(byte);
69944b868a32 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 12343
diff changeset
252 }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
253 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
254 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
255 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
256 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
257 }
21143
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
258
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
259 void G1SATBCardTableModRefBS::write_ref_nmethod_pre(oop* dst, nmethod* nm) {
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
260 oop obj = oopDesc::load_heap_oop(dst);
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
261 if (obj != NULL) {
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
262 G1CollectedHeap* g1h = (G1CollectedHeap*)Universe::heap();
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
263 HeapRegion* hr = g1h->heap_region_containing(obj);
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
264 assert(!hr->continuesHumongous(),
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
265 err_msg("trying to add code root "INTPTR_FORMAT" in continuation of humongous region "HR_FORMAT
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
266 " starting at "HR_FORMAT,
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
267 (intptr_t)nm, HR_FORMAT_PARAMS(hr), HR_FORMAT_PARAMS(hr->humongous_start_region())));
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
268 hr->add_strong_code_root(nm);
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
269 }
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
270 }
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
271
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
272 class G1EnsureLastRefToRegion : public OopClosure {
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
273 G1CollectedHeap* _g1h;
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
274 HeapRegion* _hr;
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
275 oop* _dst;
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
276
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
277 bool _value;
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
278 public:
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
279 G1EnsureLastRefToRegion(G1CollectedHeap* g1h, HeapRegion* hr, oop* dst) :
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
280 _g1h(g1h), _hr(hr), _dst(dst), _value(true) {}
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
281
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
282 void do_oop(oop* p) {
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
283 if (_value && p != _dst) {
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
284 oop obj = oopDesc::load_heap_oop(p);
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
285 if (obj != NULL) {
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
286 HeapRegion* hr = _g1h->heap_region_containing(obj);
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
287 if (hr == _hr) {
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
288 // Another reference to the same region.
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
289 _value = false;
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
290 }
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
291 }
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
292 }
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
293 }
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
294 void do_oop(narrowOop* p) { ShouldNotReachHere(); }
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
295 bool value() const { return _value; }
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
296 };
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
297
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
298 void G1SATBCardTableModRefBS::write_ref_nmethod_post(oop* dst, nmethod* nm) {
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
299 oop obj = oopDesc::load_heap_oop(dst);
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
300 if (obj != NULL) {
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
301 G1CollectedHeap* g1h = (G1CollectedHeap*)Universe::heap();
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
302 HeapRegion* hr = g1h->heap_region_containing(obj);
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
303 assert(!hr->continuesHumongous(),
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
304 err_msg("trying to remove code root "INTPTR_FORMAT" in continuation of humongous region "HR_FORMAT
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
305 " starting at "HR_FORMAT,
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
306 (intptr_t)nm, HR_FORMAT_PARAMS(hr), HR_FORMAT_PARAMS(hr->humongous_start_region())));
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
307 G1EnsureLastRefToRegion ensure_last_ref(g1h, hr, dst);
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
308 nm->oops_do(&ensure_last_ref);
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
309 if (ensure_last_ref.value()) {
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
310 // Last reference to this region, remove the nmethod from the rset.
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
311 hr->remove_strong_code_root(nm);
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
312 }
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
313 }
e13c65f874e5 Make G1 and Graal be friends in JDK9
iveresov
parents: 20804
diff changeset
314 }