Skip to content

Commit 7e41ca3

Browse files
committedJun 5, 2021
8266957: SA has not followed JDK-8220587 and JDK-8224965
Reviewed-by: cjplummer, sspitsyn
1 parent 6ff978a commit 7e41ca3

23 files changed

+608
-241
lines changed
 

‎src/hotspot/share/gc/z/vmStructs_z.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ ZGlobalsForVMStructs::ZGlobalsForVMStructs() :
2828
_ZGlobalPhase(&ZGlobalPhase),
2929
_ZGlobalSeqNum(&ZGlobalSeqNum),
3030
_ZAddressOffsetMask(&ZAddressOffsetMask),
31+
_ZAddressMetadataMask(&ZAddressMetadataMask),
32+
_ZAddressMetadataFinalizable(&ZAddressMetadataFinalizable),
3133
_ZAddressGoodMask(&ZAddressGoodMask),
3234
_ZAddressBadMask(&ZAddressBadMask),
3335
_ZAddressWeakBadMask(&ZAddressWeakBadMask),

‎src/hotspot/share/gc/z/vmStructs_z.hpp

+18-1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ class ZGlobalsForVMStructs {
4646
uint32_t* _ZGlobalSeqNum;
4747

4848
uintptr_t* _ZAddressOffsetMask;
49+
uintptr_t* _ZAddressMetadataMask;
50+
uintptr_t* _ZAddressMetadataFinalizable;
4951
uintptr_t* _ZAddressGoodMask;
5052
uintptr_t* _ZAddressBadMask;
5153
uintptr_t* _ZAddressWeakBadMask;
@@ -55,13 +57,16 @@ class ZGlobalsForVMStructs {
5557
};
5658

5759
typedef ZGranuleMap<ZPage*> ZGranuleMapForPageTable;
60+
typedef ZGranuleMap<ZForwarding*> ZGranuleMapForForwarding;
5861
typedef ZAttachedArray<ZForwarding, ZForwardingEntry> ZAttachedArrayForForwarding;
5962

6063
#define VM_STRUCTS_ZGC(nonstatic_field, volatile_nonstatic_field, static_field) \
6164
static_field(ZGlobalsForVMStructs, _instance_p, ZGlobalsForVMStructs*) \
6265
nonstatic_field(ZGlobalsForVMStructs, _ZGlobalPhase, uint32_t*) \
6366
nonstatic_field(ZGlobalsForVMStructs, _ZGlobalSeqNum, uint32_t*) \
6467
nonstatic_field(ZGlobalsForVMStructs, _ZAddressOffsetMask, uintptr_t*) \
68+
nonstatic_field(ZGlobalsForVMStructs, _ZAddressMetadataMask, uintptr_t*) \
69+
nonstatic_field(ZGlobalsForVMStructs, _ZAddressMetadataFinalizable, uintptr_t*) \
6570
nonstatic_field(ZGlobalsForVMStructs, _ZAddressGoodMask, uintptr_t*) \
6671
nonstatic_field(ZGlobalsForVMStructs, _ZAddressBadMask, uintptr_t*) \
6772
nonstatic_field(ZGlobalsForVMStructs, _ZAddressWeakBadMask, uintptr_t*) \
@@ -72,6 +77,8 @@ typedef ZAttachedArray<ZForwarding, ZForwardingEntry> ZAttachedArrayForForwardin
7277
\
7378
nonstatic_field(ZHeap, _page_allocator, ZPageAllocator) \
7479
nonstatic_field(ZHeap, _page_table, ZPageTable) \
80+
nonstatic_field(ZHeap, _forwarding_table, ZForwardingTable) \
81+
nonstatic_field(ZHeap, _relocate, ZRelocate) \
7582
\
7683
nonstatic_field(ZPage, _type, const uint8_t) \
7784
nonstatic_field(ZPage, _seqnum, uint32_t) \
@@ -85,11 +92,19 @@ typedef ZAttachedArray<ZForwarding, ZForwardingEntry> ZAttachedArrayForForwardin
8592
nonstatic_field(ZPageTable, _map, ZGranuleMapForPageTable) \
8693
\
8794
nonstatic_field(ZGranuleMapForPageTable, _map, ZPage** const) \
95+
nonstatic_field(ZGranuleMapForForwarding, _map, ZForwarding** const) \
96+
\
97+
nonstatic_field(ZForwardingTable, _map, ZGranuleMapForForwarding) \
8898
\
8999
nonstatic_field(ZVirtualMemory, _start, const uintptr_t) \
90100
nonstatic_field(ZVirtualMemory, _end, const uintptr_t) \
91101
\
92-
nonstatic_field(ZForwarding, _entries, const ZAttachedArrayForForwarding)
102+
nonstatic_field(ZForwarding, _virtual, const ZVirtualMemory) \
103+
nonstatic_field(ZForwarding, _object_alignment_shift, const size_t) \
104+
volatile_nonstatic_field(ZForwarding, _ref_count, int) \
105+
nonstatic_field(ZForwarding, _entries, const ZAttachedArrayForForwarding) \
106+
nonstatic_field(ZForwardingEntry, _entry, uint64_t) \
107+
nonstatic_field(ZAttachedArrayForForwarding, _length, const size_t)
93108

94109
#define VM_INT_CONSTANTS_ZGC(declare_constant, declare_constant_with_value) \
95110
declare_constant(ZPhaseRelocate) \
@@ -112,11 +127,13 @@ typedef ZAttachedArray<ZForwarding, ZForwardingEntry> ZAttachedArrayForForwardin
112127
declare_toplevel_type(ZGlobalsForVMStructs) \
113128
declare_type(ZCollectedHeap, CollectedHeap) \
114129
declare_toplevel_type(ZHeap) \
130+
declare_toplevel_type(ZRelocate) \
115131
declare_toplevel_type(ZPage) \
116132
declare_toplevel_type(ZPageAllocator) \
117133
declare_toplevel_type(ZPageTable) \
118134
declare_toplevel_type(ZAttachedArrayForForwarding) \
119135
declare_toplevel_type(ZGranuleMapForPageTable) \
136+
declare_toplevel_type(ZGranuleMapForForwarding) \
120137
declare_toplevel_type(ZVirtualMemory) \
121138
declare_toplevel_type(ZForwardingTable) \
122139
declare_toplevel_type(ZForwarding) \

‎src/hotspot/share/gc/z/zAttachedArray.hpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -28,6 +28,8 @@
2828

2929
template <typename ObjectT, typename ArrayT>
3030
class ZAttachedArray {
31+
friend class VMStructs;
32+
3133
private:
3234
const size_t _length;
3335

‎src/hotspot/share/gc/z/zForwardingEntry.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -48,6 +48,7 @@
4848

4949
class ZForwardingEntry {
5050
friend struct PrimitiveConversions::Translate<ZForwardingEntry>;
51+
friend class VMStructs;
5152

5253
private:
5354
typedef ZBitField<uint64_t, bool, 0, 1> field_populated;

‎src/hotspot/share/gc/z/zForwardingTable.hpp

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
class ZForwarding;
3030

3131
class ZForwardingTable {
32+
friend class VMStructs;
33+
3234
private:
3335
ZGranuleMap<ZForwarding*> _map;
3436

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/z/ZAddress.java

+13-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ static boolean is_null(Address value) {
4040
}
4141

4242
static boolean is_weak_bad(Address value) {
43-
return (as_long(value) & ZGlobals.ZAddressWeakBadMask()) != 0;
43+
return (as_long(value) & ZGlobals.ZAddressWeakBadMask()) != 0L;
4444
}
4545

4646
static boolean is_weak_good(Address value) {
@@ -62,4 +62,16 @@ static Address good(Address value) {
6262
static Address good_or_null(Address value) {
6363
return is_null(value) ? value : good(value);
6464
}
65+
66+
private static boolean isPowerOf2(long value) {
67+
return (value != 0L) && ((value & (value - 1)) == 0L);
68+
}
69+
70+
static boolean isIn(Address addr) {
71+
long value = as_long(addr);
72+
if (!isPowerOf2(value & ~ZGlobals.ZAddressOffsetMask())) {
73+
return false;
74+
}
75+
return (value & (ZGlobals.ZAddressMetadataMask() & ~ZGlobals.ZAddressMetadataFinalizable())) != 0L;
76+
}
6577
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
/*
2+
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2021, NTT DATA.
4+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5+
*
6+
* This code is free software; you can redistribute it and/or modify it
7+
* under the terms of the GNU General Public License version 2 only, as
8+
* published by the Free Software Foundation.
9+
*
10+
* This code is distributed in the hope that it will be useful, but WITHOUT
11+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13+
* version 2 for more details (a copy is included in the LICENSE file that
14+
* accompanied this code).
15+
*
16+
* You should have received a copy of the GNU General Public License version
17+
* 2 along with this work; if not, write to the Free Software Foundation,
18+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19+
*
20+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21+
* or visit www.oracle.com if you need additional information or have any
22+
* questions.
23+
*
24+
*/
25+
26+
package sun.jvm.hotspot.gc.z;
27+
28+
import sun.jvm.hotspot.debugger.Address;
29+
import sun.jvm.hotspot.runtime.VM;
30+
import sun.jvm.hotspot.runtime.VMObject;
31+
import sun.jvm.hotspot.runtime.VMObjectFactory;
32+
import sun.jvm.hotspot.types.CIntegerField;
33+
import sun.jvm.hotspot.types.Type;
34+
import sun.jvm.hotspot.types.TypeDataBase;
35+
36+
public class ZAttachedArrayForForwarding extends VMObject {
37+
private static CIntegerField lengthField;
38+
39+
static {
40+
VM.registerVMInitializedObserver((o, d) -> initialize(VM.getVM().getTypeDataBase()));
41+
}
42+
43+
static private synchronized void initialize(TypeDataBase db) {
44+
Type type = db.lookupType("ZAttachedArrayForForwarding");
45+
46+
lengthField = type.getCIntegerField("_length");
47+
}
48+
49+
public ZAttachedArrayForForwarding(Address addr) {
50+
super(addr);
51+
}
52+
53+
public long length() {
54+
return lengthField.getValue(addr);
55+
}
56+
57+
// ObjectT: ZForwarding
58+
// ArrayT: ZForwardingEntry
59+
//
60+
// template <typename ObjectT, typename ArrayT>
61+
// inline size_t ZAttachedArray<ObjectT, ArrayT>::object_size()
62+
private long objectSize() {
63+
return ZUtils.alignUp(ZForwarding.getSize(), ZForwardingEntry.getSize());
64+
}
65+
66+
// ArrayT* operator()(const ObjectT* obj) const
67+
public ZForwardingEntry get(ZForwarding obj) {
68+
Address o = obj.getAddress().addOffsetTo(objectSize());
69+
return VMObjectFactory.newObject(ZForwardingEntry.class, o);
70+
}
71+
}

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/z/ZBarrier.java

+3-17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -41,14 +41,7 @@ private static boolean during_relocate() {
4141
}
4242

4343
private static Address relocate(Address addr) {
44-
ZHeap heap = zheap();
45-
if (heap.is_relocating(addr)) {
46-
// Forward
47-
return heap.relocate_object(addr);
48-
}
49-
50-
// Remap
51-
return ZAddress.good(addr);
44+
return zheap().relocate_object(addr);
5245
}
5346

5447
private static ZHeap zheap() {
@@ -57,14 +50,7 @@ private static ZHeap zheap() {
5750
}
5851

5952
private static Address remap(Address addr) {
60-
ZHeap heap = zheap();
61-
if (heap.is_relocating(addr)) {
62-
// Forward
63-
return heap.forward_object(addr);
64-
}
65-
66-
// Remap
67-
return ZAddress.good(addr);
53+
return zheap().remapObject(addr);
6854
}
6955

7056
private static Address relocate_or_remap(Address addr) {

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/z/ZCollectedHeap.java

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -82,7 +82,10 @@ public long used() {
8282
return heap().used();
8383
}
8484

85-
85+
@Override
86+
public boolean isInReserved(Address a) {
87+
return heap().isIn(a);
88+
}
8689

8790
private OopHandle oop_load_barrier(Address oopAddress) {
8891
oopAddress = ZBarrier.weak_barrier(oopAddress);
@@ -106,7 +109,6 @@ public OopHandle oop_load_at(OopHandle handle, long offset) {
106109
@Override
107110
public OopHandle oop_load_in_native(Address addr) {
108111
Address oopAddress = addr.getAddressAt(0);
109-
110112
return oop_load_barrier(oopAddress);
111113
}
112114

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
/*
2+
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2021, NTT DATA.
4+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5+
*
6+
* This code is free software; you can redistribute it and/or modify it
7+
* under the terms of the GNU General Public License version 2 only, as
8+
* published by the Free Software Foundation.
9+
*
10+
* This code is distributed in the hope that it will be useful, but WITHOUT
11+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13+
* version 2 for more details (a copy is included in the LICENSE file that
14+
* accompanied this code).
15+
*
16+
* You should have received a copy of the GNU General Public License version
17+
* 2 along with this work; if not, write to the Free Software Foundation,
18+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19+
*
20+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21+
* or visit www.oracle.com if you need additional information or have any
22+
* questions.
23+
*
24+
*/
25+
26+
package sun.jvm.hotspot.gc.z;
27+
28+
import java.util.Iterator;
29+
30+
import sun.jvm.hotspot.debugger.Address;
31+
import sun.jvm.hotspot.runtime.VM;
32+
import sun.jvm.hotspot.runtime.VMObject;
33+
import sun.jvm.hotspot.runtime.VMObjectFactory;
34+
import sun.jvm.hotspot.types.CIntegerField;
35+
import sun.jvm.hotspot.types.Type;
36+
import sun.jvm.hotspot.types.TypeDataBase;
37+
38+
public class ZForwarding extends VMObject {
39+
private static Type type;
40+
private static long virtualFieldOffset;
41+
private static long entriesFieldOffset;
42+
private static CIntegerField objectAlignmentShiftField;
43+
private static CIntegerField refCountField;
44+
45+
static {
46+
VM.registerVMInitializedObserver((o, d) -> initialize(VM.getVM().getTypeDataBase()));
47+
}
48+
49+
static private synchronized void initialize(TypeDataBase db) {
50+
type = db.lookupType("ZForwarding");
51+
52+
virtualFieldOffset = type.getField("_virtual").getOffset();
53+
entriesFieldOffset = type.getField("_entries").getOffset();
54+
objectAlignmentShiftField = type.getCIntegerField("_object_alignment_shift");
55+
refCountField = type.getCIntegerField("_ref_count");
56+
}
57+
58+
public ZForwarding(Address addr) {
59+
super(addr);
60+
}
61+
62+
public static long getSize() {
63+
return type.getSize();
64+
}
65+
66+
private ZVirtualMemory virtual() {
67+
return VMObjectFactory.newObject(ZVirtualMemory.class, addr.addOffsetTo(virtualFieldOffset));
68+
}
69+
70+
private ZAttachedArrayForForwarding entries() {
71+
return VMObjectFactory.newObject(ZAttachedArrayForForwarding.class, addr.addOffsetTo(entriesFieldOffset));
72+
}
73+
74+
public long start() {
75+
return virtual().start();
76+
}
77+
78+
public int objectAlignmentShift() {
79+
return (int)objectAlignmentShiftField.getValue(addr);
80+
}
81+
82+
public boolean retainPage() {
83+
return refCountField.getValue(addr) > 0;
84+
}
85+
86+
private ZForwardingEntry at(long cursor) {
87+
long offset = ZForwardingEntry.getSize() * cursor;
88+
Address entryAddress = entries().get(this).getAddress().addOffsetTo(offset);
89+
return VMObjectFactory.newObject(ZForwardingEntry.class, entryAddress);
90+
}
91+
92+
private class ZForwardEntryIterator implements Iterator<ZForwardingEntry> {
93+
94+
private long cursor;
95+
96+
private ZForwardingEntry nextEntry;
97+
98+
public ZForwardEntryIterator(long fromIndex) {
99+
long mask = entries().length() - 1;
100+
long hash = ZHash.uint32_to_uint32(fromIndex);
101+
cursor = hash & mask;
102+
nextEntry = at(cursor);
103+
}
104+
105+
@Override
106+
public boolean hasNext() {
107+
return nextEntry.populated();
108+
}
109+
110+
@Override
111+
public ZForwardingEntry next() {
112+
ZForwardingEntry entry = nextEntry;
113+
114+
long mask = entries().length() - 1;
115+
cursor = (cursor + 1) & mask;
116+
nextEntry = at(cursor);
117+
118+
return entry;
119+
}
120+
121+
public ZForwardingEntry peak() {
122+
return nextEntry;
123+
}
124+
}
125+
126+
public ZForwardingEntry find(long fromIndex) {
127+
ZForwardEntryIterator itr = new ZForwardEntryIterator(fromIndex);
128+
while (itr.hasNext()) {
129+
ZForwardingEntry entry = itr.next();
130+
if (entry.fromIndex() == fromIndex) {
131+
return entry;
132+
}
133+
}
134+
return itr.peak();
135+
}
136+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
/*
2+
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2021, NTT DATA.
4+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5+
*
6+
* This code is free software; you can redistribute it and/or modify it
7+
* under the terms of the GNU General Public License version 2 only, as
8+
* published by the Free Software Foundation.
9+
*
10+
* This code is distributed in the hope that it will be useful, but WITHOUT
11+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13+
* version 2 for more details (a copy is included in the LICENSE file that
14+
* accompanied this code).
15+
*
16+
* You should have received a copy of the GNU General Public License version
17+
* 2 along with this work; if not, write to the Free Software Foundation,
18+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19+
*
20+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21+
* or visit www.oracle.com if you need additional information or have any
22+
* questions.
23+
*
24+
*/
25+
26+
package sun.jvm.hotspot.gc.z;
27+
28+
import sun.jvm.hotspot.debugger.Address;
29+
import sun.jvm.hotspot.runtime.VM;
30+
import sun.jvm.hotspot.runtime.VMObject;
31+
import sun.jvm.hotspot.runtime.VMObjectFactory;
32+
import sun.jvm.hotspot.types.CIntegerField;
33+
import sun.jvm.hotspot.types.Type;
34+
import sun.jvm.hotspot.types.TypeDataBase;
35+
36+
public class ZForwardingEntry extends VMObject {
37+
private static Type type;
38+
private static CIntegerField entryField;
39+
40+
static {
41+
VM.registerVMInitializedObserver((o, d) -> initialize(VM.getVM().getTypeDataBase()));
42+
}
43+
44+
static private synchronized void initialize(TypeDataBase db) {
45+
type = db.lookupType("ZForwardingEntry");
46+
47+
entryField = type.getCIntegerField("_entry");
48+
}
49+
50+
public static long getSize() {
51+
return type.getSize();
52+
}
53+
54+
public ZForwardingEntry(Address addr) {
55+
super(addr);
56+
}
57+
58+
public long entry() {
59+
return entryField.getValue(addr);
60+
}
61+
62+
// typedef ZBitField<uint64_t, bool, 0, 1> field_populated
63+
private boolean fieldPopulatedDecode(long value) {
64+
long FieldMask = (1L << 1) - 1;
65+
int FieldShift = 1;
66+
int ValueShift = 0;
67+
return (((value >>> FieldShift) & FieldMask) << ValueShift) != 0L;
68+
}
69+
70+
// typedef ZBitField<uint64_t, size_t, 1, 45> field_to_offset;
71+
private long fieldToOffsetDecode(long value) {
72+
long FieldMask = (1L << 45) - 1;
73+
int FieldShift = 1;
74+
int ValueShift = 0;
75+
return ((value >>> FieldShift) & FieldMask) << ValueShift;
76+
}
77+
78+
// typedef ZBitField<uint64_t, size_t, 46, 18> field_from_index;
79+
private long fieldFromIndexDecode(long value) {
80+
long FieldMask = (1L << 18) - 1;
81+
int FieldShift = 46;
82+
int ValueShift = 0;
83+
return ((value >>> FieldShift) & FieldMask) << ValueShift;
84+
}
85+
86+
public boolean populated() {
87+
return fieldPopulatedDecode(entry());
88+
}
89+
90+
public long toOffset() {
91+
return fieldToOffsetDecode(entry());
92+
}
93+
94+
public long fromIndex() {
95+
return fieldFromIndexDecode(entry());
96+
}
97+
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -27,14 +27,14 @@
2727
import sun.jvm.hotspot.debugger.Address;
2828
import sun.jvm.hotspot.runtime.VM;
2929
import sun.jvm.hotspot.runtime.VMObject;
30+
import sun.jvm.hotspot.runtime.VMObjectFactory;
3031
import sun.jvm.hotspot.types.AddressField;
3132
import sun.jvm.hotspot.types.CIntegerField;
3233
import sun.jvm.hotspot.types.Type;
3334
import sun.jvm.hotspot.types.TypeDataBase;
3435

3536
public class ZForwardingTable extends VMObject {
36-
private static AddressField tableField;
37-
private static CIntegerField sizeField;
37+
private static long mapFieldOffset;
3838

3939
static {
4040
VM.registerVMInitializedObserver((o, d) -> initialize(VM.getVM().getTypeDataBase()));
@@ -43,75 +43,18 @@ public class ZForwardingTable extends VMObject {
4343
static private synchronized void initialize(TypeDataBase db) {
4444
Type type = db.lookupType("ZForwardingTable");
4545

46-
tableField = type.getAddressField("_table");
47-
sizeField = type.getCIntegerField("_size");
46+
mapFieldOffset = type.getAddressField("_map").getOffset();
4847
}
4948

5049
public ZForwardingTable(Address addr) {
5150
super(addr);
5251
}
5352

54-
Address table() {
55-
return tableField.getAddress(addr);
53+
private ZGranuleMapForForwarding map() {
54+
return VMObjectFactory.newObject(ZGranuleMapForForwarding.class, addr.addOffsetTo(mapFieldOffset));
5655
}
5756

58-
long size() {
59-
return sizeField.getJLong(addr);
60-
}
61-
62-
ZForwardingTableEntry at(ZForwardingTableCursor cursor) {
63-
return new ZForwardingTableEntry(table().getAddressAt(cursor._value * VM.getVM().getBytesPerLong()));
64-
}
65-
66-
ZForwardingTableEntry first(long from_index, ZForwardingTableCursor cursor) {
67-
long mask = size() - 1;
68-
long hash = ZHash.uint32_to_uint32(from_index);
69-
cursor._value = hash & mask;
70-
return at(cursor);
71-
}
72-
73-
ZForwardingTableEntry next(ZForwardingTableCursor cursor) {
74-
long mask = size() - 1;
75-
cursor._value = (cursor._value + 1) & mask;
76-
return at(cursor);
77-
}
78-
79-
ZForwardingTableEntry find(long from_index, ZForwardingTableCursor cursor) {
80-
// Reading entries in the table races with the atomic cas done for
81-
// insertion into the table. This is safe because each entry is at
82-
// most updated once (from -1 to something else).
83-
ZForwardingTableEntry entry = first(from_index, cursor);
84-
while (!entry.is_empty()) {
85-
if (entry.from_index() == from_index) {
86-
// Match found, return matching entry
87-
return entry;
88-
}
89-
90-
entry = next(cursor);
91-
}
92-
93-
// Match not found, return empty entry
94-
return entry;
95-
}
96-
97-
ZForwardingTableEntry find(long from_index) {
98-
ZForwardingTableCursor dummy = new ZForwardingTableCursor();
99-
return find(from_index, dummy);
100-
}
101-
102-
void dump() {
103-
long s = size();
104-
long count = 0;
105-
System.out.println("Dumping ZForwardingTable[" + s + "]:");
106-
ZForwardingTableCursor cursor = new ZForwardingTableCursor();
107-
for (long i = 0; i < s; i++) {
108-
cursor._value = i;
109-
ZForwardingTableEntry entry = at(cursor);
110-
if (!entry.is_empty()) {
111-
long hash = ZHash.uint32_to_uint32(entry.from_index());
112-
System.out.println(i + " " + count + " " + entry + " hash: " + hash + " masked_hash: " + (hash & (s - 1)));
113-
count++;
114-
}
115-
}
57+
public ZForwarding get(Address o) {
58+
return VMObjectFactory.newObject(ZForwarding.class, map().get(ZAddress.offset(o)));
11659
}
11760
}

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/z/ZGlobals.java

+8
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,14 @@ public static long ZAddressOffsetMask() {
102102
return instance().ZAddressOffsetMask();
103103
}
104104

105+
public static long ZAddressMetadataMask() {
106+
return instance().ZAddressMetadataMask();
107+
}
108+
109+
public static long ZAddressMetadataFinalizable() {
110+
return instance().ZAddressMetadataFinalizable();
111+
}
112+
105113
public static long ZAddressGoodMask() {
106114
return instance().ZAddressGoodMask();
107115
}

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/z/ZGlobalsForVMStructs.java

+12
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ class ZGlobalsForVMStructs extends VMObject {
3535
private static AddressField ZGlobalPhaseField;
3636
private static AddressField ZGlobalSeqNumField;
3737
private static AddressField ZAddressOffsetMaskField;
38+
private static AddressField ZAddressMetadataMaskField;
39+
private static AddressField ZAddressMetadataFinalizableField;
3840
private static AddressField ZAddressGoodMaskField;
3941
private static AddressField ZAddressBadMaskField;
4042
private static AddressField ZAddressWeakBadMaskField;
@@ -51,6 +53,8 @@ static private synchronized void initialize(TypeDataBase db) {
5153
ZGlobalPhaseField = type.getAddressField("_ZGlobalPhase");
5254
ZGlobalSeqNumField = type.getAddressField("_ZGlobalSeqNum");
5355
ZAddressOffsetMaskField = type.getAddressField("_ZAddressOffsetMask");
56+
ZAddressMetadataMaskField = type.getAddressField("_ZAddressMetadataMask");
57+
ZAddressMetadataFinalizableField = type.getAddressField("_ZAddressMetadataFinalizable");
5458
ZAddressGoodMaskField = type.getAddressField("_ZAddressGoodMask");
5559
ZAddressBadMaskField = type.getAddressField("_ZAddressBadMask");
5660
ZAddressWeakBadMaskField = type.getAddressField("_ZAddressWeakBadMask");
@@ -74,6 +78,14 @@ long ZAddressOffsetMask() {
7478
return ZAddressOffsetMaskField.getValue(addr).getJLongAt(0);
7579
}
7680

81+
long ZAddressMetadataMask() {
82+
return ZAddressMetadataMaskField.getValue(addr).getJLongAt(0);
83+
}
84+
85+
long ZAddressMetadataFinalizable() {
86+
return ZAddressMetadataFinalizableField.getValue(addr).getJLongAt(0);
87+
}
88+
7789
long ZAddressGoodMask() {
7890
return ZAddressGoodMaskField.getValue(addr).getJLongAt(0);
7991
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
/*
2+
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2021, NTT DATA.
4+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5+
*
6+
* This code is free software; you can redistribute it and/or modify it
7+
* under the terms of the GNU General Public License version 2 only, as
8+
* published by the Free Software Foundation.
9+
*
10+
* This code is distributed in the hope that it will be useful, but WITHOUT
11+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13+
* version 2 for more details (a copy is included in the LICENSE file that
14+
* accompanied this code).
15+
*
16+
* You should have received a copy of the GNU General Public License version
17+
* 2 along with this work; if not, write to the Free Software Foundation,
18+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19+
*
20+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21+
* or visit www.oracle.com if you need additional information or have any
22+
* questions.
23+
*
24+
*/
25+
26+
package sun.jvm.hotspot.gc.z;
27+
28+
import sun.jvm.hotspot.debugger.Address;
29+
import sun.jvm.hotspot.runtime.VM;
30+
import sun.jvm.hotspot.runtime.VMObject;
31+
import sun.jvm.hotspot.types.AddressField;
32+
import sun.jvm.hotspot.types.Type;
33+
import sun.jvm.hotspot.types.TypeDataBase;
34+
35+
public class ZGranuleMapForForwarding extends VMObject {
36+
private static AddressField mapField;
37+
38+
static {
39+
VM.registerVMInitializedObserver((o, d) -> initialize(VM.getVM().getTypeDataBase()));
40+
}
41+
42+
static private synchronized void initialize(TypeDataBase db) {
43+
Type type = db.lookupType("ZGranuleMapForForwarding");
44+
45+
mapField = type.getAddressField("_map");
46+
}
47+
48+
public ZGranuleMapForForwarding(Address addr) {
49+
super(addr);
50+
}
51+
52+
private Address map() {
53+
return mapField.getValue(addr);
54+
}
55+
56+
public long size() {
57+
return ZGlobals.ZAddressOffsetMax >> ZGlobals.ZGranuleSizeShift;
58+
}
59+
60+
private long index_for_offset(long offset) {
61+
long index = offset >>> ZGlobals.ZGranuleSizeShift;
62+
63+
return index;
64+
}
65+
66+
Address at(long index) {
67+
return map().getAddressAt(index * VM.getVM().getAddressSize());
68+
}
69+
70+
Address get(long offset) {
71+
long index = index_for_offset(offset);
72+
return at(index);
73+
}
74+
75+
public class Iterator {
76+
private long next = 0;
77+
78+
boolean hasNext() {
79+
return next < size();
80+
}
81+
82+
Address next() {
83+
if (next >= size()) {
84+
throw new RuntimeException("OOIBE");
85+
}
86+
87+
return at(next++);
88+
}
89+
}
90+
}

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/z/ZHash.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ private static long uint32(long value) {
3131

3232
static long uint32_to_uint32(long key) {
3333
key = uint32(~key + (key << 15));
34-
key = uint32(key ^ (key >> 12));
34+
key = uint32(key ^ (key >>> 12));
3535
key = uint32(key + (key << 2));
36-
key = uint32(key ^ (key >> 4));
36+
key = uint32(key ^ (key >>> 4));
3737
key = uint32(key * 2057);
38-
key = uint32(key ^ (key >> 16));
38+
key = uint32(key ^ (key >>> 16));
3939
return key;
4040
}
4141
}

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/z/ZHeap.java

+35-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -39,6 +39,8 @@ public class ZHeap extends VMObject {
3939

4040
private static long pageAllocatorFieldOffset;
4141
private static long pageTableFieldOffset;
42+
private static long forwardingTableFieldOffset;
43+
private static long relocateFieldOffset;
4244

4345
static {
4446
VM.registerVMInitializedObserver((o, d) -> initialize(VM.getVM().getTypeDataBase()));
@@ -49,6 +51,8 @@ private static synchronized void initialize(TypeDataBase db) {
4951

5052
pageAllocatorFieldOffset = type.getAddressField("_page_allocator").getOffset();
5153
pageTableFieldOffset = type.getAddressField("_page_table").getOffset();
54+
forwardingTableFieldOffset = type.getAddressField("_forwarding_table").getOffset();
55+
relocateFieldOffset = type.getAddressField("_relocate").getOffset();
5256
}
5357

5458
public ZHeap(Address addr) {
@@ -64,6 +68,14 @@ ZPageTable pageTable() {
6468
return (ZPageTable)VMObjectFactory.newObject(ZPageTable.class, addr.addOffsetTo(pageTableFieldOffset));
6569
}
6670

71+
ZForwardingTable forwardingTable() {
72+
return VMObjectFactory.newObject(ZForwardingTable.class, addr.addOffsetTo(forwardingTableFieldOffset));
73+
}
74+
75+
ZRelocate relocate() {
76+
return VMObjectFactory.newObject(ZRelocate.class, addr.addOffsetTo(relocateFieldOffset));
77+
}
78+
6779
public long maxCapacity() {
6880
return pageAllocator().maxCapacity();
6981
}
@@ -80,14 +92,30 @@ boolean is_relocating(Address o) {
8092
return pageTable().is_relocating(o);
8193
}
8294

83-
Address forward_object(Address addr) {
84-
ZPage page = pageTable().get(addr);
85-
return page.forward_object(addr);
95+
Address relocate_object(Address addr) {
96+
ZForwarding forwarding = forwardingTable().get(addr);
97+
if (forwarding == null) {
98+
return ZAddress.good(addr);
99+
}
100+
return relocate().relocateObject(forwarding, ZAddress.good(addr));
86101
}
87102

88-
Address relocate_object(Address addr) {
89-
ZPage page = pageTable().get(addr);
90-
return page.relocate_object(addr);
103+
public boolean isIn(Address addr) {
104+
if (ZAddress.isIn(addr)) {
105+
ZPage page = pageTable().get(addr);
106+
if (page != null) {
107+
return page.isIn(addr);
108+
}
109+
}
110+
return false;
111+
}
112+
113+
public Address remapObject(Address o) {
114+
ZForwarding forwarding = forwardingTable().get(addr);
115+
if (forwarding == null) {
116+
return ZAddress.good(o);
117+
}
118+
return relocate().forwardObject(forwarding, ZAddress.good(o));
91119
}
92120

93121
public void printOn(PrintStream tty) {

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/z/ZOop.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -29,6 +29,6 @@
2929

3030
class ZOop {
3131
static Address to_address(OopHandle oop) {
32-
return ZUtils.longToAddress(ZAddress.as_long(oop));
32+
return oop;
3333
}
3434
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -46,8 +46,6 @@ public class ZPage extends VMObject implements LiveRegionsProvider {
4646
private static CIntegerField seqnumField;
4747
private static long virtualFieldOffset;
4848
private static AddressField topField;
49-
private static CIntegerField refcountField;
50-
private static long forwardingFieldOffset;
5149

5250
static {
5351
VM.registerVMInitializedObserver((o, d) -> initialize(VM.getVM().getTypeDataBase()));
@@ -60,8 +58,6 @@ static private synchronized void initialize(TypeDataBase db) {
6058
seqnumField = type.getCIntegerField("_seqnum");
6159
virtualFieldOffset = type.getField("_virtual").getOffset();
6260
topField = type.getAddressField("_top");
63-
refcountField = type.getCIntegerField("_refcount");
64-
forwardingFieldOffset = type.getField("_forwarding").getOffset();
6561
}
6662

6763
public ZPage(Address addr) {
@@ -84,28 +80,8 @@ private Address top() {
8480
return topField.getValue(addr);
8581
}
8682

87-
private int refcount() {
88-
// refcount is uint32_t so need to be cautious when using this field.
89-
return refcountField.getJInt(addr);
90-
}
91-
92-
private ZForwardingTable forwarding() {
93-
return VMObjectFactory.newObject(ZForwardingTable.class, addr.addOffsetTo(forwardingFieldOffset));
94-
}
95-
96-
private boolean is_forwarding() {
97-
return forwarding().table() != null;
98-
}
99-
10083
private boolean is_relocatable() {
101-
return is_active() && seqnum() < ZGlobals.ZGlobalSeqNum();
102-
}
103-
104-
private boolean isPageRelocating() {
105-
assert(is_active());
106-
// is_forwarding(): Has a (relocation) forwarding table
107-
// is_relocatable(): Has not been freed yet
108-
return is_forwarding() && is_relocatable();
84+
return seqnum() < ZGlobals.ZGlobalSeqNum();
10985
}
11086

11187
long start() {
@@ -116,31 +92,6 @@ long size() {
11692
return virtual().end() - virtual().start();
11793
}
11894

119-
Address forward_object(Address from) {
120-
// Lookup address in forwarding table
121-
long from_offset = ZAddress.offset(from);
122-
long from_index = (from_offset - start()) >> object_alignment_shift();
123-
ZForwardingTableEntry entry = forwarding().find(from_index);
124-
assert(!entry.is_empty());
125-
assert(entry.from_index() == from_index);
126-
127-
return ZAddress.good(entry.to_offset());
128-
}
129-
130-
Address relocate_object(Address from) {
131-
// Lookup address in forwarding table
132-
long from_offset = ZAddress.offset(from);
133-
long from_index = (from_offset - start()) >> object_alignment_shift();
134-
ZForwardingTableEntry entry = forwarding().find(from_index);
135-
if (!entry.is_empty() && entry.from_index() == from_index) {
136-
return ZAddress.good(entry.to_offset());
137-
}
138-
139-
// There's no relocate operation in the SA.
140-
// Mimic object pinning and return the good view of the from object.
141-
return ZAddress.good(from);
142-
}
143-
14495
long object_alignment_shift() {
14596
if (type() == ZGlobals.ZPageTypeSmall) {
14697
return ZGlobals.ZObjectAlignmentSmallShift();
@@ -156,8 +107,10 @@ long objectAlignmentSize() {
156107
return 1 << object_alignment_shift();
157108
}
158109

159-
public boolean is_active() {
160-
return refcount() != 0;
110+
public boolean isIn(Address addr) {
111+
long offset = ZAddress.offset(addr);
112+
// FIXME: it does not consider the sign.
113+
return (offset >= start()) && (offset < top().asLongValue());
161114
}
162115

163116
private long getObjectSize(Address good) {
@@ -173,72 +126,16 @@ private long getObjectSize(Address good) {
173126
return VM.getVM().alignUp(obj.getObjectSize(), objectAlignmentSize());
174127
}
175128

176-
private void addNotRelocatedRegions(List<MemRegion> regions) {
177-
MemRegion mr = null;
178-
179-
// Some objects have already been forwarded to new locations.
180-
long topValue = top().asLongValue();
181-
for (long offsetValue = start(); offsetValue < topValue;) {
182-
Address from = ZAddress.good(ZUtils.longToAddress(offsetValue));
183-
184-
Address to = relocate_object(from);
185-
186-
long byteSize;
187-
try {
188-
byteSize = getObjectSize(to);
189-
} catch (Exception e) {
190-
// Parsing the ZHeap is inherently unsafe
191-
// when classes have been unloaded. Dead objects
192-
// might have stale Klass pointers, and there's
193-
// no way to get the size of the dead object.
194-
//
195-
// If possible, run with -XX:-ClassUnloading
196-
// to ensure that all Klasses are kept alive.
197-
System.err.println("Unparsable regions found. Skipping: "
198-
+ from
199-
+ " "
200-
+ from.addOffsetTo(topValue - offsetValue));
201-
202-
// Can't proceed further. Just return the collected regions.
203-
return;
204-
}
205-
206-
if (from.equals(to)) {
207-
// Not relocated - add region
208-
if (mr == null) {
209-
mr = new MemRegion(from, 0 /* wordSize */);
210-
regions.add(mr);
211-
}
212-
213-
long wordSize = byteSize / VM.getVM().getBytesPerWord();
214-
mr.setWordSize(mr.wordSize() + wordSize);
215-
} else {
216-
// Forwarded somewhere else, split region.
217-
mr = null;
218-
}
219-
220-
offsetValue += byteSize;
221-
}
222-
}
223-
224129
public List<MemRegion> getLiveRegions() {
225-
List<MemRegion> res = new ArrayList<>();
226-
227-
if (isPageRelocating()) {
228-
addNotRelocatedRegions(res);
229-
} else {
230-
Address start = ZAddress.good(ZUtils.longToAddress(start()));
130+
Address start = ZAddress.good(ZUtils.longToAddress(start()));
231131

232-
// Can't convert top() to a "good" address because it might
233-
// be at the top of the "offset" range, and therefore also
234-
// looks like one of the color bits. Instead use the "good"
235-
// address and add the size.
236-
long size = top().asLongValue() - start();
237-
Address end = start.addOffsetTo(size);
238-
239-
res.add(new MemRegion(start, end));
240-
}
132+
// Can't convert top() to a "good" address because it might
133+
// be at the top of the "offset" range, and therefore also
134+
// looks like one of the color bits. Instead use the "good"
135+
// address and add the size.
136+
long size = top().asLongValue() - start();
137+
Address end = start.addOffsetTo(size);
241138

242-
return res;
139+
return List.of(new MemRegion(start, end));
243140
}
244141
}

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/z/ZPageTable.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -59,7 +59,7 @@ private ZPageTableEntry getEntry(Address o) {
5959
}
6060

6161
ZPage get(Address o) {
62-
return getEntry(o).page();
62+
return VMObjectFactory.newObject(ZPage.class, map().get(VM.getVM().getDebugger().newAddress(ZAddress.offset(o))));
6363
}
6464

6565
boolean is_relocating(Address o) {
@@ -169,7 +169,7 @@ public Iterator<ZPage> iterator() {
169169
public Iterator<ZPage> activePagesIterator() {
170170
return new ZPagesFilteredIterator(new ZPageFilter() {
171171
public boolean accept(ZPage page) {
172-
return page.is_active();
172+
return page != null;
173173
}
174174
});
175175
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
/*
2+
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2021, NTT DATA.
4+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5+
*
6+
* This code is free software; you can redistribute it and/or modify it
7+
* under the terms of the GNU General Public License version 2 only, as
8+
* published by the Free Software Foundation.
9+
*
10+
* This code is distributed in the hope that it will be useful, but WITHOUT
11+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13+
* version 2 for more details (a copy is included in the LICENSE file that
14+
* accompanied this code).
15+
*
16+
* You should have received a copy of the GNU General Public License version
17+
* 2 along with this work; if not, write to the Free Software Foundation,
18+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19+
*
20+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21+
* or visit www.oracle.com if you need additional information or have any
22+
* questions.
23+
*
24+
*/
25+
26+
package sun.jvm.hotspot.gc.z;
27+
28+
import sun.jvm.hotspot.debugger.Address;
29+
import sun.jvm.hotspot.runtime.VM;
30+
import sun.jvm.hotspot.runtime.VMObject;
31+
import sun.jvm.hotspot.types.AddressField;
32+
import sun.jvm.hotspot.types.Type;
33+
import sun.jvm.hotspot.types.TypeDataBase;
34+
35+
public class ZRelocate extends VMObject {
36+
37+
static {
38+
VM.registerVMInitializedObserver((o, d) -> initialize(VM.getVM().getTypeDataBase()));
39+
}
40+
41+
static private synchronized void initialize(TypeDataBase db) {
42+
Type type = db.lookupType("ZRelocate");
43+
}
44+
45+
public ZRelocate(Address addr) {
46+
super(addr);
47+
}
48+
49+
private long forwardingIndex(ZForwarding forwarding, Address from) {
50+
long fromOffset = ZAddress.offset(from);
51+
return (fromOffset - forwarding.start()) >>> forwarding.objectAlignmentShift();
52+
}
53+
54+
private Address forwardingFind(ZForwarding forwarding, Address from) {
55+
long fromIndex = forwardingIndex(forwarding, from);
56+
ZForwardingEntry entry = forwarding.find(fromIndex);
57+
return entry.populated() ? ZAddress.good(VM.getVM().getDebugger().newAddress(entry.toOffset())) : null;
58+
}
59+
60+
public Address forwardObject(ZForwarding forwarding, Address from) {
61+
return forwardingFind(forwarding, from);
62+
}
63+
64+
public Address relocateObject(ZForwarding forwarding, Address o) {
65+
Address toAddr = forwardingFind(forwarding, o);
66+
if (toAddr != null) {
67+
// Already relocated.
68+
return toAddr;
69+
} else {
70+
// Return original address because it is not yet relocated.
71+
return o;
72+
}
73+
}
74+
}

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/z/ZUtils.java

+7-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -28,16 +28,13 @@
2828
import sun.jvm.hotspot.runtime.VM;
2929

3030
class ZUtils {
31-
private static final long MSB = ~0L ^ (~0L >>> 1);
32-
33-
private static Address msbAddress() {
34-
return VM.getVM().getUniverse().heap().start().orWithMask(MSB).andWithMask(MSB);
31+
static Address longToAddress(long value) {
32+
return VM.getVM().getDebugger().newAddress(value);
3533
}
3634

37-
static Address longToAddress(long value) {
38-
// If the value of an Address becomes 0, null is returned instead of an Address.
39-
// Start with a one-bit address and as a last step, remove that bit.
40-
Address oneAddress = msbAddress();
41-
return oneAddress.orWithMask(value).xorWithMask(ZAddress.as_long(oneAddress));
35+
static long alignUp(long size, long alignment) {
36+
long mask = alignment - 1;
37+
long adjusted = size + mask;
38+
return adjusted & ~mask;
4239
}
4340
}

‎test/hotspot/jtreg/ProblemList-zgc.txt

-10
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,6 @@
2929

3030
resourcehogs/serviceability/sa/TestHeapDumpForLargeArray.java 8220624 generic-all
3131
serviceability/sa/CDSJMapClstats.java 8220624 generic-all
32-
serviceability/sa/ClhsdbDumpheap.java 8220624 generic-all
33-
serviceability/sa/ClhsdbFindPC.java#id0 8220624 generic-all
34-
serviceability/sa/ClhsdbFindPC.java#id1 8220624 generic-all
35-
serviceability/sa/ClhsdbFindPC.java#id2 8220624 generic-all
36-
serviceability/sa/ClhsdbFindPC.java#id3 8220624 generic-all
37-
serviceability/sa/ClhsdbInspect.java 8220624 generic-all
3832
serviceability/sa/ClhsdbJhisto.java 8220624 generic-all
39-
serviceability/sa/ClhsdbSymbol.java 8220624 generic-all
40-
serviceability/sa/TestHeapDumpForInvokeDynamic.java 8220624 generic-all
4133
serviceability/sa/TestHeapDumpForLargeArray.java 8220624 generic-all
42-
serviceability/sa/TestJmapCore.java 8220624 generic-all
43-
serviceability/sa/TestJmapCoreMetaspace.java 8267045 generic-all
4434
vmTestbase/jit/escape/AdaptiveBlocking/AdaptiveBlocking001/AdaptiveBlocking001.java 8260303 windows-x64

0 commit comments

Comments
 (0)
Please sign in to comment.