26
26
package jdk .internal .foreign ;
27
27
28
28
import jdk .incubator .foreign .MemoryAddress ;
29
+ import jdk .incubator .foreign .MemoryLayout ;
30
+ import jdk .incubator .foreign .MemoryLayouts ;
29
31
import jdk .incubator .foreign .MemorySegment ;
30
32
import jdk .incubator .foreign .SequenceLayout ;
31
33
import jdk .internal .access .JavaNioAccess ;
@@ -68,22 +70,20 @@ public abstract class AbstractMemorySegmentImpl implements MemorySegment, Memory
68
70
69
71
final long length ;
70
72
final int mask ;
71
- final Thread owner ;
72
73
final MemoryScope scope ;
73
74
74
75
@ ForceInline
75
- AbstractMemorySegmentImpl (long length , int mask , Thread owner , MemoryScope scope ) {
76
+ AbstractMemorySegmentImpl (long length , int mask , MemoryScope scope ) {
76
77
this .length = length ;
77
78
this .mask = mask ;
78
- this .owner = owner ;
79
79
this .scope = scope ;
80
80
}
81
81
82
82
abstract long min ();
83
83
84
84
abstract Object base ();
85
85
86
- abstract AbstractMemorySegmentImpl dup (long offset , long size , int mask , Thread owner , MemoryScope scope );
86
+ abstract AbstractMemorySegmentImpl dup (long offset , long size , int mask , MemoryScope scope );
87
87
88
88
abstract ByteBuffer makeByteBuffer ();
89
89
@@ -100,7 +100,7 @@ public AbstractMemorySegmentImpl asSlice(long offset, long newSize) {
100
100
}
101
101
102
102
private AbstractMemorySegmentImpl asSliceNoCheck (long offset , long newSize ) {
103
- return dup (offset , newSize , mask , owner , scope );
103
+ return dup (offset , newSize , mask , scope );
104
104
}
105
105
106
106
@ SuppressWarnings ("unchecked" )
@@ -145,12 +145,12 @@ public final long byteSize() {
145
145
146
146
@ Override
147
147
public final boolean isAlive () {
148
- return scope .isAliveThreadSafe ();
148
+ return scope .isAlive ();
149
149
}
150
150
151
151
@ Override
152
152
public Thread ownerThread () {
153
- return owner ;
153
+ return scope . ownerThread () ;
154
154
}
155
155
156
156
@ Override
@@ -159,7 +159,7 @@ public AbstractMemorySegmentImpl withAccessModes(int accessModes) {
159
159
if ((~accessModes () & accessModes ) != 0 ) {
160
160
throw new IllegalArgumentException ("Cannot acquire more access modes" );
161
161
}
162
- return dup (0 , length , (mask & ~ACCESS_MASK ) | accessModes , owner , scope );
162
+ return dup (0 , length , (mask & ~ACCESS_MASK ) | accessModes , scope );
163
163
}
164
164
165
165
@ Override
@@ -177,17 +177,16 @@ private void checkAccessModes(int accessModes) {
177
177
@ Override
178
178
public MemorySegment withOwnerThread (Thread newOwner ) {
179
179
Objects .requireNonNull (newOwner );
180
- checkValidState ();
181
180
if (!isSet (HANDOFF )) {
182
181
throw unsupportedAccessMode (HANDOFF );
183
182
}
184
- if (owner == newOwner ) {
183
+ if (scope . ownerThread () == newOwner ) {
185
184
throw new IllegalArgumentException ("Segment already owned by thread: " + newOwner );
186
185
} else {
187
186
try {
188
- return dup (0L , length , mask , newOwner , scope .dup ());
187
+ return dup (0L , length , mask , scope .dup (newOwner ));
189
188
} finally {
190
- //flush read/writes to memory before returning the new segment
189
+ //flush read/writes to segment memory before returning the new segment
191
190
VarHandle .fullFence ();
192
191
}
193
192
}
@@ -198,19 +197,18 @@ public final void close() {
198
197
if (!isSet (CLOSE )) {
199
198
throw unsupportedAccessMode (CLOSE );
200
199
}
201
- checkValidState ();
202
200
closeNoCheck ();
203
201
}
204
202
205
203
private final void closeNoCheck () {
206
- scope .close (true );
204
+ scope .close ();
207
205
}
208
206
209
207
final AbstractMemorySegmentImpl acquire () {
210
208
if (Thread .currentThread () != ownerThread () && !isSet (ACQUIRE )) {
211
209
throw unsupportedAccessMode (ACQUIRE );
212
210
}
213
- return dup (0 , length , mask , Thread . currentThread (), scope .acquire ());
211
+ return dup (0 , length , mask , scope .acquire ());
214
212
}
215
213
216
214
@ Override
@@ -227,7 +225,7 @@ boolean isSmall() {
227
225
}
228
226
229
227
void checkRange (long offset , long length , boolean writeAccess ) {
230
- checkValidState ();
228
+ scope . checkValidState ();
231
229
if (writeAccess && !isSet (WRITE )) {
232
230
throw unsupportedAccessMode (WRITE );
233
231
} else if (!writeAccess && !isSet (READ )) {
@@ -238,10 +236,7 @@ void checkRange(long offset, long length, boolean writeAccess) {
238
236
239
237
@ Override
240
238
public final void checkValidState () {
241
- if (owner != null && owner != Thread .currentThread ()) {
242
- throw new IllegalStateException ("Attempt to access segment outside owning thread" );
243
- }
244
- scope .checkAliveConfined ();
239
+ scope .checkValidState ();
245
240
}
246
241
247
242
// Helper methods
@@ -415,29 +410,28 @@ public static AbstractMemorySegmentImpl ofBuffer(ByteBuffer bb) {
415
410
AbstractMemorySegmentImpl bufferSegment = (AbstractMemorySegmentImpl )nioAccess .bufferSegment (bb );
416
411
final MemoryScope bufferScope ;
417
412
int modes ;
418
- final Thread owner ;
419
413
if (bufferSegment != null ) {
420
414
bufferScope = bufferSegment .scope ;
421
415
modes = bufferSegment .mask ;
422
- owner = bufferSegment .owner ;
423
416
} else {
424
- bufferScope = new MemoryScope (bb , null );
417
+ bufferScope = MemoryScope . create (bb , null );
425
418
modes = defaultAccessModes (size );
426
- owner = Thread .currentThread ();
427
419
}
428
420
if (bb .isReadOnly ()) {
429
421
modes &= ~WRITE ;
430
422
}
431
423
if (base != null ) {
432
- return new HeapMemorySegmentImpl <>(bbAddress + pos , () -> (byte [])base , size , modes , owner , bufferScope );
424
+ return new HeapMemorySegmentImpl <>(bbAddress + pos , () -> (byte [])base , size , modes , bufferScope );
433
425
} else if (unmapper == null ) {
434
- return new NativeMemorySegmentImpl (bbAddress + pos , size , modes , owner , bufferScope );
426
+ return new NativeMemorySegmentImpl (bbAddress + pos , size , modes , bufferScope );
435
427
} else {
436
- return new MappedMemorySegmentImpl (bbAddress + pos , unmapper , size , modes , owner , bufferScope );
428
+ return new MappedMemorySegmentImpl (bbAddress + pos , unmapper , size , modes , bufferScope );
437
429
}
438
430
}
439
431
440
- public static AbstractMemorySegmentImpl NOTHING = new AbstractMemorySegmentImpl (0 , 0 , null , MemoryScope .GLOBAL ) {
432
+ public static final AbstractMemorySegmentImpl NOTHING = new AbstractMemorySegmentImpl (
433
+ 0 , 0 , MemoryScope .createUnchecked (null , null , null )
434
+ ) {
441
435
@ Override
442
436
ByteBuffer makeByteBuffer () {
443
437
throw new UnsupportedOperationException ();
@@ -454,7 +448,7 @@ Object base() {
454
448
}
455
449
456
450
@ Override
457
- AbstractMemorySegmentImpl dup (long offset , long size , int mask , Thread owner , MemoryScope scope ) {
451
+ AbstractMemorySegmentImpl dup (long offset , long size , int mask , MemoryScope scope ) {
458
452
throw new UnsupportedOperationException ();
459
453
}
460
454
};
0 commit comments