36
36
import java .util .Objects ;
37
37
38
38
/**
39
- * Implementation for heap memory segments. An heap memory segment is composed by an offset and
39
+ * Implementation for heap memory segments. A heap memory segment is composed by an offset and
40
40
* a base object (typically an array). To enhance performances, the access to the base object needs to feature
41
41
* sharp type information, as well as sharp null-check information. For this reason, many concrete subclasses
42
42
* of {@link HeapMemorySegmentImpl} are defined (e.g. {@link OfFloat}, so that each subclass can override the
43
- * {@link HeapMemorySegmentImpl#base()} method so that it returns an array of the correct (sharp) type.
43
+ * {@link HeapMemorySegmentImpl#base()} method so that it returns an array of the correct (sharp) type. Note that
44
+ * the field type storing the 'base' coordinate is just Object; similarly, all the constructor in the subclasses
45
+ * accept an Object 'base' parameter instead of a sharper type (e.g. {@code byte[]}). This is deliberate, as
46
+ * using sharper types would require use of type-conversions, which in turn would inhibit some C2 optimizations,
47
+ * such as the elimination of store barriers in methods like {@link HeapMemorySegmentImpl#dup(long, long, int, ResourceScopeImpl)}.
44
48
*/
45
- public abstract class HeapMemorySegmentImpl < H > extends AbstractMemorySegmentImpl {
49
+ public abstract class HeapMemorySegmentImpl extends AbstractMemorySegmentImpl {
46
50
47
51
private static final Unsafe UNSAFE = Unsafe .getUnsafe ();
48
52
private static final int BYTE_ARR_BASE = UNSAFE .arrayBaseOffset (byte [].class );
@@ -53,25 +57,25 @@ public abstract class HeapMemorySegmentImpl<H> extends AbstractMemorySegmentImpl
53
57
private static final long MAX_ALIGN_8 = 8 ;
54
58
55
59
final long offset ;
56
- final H base ;
60
+ final Object base ;
57
61
58
62
@ ForceInline
59
- HeapMemorySegmentImpl (long offset , H base , long length , int mask ) {
63
+ HeapMemorySegmentImpl (long offset , Object base , long length , int mask ) {
60
64
super (length , mask , ResourceScopeImpl .GLOBAL );
61
65
this .offset = offset ;
62
66
this .base = base ;
63
67
}
64
68
65
69
@ Override
66
- abstract H base ();
70
+ abstract Object base ();
67
71
68
72
@ Override
69
73
long min () {
70
74
return offset ;
71
75
}
72
76
73
77
@ Override
74
- abstract HeapMemorySegmentImpl < H > dup (long offset , long size , int mask , ResourceScopeImpl scope );
78
+ abstract HeapMemorySegmentImpl dup (long offset , long size , int mask , ResourceScopeImpl scope );
75
79
76
80
@ Override
77
81
ByteBuffer makeByteBuffer () {
@@ -84,9 +88,9 @@ ByteBuffer makeByteBuffer() {
84
88
85
89
// factories
86
90
87
- public static class OfByte extends HeapMemorySegmentImpl < byte []> {
91
+ public static class OfByte extends HeapMemorySegmentImpl {
88
92
89
- OfByte (long offset , byte [] base , long length , int mask ) {
93
+ OfByte (long offset , Object base , long length , int mask ) {
90
94
super (offset , base , length , mask );
91
95
}
92
96
@@ -97,7 +101,7 @@ OfByte dup(long offset, long size, int mask, ResourceScopeImpl scope) {
97
101
98
102
@ Override
99
103
byte [] base () {
100
- return Objects .requireNonNull (base );
104
+ return ( byte []) Objects .requireNonNull (base );
101
105
}
102
106
103
107
public static MemorySegment fromArray (byte [] arr ) {
@@ -112,9 +116,9 @@ public long maxAlignMask() {
112
116
}
113
117
}
114
118
115
- public static class OfChar extends HeapMemorySegmentImpl < char []> {
119
+ public static class OfChar extends HeapMemorySegmentImpl {
116
120
117
- OfChar (long offset , char [] base , long length , int mask ) {
121
+ OfChar (long offset , Object base , long length , int mask ) {
118
122
super (offset , base , length , mask );
119
123
}
120
124
@@ -125,7 +129,7 @@ OfChar dup(long offset, long size, int mask, ResourceScopeImpl scope) {
125
129
126
130
@ Override
127
131
char [] base () {
128
- return Objects .requireNonNull (base );
132
+ return ( char []) Objects .requireNonNull (base );
129
133
}
130
134
131
135
public static MemorySegment fromArray (char [] arr ) {
@@ -140,9 +144,9 @@ public long maxAlignMask() {
140
144
}
141
145
}
142
146
143
- public static class OfShort extends HeapMemorySegmentImpl < short []> {
147
+ public static class OfShort extends HeapMemorySegmentImpl {
144
148
145
- OfShort (long offset , short [] base , long length , int mask ) {
149
+ OfShort (long offset , Object base , long length , int mask ) {
146
150
super (offset , base , length , mask );
147
151
}
148
152
@@ -153,7 +157,7 @@ OfShort dup(long offset, long size, int mask, ResourceScopeImpl scope) {
153
157
154
158
@ Override
155
159
short [] base () {
156
- return Objects .requireNonNull (base );
160
+ return ( short []) Objects .requireNonNull (base );
157
161
}
158
162
159
163
public static MemorySegment fromArray (short [] arr ) {
@@ -168,9 +172,9 @@ public long maxAlignMask() {
168
172
}
169
173
}
170
174
171
- public static class OfInt extends HeapMemorySegmentImpl < int []> {
175
+ public static class OfInt extends HeapMemorySegmentImpl {
172
176
173
- OfInt (long offset , int [] base , long length , int mask ) {
177
+ OfInt (long offset , Object base , long length , int mask ) {
174
178
super (offset , base , length , mask );
175
179
}
176
180
@@ -181,7 +185,7 @@ OfInt dup(long offset, long size, int mask, ResourceScopeImpl scope) {
181
185
182
186
@ Override
183
187
int [] base () {
184
- return Objects .requireNonNull (base );
188
+ return ( int []) Objects .requireNonNull (base );
185
189
}
186
190
187
191
public static MemorySegment fromArray (int [] arr ) {
@@ -196,9 +200,9 @@ public long maxAlignMask() {
196
200
}
197
201
}
198
202
199
- public static class OfLong extends HeapMemorySegmentImpl < long []> {
203
+ public static class OfLong extends HeapMemorySegmentImpl {
200
204
201
- OfLong (long offset , long [] base , long length , int mask ) {
205
+ OfLong (long offset , Object base , long length , int mask ) {
202
206
super (offset , base , length , mask );
203
207
}
204
208
@@ -209,7 +213,7 @@ OfLong dup(long offset, long size, int mask, ResourceScopeImpl scope) {
209
213
210
214
@ Override
211
215
long [] base () {
212
- return Objects .requireNonNull (base );
216
+ return ( long []) Objects .requireNonNull (base );
213
217
}
214
218
215
219
public static MemorySegment fromArray (long [] arr ) {
@@ -224,9 +228,9 @@ public long maxAlignMask() {
224
228
}
225
229
}
226
230
227
- public static class OfFloat extends HeapMemorySegmentImpl < float []> {
231
+ public static class OfFloat extends HeapMemorySegmentImpl {
228
232
229
- OfFloat (long offset , float [] base , long length , int mask ) {
233
+ OfFloat (long offset , Object base , long length , int mask ) {
230
234
super (offset , base , length , mask );
231
235
}
232
236
@@ -237,7 +241,7 @@ OfFloat dup(long offset, long size, int mask, ResourceScopeImpl scope) {
237
241
238
242
@ Override
239
243
float [] base () {
240
- return Objects .requireNonNull (base );
244
+ return ( float []) Objects .requireNonNull (base );
241
245
}
242
246
243
247
public static MemorySegment fromArray (float [] arr ) {
@@ -252,9 +256,9 @@ public long maxAlignMask() {
252
256
}
253
257
}
254
258
255
- public static class OfDouble extends HeapMemorySegmentImpl < double []> {
259
+ public static class OfDouble extends HeapMemorySegmentImpl {
256
260
257
- OfDouble (long offset , double [] base , long length , int mask ) {
261
+ OfDouble (long offset , Object base , long length , int mask ) {
258
262
super (offset , base , length , mask );
259
263
}
260
264
@@ -265,7 +269,7 @@ OfDouble dup(long offset, long size, int mask, ResourceScopeImpl scope) {
265
269
266
270
@ Override
267
271
double [] base () {
268
- return Objects .requireNonNull (base );
272
+ return ( double []) Objects .requireNonNull (base );
269
273
}
270
274
271
275
public static MemorySegment fromArray (double [] arr ) {
0 commit comments