59
59
public class TestNativeScope {
60
60
61
61
final static int ELEMS = 128 ;
62
+ final static Class <?> ADDRESS_CARRIER = MemoryLayouts .ADDRESS .bitSize () == 64 ? long .class : int .class ;
62
63
63
64
@ Test (dataProvider = "nativeScopes" )
64
65
public <Z > void testAllocation (Z value , ScopeFactory scopeFactory , ValueLayout layout , AllocationFunction <Z > allocationFunction , Function <MemoryLayout , VarHandle > handleFactory ) {
@@ -221,7 +222,7 @@ static Object[][] nativeScopes() {
221
222
(Function <MemoryLayout , VarHandle >)l -> l .varHandle (double .class ) },
222
223
{ MemoryAddress .ofLong (42 ), (ScopeFactory ) NativeScope ::boundedScope , MemoryLayouts .ADDRESS .withOrder (ByteOrder .BIG_ENDIAN ),
223
224
(AllocationFunction <MemoryAddress >) NativeScope ::allocate ,
224
- (Function <MemoryLayout , VarHandle >)l -> MemoryHandles .asAddressVarHandle (l .varHandle (long . class )) },
225
+ (Function <MemoryLayout , VarHandle >)l -> MemoryHandles .asAddressVarHandle (l .varHandle (ADDRESS_CARRIER )) },
225
226
226
227
{ (byte )42 , (ScopeFactory ) NativeScope ::boundedScope , MemoryLayouts .BITS_8_LE ,
227
228
(AllocationFunction <Byte >) NativeScope ::allocate ,
@@ -247,7 +248,7 @@ static Object[][] nativeScopes() {
247
248
(Function <MemoryLayout , VarHandle >)l -> l .varHandle (double .class ) },
248
249
{ MemoryAddress .ofLong (42 ), (ScopeFactory ) NativeScope ::boundedScope , MemoryLayouts .ADDRESS .withOrder (ByteOrder .LITTLE_ENDIAN ),
249
250
(AllocationFunction <MemoryAddress >) NativeScope ::allocate ,
250
- (Function <MemoryLayout , VarHandle >)l -> MemoryHandles .asAddressVarHandle (l .varHandle (long . class )) },
251
+ (Function <MemoryLayout , VarHandle >)l -> MemoryHandles .asAddressVarHandle (l .varHandle (ADDRESS_CARRIER )) },
251
252
252
253
{ (byte )42 , (ScopeFactory )size -> NativeScope .unboundedScope (), MemoryLayouts .BITS_8_BE ,
253
254
(AllocationFunction <Byte >) NativeScope ::allocate ,
@@ -273,7 +274,7 @@ static Object[][] nativeScopes() {
273
274
(Function <MemoryLayout , VarHandle >)l -> l .varHandle (double .class ) },
274
275
{ MemoryAddress .ofLong (42 ), (ScopeFactory )size -> NativeScope .unboundedScope (), MemoryLayouts .ADDRESS .withOrder (ByteOrder .BIG_ENDIAN ),
275
276
(AllocationFunction <MemoryAddress >) NativeScope ::allocate ,
276
- (Function <MemoryLayout , VarHandle >)l -> MemoryHandles .asAddressVarHandle (l .varHandle (long . class )) },
277
+ (Function <MemoryLayout , VarHandle >)l -> MemoryHandles .asAddressVarHandle (l .varHandle (ADDRESS_CARRIER )) },
277
278
278
279
{ (byte )42 , (ScopeFactory )size -> NativeScope .unboundedScope (), MemoryLayouts .BITS_8_LE ,
279
280
(AllocationFunction <Byte >) NativeScope ::allocate ,
@@ -299,7 +300,7 @@ static Object[][] nativeScopes() {
299
300
(Function <MemoryLayout , VarHandle >)l -> l .varHandle (double .class ) },
300
301
{ MemoryAddress .ofLong (42 ), (ScopeFactory )size -> NativeScope .unboundedScope (), MemoryLayouts .ADDRESS .withOrder (ByteOrder .LITTLE_ENDIAN ),
301
302
(AllocationFunction <MemoryAddress >) NativeScope ::allocate ,
302
- (Function <MemoryLayout , VarHandle >)l -> MemoryHandles .asAddressVarHandle (l .varHandle (long . class )) },
303
+ (Function <MemoryLayout , VarHandle >)l -> MemoryHandles .asAddressVarHandle (l .varHandle (ADDRESS_CARRIER )) },
303
304
};
304
305
}
305
306
1 commit comments
openjdk-notifier[bot] commentedon Nov 26, 2020
Review
Issues