77
77
public interface SegmentAllocator {
78
78
79
79
/**
80
- * Converts a Java string into a UTF-8 encoded, null-terminated C string,
81
- * storing the result into a memory segment.
80
+ * {@return a new memory segment with a Java string converted into a UTF-8 encoded, null-terminated C string}
82
81
* <p>
83
82
* This method always replaces malformed-input and unmappable-character
84
83
* sequences with this charset's default replacement byte array. The
@@ -90,209 +89,329 @@ public interface SegmentAllocator {
90
89
* the string, such as {@link MemorySegment#getUtf8String(long)}, the string
91
90
* will appear truncated when read again.
92
91
*
93
- * @implSpec the default implementation for this method copies the contents of the provided Java string
92
+ * @implSpec The default implementation for this method copies the contents of the provided Java string
94
93
* into a new memory segment obtained by calling {@code this.allocate(str.length() + 1)}.
95
94
* @param str the Java string to be converted into a C string.
96
- * @return a new native segment containing the converted C string.
97
95
*/
98
96
default MemorySegment allocateUtf8String (String str ) {
99
97
Objects .requireNonNull (str );
100
98
return Utils .toCString (str .getBytes (StandardCharsets .UTF_8 ), this );
101
99
}
102
100
103
101
/**
104
- * Allocates a memory segment with the given layout and initializes it with the given byte value.
105
- * @implSpec the default implementation for this method calls {@code this.allocate(layout)}.
102
+ * {@return a new memory segment initialized with the provided {@code byte} {@code value} as
103
+ * specified by the provided {@code layout} (i.e. byte ordering, alignment and size)}
104
+ *
105
+ * @implSpec The default implementation is equivalent to:
106
+ * {@snippet lang=java :
107
+ * MemorySegment seg = allocate(Objects.requireNonNull(layout));
108
+ * seg.set(layout, 0, value);
109
+ * return seg;
110
+ * }
111
+ *
106
112
* @param layout the layout of the block of memory to be allocated.
107
- * @param value the value to be set on the newly allocated memory block.
108
- * @return a segment for the newly allocated memory block.
113
+ * @param value the value to be set in the newly allocated memory segment.
109
114
*/
110
115
default MemorySegment allocate (ValueLayout .OfByte layout , byte value ) {
111
116
Objects .requireNonNull (layout );
112
117
VarHandle handle = layout .varHandle ();
113
- MemorySegment addr = allocate (layout );
114
- handle .set (addr , value );
115
- return addr ;
118
+ MemorySegment seg = allocate (layout );
119
+ handle .set (seg , value );
120
+ return seg ;
116
121
}
117
122
118
123
/**
119
- * Allocates a memory segment with the given layout and initializes it with the given char value.
120
- * @implSpec the default implementation for this method calls {@code this.allocate(layout)}.
124
+ * {@return a new memory segment initialized with the provided {@code char} {@code value} as
125
+ * specified by the provided {@code layout} (i.e. byte ordering, alignment and size)}
126
+ *
127
+ * @implSpec The default implementation is equivalent to:
128
+ * {@snippet lang=java :
129
+ * MemorySegment seg = allocate(Objects.requireNonNull(layout));
130
+ * seg.set(layout, 0, value);
131
+ * return seg;
132
+ * }
133
+ *
121
134
* @param layout the layout of the block of memory to be allocated.
122
- * @param value the value to be set on the newly allocated memory block.
123
- * @return a segment for the newly allocated memory block.
135
+ * @param value the value to be set in the newly allocated memory segment.
124
136
*/
125
137
default MemorySegment allocate (ValueLayout .OfChar layout , char value ) {
126
138
Objects .requireNonNull (layout );
127
139
VarHandle handle = layout .varHandle ();
128
- MemorySegment addr = allocate (layout );
129
- handle .set (addr , value );
130
- return addr ;
140
+ MemorySegment seg = allocate (layout );
141
+ handle .set (seg , value );
142
+ return seg ;
131
143
}
132
144
133
145
/**
134
- * Allocates a memory segment with the given layout and initializes it with the given short value.
135
- * @implSpec the default implementation for this method calls {@code this.allocate(layout)}.
146
+ * {@return a new memory segment initialized with the provided {@code short} {@code value} as
147
+ * specified by the provided {@code layout} (i.e. byte ordering, alignment and size)}
148
+ *
149
+ * @implSpec The default implementation is equivalent to:
150
+ * {@snippet lang=java :
151
+ * MemorySegment seg = allocate(Objects.requireNonNull(layout));
152
+ * seg.set(layout, 0, value);
153
+ * return seg;
154
+ * }
155
+ *
136
156
* @param layout the layout of the block of memory to be allocated.
137
- * @param value the value to be set on the newly allocated memory block.
138
- * @return a segment for the newly allocated memory block.
157
+ * @param value the value to be set in the newly allocated memory segment.
139
158
*/
140
159
default MemorySegment allocate (ValueLayout .OfShort layout , short value ) {
141
160
Objects .requireNonNull (layout );
142
161
VarHandle handle = layout .varHandle ();
143
- MemorySegment addr = allocate (layout );
144
- handle .set (addr , value );
145
- return addr ;
162
+ MemorySegment seg = allocate (layout );
163
+ handle .set (seg , value );
164
+ return seg ;
146
165
}
147
166
148
167
/**
149
- * Allocates a memory segment with the given layout and initializes it with the given int value.
150
- * @implSpec the default implementation for this method calls {@code this.allocate(layout)}.
168
+ * {@return a new memory segment initialized with the provided {@code int} {@code value} as
169
+ * specified by the provided {@code layout} (i.e. byte ordering, alignment and size)}
170
+ *
171
+ * @implSpec The default implementation is equivalent to:
172
+ * {@snippet lang=java :
173
+ * MemorySegment seg = allocate(Objects.requireNonNull(layout));
174
+ * seg.set(layout, 0, value);
175
+ * return seg;
176
+ * }
177
+ *
151
178
* @param layout the layout of the block of memory to be allocated.
152
- * @param value the value to be set on the newly allocated memory block.
153
- * @return a segment for the newly allocated memory block.
179
+ * @param value the value to be set in the newly allocated memory segment.
154
180
*/
155
181
default MemorySegment allocate (ValueLayout .OfInt layout , int value ) {
156
182
Objects .requireNonNull (layout );
157
183
VarHandle handle = layout .varHandle ();
158
- MemorySegment addr = allocate (layout );
159
- handle .set (addr , value );
160
- return addr ;
184
+ MemorySegment seg = allocate (layout );
185
+ handle .set (seg , value );
186
+ return seg ;
161
187
}
162
188
163
189
/**
164
- * Allocates a memory segment with the given layout and initializes it with the given float value.
165
- * @implSpec the default implementation for this method calls {@code this.allocate(layout)}.
190
+ * {@return a new memory segment initialized with the provided {@code float} {@code value} as
191
+ * specified by the provided {@code layout} (i.e. byte ordering, alignment and size)}
192
+ *
193
+ * @implSpec The default implementation is equivalent to:
194
+ * {@snippet lang=java :
195
+ * MemorySegment seg = allocate(Objects.requireNonNull(layout));
196
+ * seg.set(layout, 0, value);
197
+ * return seg;
198
+ * }
199
+ *
166
200
* @param layout the layout of the block of memory to be allocated.
167
- * @param value the value to be set on the newly allocated memory block.
168
- * @return a segment for the newly allocated memory block.
201
+ * @param value the value to be set in the newly allocated memory segment.
169
202
*/
170
203
default MemorySegment allocate (ValueLayout .OfFloat layout , float value ) {
171
204
Objects .requireNonNull (layout );
172
205
VarHandle handle = layout .varHandle ();
173
- MemorySegment addr = allocate (layout );
174
- handle .set (addr , value );
175
- return addr ;
206
+ MemorySegment seg = allocate (layout );
207
+ handle .set (seg , value );
208
+ return seg ;
176
209
}
177
210
178
211
/**
179
- * Allocates a memory segment with the given layout and initializes it with the given long value.
180
- * @implSpec the default implementation for this method calls {@code this.allocate(layout)}.
212
+ * {@return a new memory segment initialized with the provided {@code long} {@code value} as
213
+ * specified by the provided {@code layout} (i.e. byte ordering, alignment and size)}
214
+ *
215
+ * @implSpec The default implementation is equivalent to:
216
+ * {@snippet lang=java :
217
+ * MemorySegment seg = allocate(Objects.requireNonNull(layout));
218
+ * seg.set(layout, 0, value);
219
+ * return seg;
220
+ * }
221
+ *
181
222
* @param layout the layout of the block of memory to be allocated.
182
- * @param value the value to be set on the newly allocated memory block.
183
- * @return a segment for the newly allocated memory block.
223
+ * @param value the value to be set in the newly allocated memory segment.
184
224
*/
185
225
default MemorySegment allocate (ValueLayout .OfLong layout , long value ) {
186
226
Objects .requireNonNull (layout );
187
227
VarHandle handle = layout .varHandle ();
188
- MemorySegment addr = allocate (layout );
189
- handle .set (addr , value );
190
- return addr ;
228
+ MemorySegment seg = allocate (layout );
229
+ handle .set (seg , value );
230
+ return seg ;
191
231
}
192
232
193
233
/**
194
- * Allocates a memory segment with the given layout and initializes it with the given double value.
195
- * @implSpec the default implementation for this method calls {@code this.allocate(layout)}.
234
+ * {@return a new memory segment initialized with the provided {@code double} {@code value} as
235
+ * specified by the provided {@code layout} (i.e. byte ordering, alignment and size)}
236
+ *
237
+ * @implSpec The default implementation is equivalent to:
238
+ * {@snippet lang=java :
239
+ * MemorySegment seg = allocate(Objects.requireNonNull(layout));
240
+ * seg.set(layout, 0, value);
241
+ * return seg;
242
+ * }
243
+ *
196
244
* @param layout the layout of the block of memory to be allocated.
197
- * @param value the value to be set on the newly allocated memory block.
198
- * @return a segment for the newly allocated memory block.
245
+ * @param value the value to be set in the newly allocated memory segment.
199
246
*/
200
247
default MemorySegment allocate (ValueLayout .OfDouble layout , double value ) {
201
248
Objects .requireNonNull (layout );
202
249
VarHandle handle = layout .varHandle ();
203
- MemorySegment addr = allocate (layout );
204
- handle .set (addr , value );
205
- return addr ;
250
+ MemorySegment seg = allocate (layout );
251
+ handle .set (seg , value );
252
+ return seg ;
206
253
}
207
254
208
255
/**
209
- * Allocates a memory segment with the given layout and initializes it with the given address value.
256
+ * {@return a new memory segment initialized with the address of the provided {@code value} as
257
+ * specified by the provided {@code layout} (i.e. byte ordering, alignment and size)}
258
+ * <p>
210
259
* The address value might be narrowed according to the platform address size (see {@link ValueLayout#ADDRESS}).
211
- * @implSpec the default implementation for this method calls {@code this.allocate(layout)}.
260
+ *
261
+ * @implSpec The default implementation is equivalent to:
262
+ * {@snippet lang=java :
263
+ * Objects.requireNonNull(value);
264
+ * MemorySegment seg = allocate(Objects.requireNonNull(layout));
265
+ * seg.set(layout, 0, value);
266
+ * return seg;
267
+ * }
268
+ *
212
269
* @param layout the layout of the block of memory to be allocated.
213
- * @param value the value to be set on the newly allocated memory block.
214
- * @return a segment for the newly allocated memory block.
270
+ * @param value the value to be set in the newly allocated memory segment.
215
271
*/
216
272
default MemorySegment allocate (AddressLayout layout , MemorySegment value ) {
217
273
Objects .requireNonNull (value );
218
274
Objects .requireNonNull (layout );
219
- MemorySegment segment = allocate (layout );
220
- layout .varHandle ().set (segment , value );
221
- return segment ;
275
+ MemorySegment seg = allocate (layout );
276
+ layout .varHandle ().set (seg , value );
277
+ return seg ;
222
278
}
223
279
224
280
/**
225
- * Allocates a memory segment with the given layout and initializes it with the given byte elements.
226
- * @implSpec the default implementation for this method calls {@code this.allocateArray(layout, array.length)}.
281
+ * {@return a new memory segment with a {@linkplain MemorySegment#byteSize() byteSize()} of
282
+ * {@code E*layout.byteSize()} initialized with the provided {@code E} {@code byte} {@code elements} as
283
+ * specified by the provided {@code layout} (i.e. byte ordering, alignment and size)}
284
+ *
285
+ * @implSpec The default implementation is equivalent to:
286
+ * {@snippet lang=java :
287
+ * int size = Objects.requireNonNull(elements).length;
288
+ * MemorySegment seg = allocateArray(Objects.requireNonNull(elementLayout), size);
289
+ * MemorySegment.copy(elements, 0, seg, elementLayout, 0, size);
290
+ * return seg;
291
+ * }
292
+ *
227
293
* @param elementLayout the element layout of the array to be allocated.
228
- * @param elements the byte elements to be copied to the newly allocated memory block.
229
- * @return a segment for the newly allocated memory block.
294
+ * @param elements the short elements to be copied to the newly allocated memory block.
230
295
*/
231
296
default MemorySegment allocateArray (ValueLayout .OfByte elementLayout , byte ... elements ) {
232
297
return copyArrayWithSwapIfNeeded (elements , elementLayout , MemorySegment ::ofArray );
233
298
}
234
299
235
300
/**
236
- * Allocates a memory segment with the given layout and initializes it with the given short elements.
237
- * @implSpec the default implementation for this method calls {@code this.allocateArray(layout, array.length)}.
301
+ * {@return a new memory segment with a {@linkplain MemorySegment#byteSize() byteSize()} of
302
+ * {@code E*layout.byteSize()} initialized with the provided {@code E} {@code short} {@code elements} as
303
+ * specified by the provided {@code layout} (i.e. byte ordering, alignment and size)}
304
+ *
305
+ * @implSpec The default implementation is equivalent to:
306
+ * {@snippet lang=java :
307
+ * int size = Objects.requireNonNull(elements).length;
308
+ * MemorySegment seg = allocateArray(Objects.requireNonNull(elementLayout), size);
309
+ * MemorySegment.copy(elements, 0, seg, elementLayout, 0, size);
310
+ * return seg;
311
+ * }
312
+ *
238
313
* @param elementLayout the element layout of the array to be allocated.
239
- * @param elements the short elements to be copied to the newly allocated memory block.
240
- * @return a segment for the newly allocated memory block.
314
+ * @param elements the short elements to be copied to the newly allocated memory block.
241
315
*/
242
316
default MemorySegment allocateArray (ValueLayout .OfShort elementLayout , short ... elements ) {
243
317
return copyArrayWithSwapIfNeeded (elements , elementLayout , MemorySegment ::ofArray );
244
318
}
245
319
246
320
/**
247
- * Allocates a memory segment with the given layout and initializes it with the given char elements.
248
- * @implSpec the default implementation for this method calls {@code this.allocateArray(layout, array.length)}.
321
+ * {@return a new memory segment with a {@linkplain MemorySegment#byteSize() byteSize()} of
322
+ * {@code E*layout.byteSize()} initialized with the provided {@code E} {@code char} {@code elements} as
323
+ * specified by the provided {@code layout} (i.e. byte ordering, alignment and size)}
324
+ *
325
+ * @implSpec The default implementation is equivalent to:
326
+ * {@snippet lang=java :
327
+ * int size = Objects.requireNonNull(elements).length;
328
+ * MemorySegment seg = allocateArray(Objects.requireNonNull(elementLayout), size);
329
+ * MemorySegment.copy(elements, 0, seg, elementLayout, 0, size);
330
+ * return seg;
331
+ * }
332
+ *
249
333
* @param elementLayout the element layout of the array to be allocated.
250
- * @param elements the char elements to be copied to the newly allocated memory block.
251
- * @return a segment for the newly allocated memory block.
334
+ * @param elements the short elements to be copied to the newly allocated memory block.
252
335
*/
253
336
default MemorySegment allocateArray (ValueLayout .OfChar elementLayout , char ... elements ) {
254
337
return copyArrayWithSwapIfNeeded (elements , elementLayout , MemorySegment ::ofArray );
255
338
}
256
339
257
340
/**
258
- * Allocates a memory segment with the given layout and initializes it with the given int elements.
259
- * @implSpec the default implementation for this method calls {@code this.allocateArray(layout, array.length)}.
341
+ * {@return a new memory segment with a {@linkplain MemorySegment#byteSize() byteSize()} of
342
+ * {@code E*layout.byteSize()} initialized with the provided {@code E} {@code int} {@code elements} as
343
+ * specified by the provided {@code layout} (i.e. byte ordering, alignment and size)}
344
+ *
345
+ * @implSpec The default implementation is equivalent to:
346
+ * {@snippet lang=java :
347
+ * int size = Objects.requireNonNull(elements).length;
348
+ * MemorySegment seg = allocateArray(Objects.requireNonNull(elementLayout), size);
349
+ * MemorySegment.copy(elements, 0, seg, elementLayout, 0, size);
350
+ * return seg;
351
+ * }
352
+ *
260
353
* @param elementLayout the element layout of the array to be allocated.
261
- * @param elements the int elements to be copied to the newly allocated memory block.
262
- * @return a segment for the newly allocated memory block.
354
+ * @param elements the short elements to be copied to the newly allocated memory block.
263
355
*/
264
356
default MemorySegment allocateArray (ValueLayout .OfInt elementLayout , int ... elements ) {
265
357
return copyArrayWithSwapIfNeeded (elements , elementLayout , MemorySegment ::ofArray );
266
358
}
267
359
268
360
/**
269
- * Allocates a memory segment with the given layout and initializes it with the given float elements.
270
- * @implSpec the default implementation for this method calls {@code this.allocateArray(layout, array.length)}.
361
+ * {@return a new memory segment with a {@linkplain MemorySegment#byteSize() byteSize()} of
362
+ * {@code E*layout.byteSize()} initialized with the provided {@code E} {@code float} {@code elements} as
363
+ * specified by the provided {@code layout} (i.e. byte ordering, alignment and size)}
364
+ *
365
+ * @implSpec The default implementation is equivalent to:
366
+ * {@snippet lang=java :
367
+ * int size = Objects.requireNonNull(elements).length;
368
+ * MemorySegment seg = allocateArray(Objects.requireNonNull(elementLayout), size);
369
+ * MemorySegment.copy(elements, 0, seg, elementLayout, 0, size);
370
+ * return seg;
371
+ * }
372
+ *
271
373
* @param elementLayout the element layout of the array to be allocated.
272
- * @param elements the float elements to be copied to the newly allocated memory block.
273
- * @return a segment for the newly allocated memory block.
374
+ * @param elements the short elements to be copied to the newly allocated memory block.
274
375
*/
275
376
default MemorySegment allocateArray (ValueLayout .OfFloat elementLayout , float ... elements ) {
276
377
return copyArrayWithSwapIfNeeded (elements , elementLayout , MemorySegment ::ofArray );
277
378
}
278
379
279
380
/**
280
- * Allocates a memory segment with the given layout and initializes it with the given long elements.
281
- * @implSpec the default implementation for this method calls {@code this.allocateArray(layout, array.length)}.
381
+ * {@return a new memory segment with a {@linkplain MemorySegment#byteSize() byteSize()} of
382
+ * {@code E*layout.byteSize()} initialized with the provided {@code E} {@code long} {@code elements} as
383
+ * specified by the provided {@code layout} (i.e. byte ordering, alignment and size)}
384
+ *
385
+ * @implSpec The default implementation is equivalent to:
386
+ * {@snippet lang=java :
387
+ * int size = Objects.requireNonNull(elements).length;
388
+ * MemorySegment seg = allocateArray(Objects.requireNonNull(elementLayout), size);
389
+ * MemorySegment.copy(elements, 0, seg, elementLayout, 0, size);
390
+ * return seg;
391
+ * }
392
+ *
282
393
* @param elementLayout the element layout of the array to be allocated.
283
- * @param elements the long elements to be copied to the newly allocated memory block.
284
- * @return a segment for the newly allocated memory block.
394
+ * @param elements the short elements to be copied to the newly allocated memory block.
285
395
*/
286
396
default MemorySegment allocateArray (ValueLayout .OfLong elementLayout , long ... elements ) {
287
397
return copyArrayWithSwapIfNeeded (elements , elementLayout , MemorySegment ::ofArray );
288
398
}
289
399
290
400
/**
291
- * Allocates a memory segment with the given layout and initializes it with the given double elements.
292
- * @implSpec the default implementation for this method calls {@code this.allocateArray(layout, array.length)}.
401
+ * {@return a new memory segment with a {@linkplain MemorySegment#byteSize() byteSize()} of
402
+ * {@code E*layout.byteSize()} initialized with the provided {@code E} {@code double} {@code elements} as
403
+ * specified by the provided {@code layout} (i.e. byte ordering, alignment and size)}
404
+ *
405
+ * @implSpec The default implementation is equivalent to:
406
+ * {@snippet lang=java :
407
+ * int size = Objects.requireNonNull(elements).length;
408
+ * MemorySegment seg = allocateArray(Objects.requireNonNull(elementLayout), size);
409
+ * MemorySegment.copy(elements, 0, seg, elementLayout, 0, size);
410
+ * return seg;
411
+ * }
412
+ *
293
413
* @param elementLayout the element layout of the array to be allocated.
294
- * @param elements the double elements to be copied to the newly allocated memory block.
295
- * @return a segment for the newly allocated memory block.
414
+ * @param elements the short elements to be copied to the newly allocated memory block.
296
415
*/
297
416
default MemorySegment allocateArray (ValueLayout .OfDouble elementLayout , double ... elements ) {
298
417
return copyArrayWithSwapIfNeeded (elements , elementLayout , MemorySegment ::ofArray );
@@ -301,31 +420,35 @@ default MemorySegment allocateArray(ValueLayout.OfDouble elementLayout, double..
301
420
private <Z > MemorySegment copyArrayWithSwapIfNeeded (Z array , ValueLayout elementLayout ,
302
421
Function <Z , MemorySegment > heapSegmentFactory ) {
303
422
int size = Array .getLength (Objects .requireNonNull (array ));
304
- MemorySegment addr = allocateArray (Objects .requireNonNull (elementLayout ), size );
423
+ MemorySegment seg = allocateArray (Objects .requireNonNull (elementLayout ), size );
305
424
if (size > 0 ) {
306
425
MemorySegment .copy (heapSegmentFactory .apply (array ), elementLayout , 0 ,
307
- addr , elementLayout .withOrder (ByteOrder .nativeOrder ()), 0 , size );
426
+ seg , elementLayout .withOrder (ByteOrder .nativeOrder ()), 0 , size );
308
427
}
309
- return addr ;
428
+ return seg ;
310
429
}
311
430
312
431
/**
313
- * Allocates a memory segment with the given layout.
314
- * @implSpec the default implementation for this method calls {@code this.allocate(layout.byteSize(), layout.byteAlignment())}.
432
+ * {@return a new memory segment with the given layout}
433
+ *
434
+ * @implSpec The default implementation for this method calls
435
+ * {@code this.allocate(layout.byteSize(), layout.byteAlignment())}.
436
+ *
315
437
* @param layout the layout of the block of memory to be allocated.
316
- * @return a segment for the newly allocated memory block.
317
438
*/
318
439
default MemorySegment allocate (MemoryLayout layout ) {
319
440
Objects .requireNonNull (layout );
320
441
return allocate (layout .byteSize (), layout .byteAlignment ());
321
442
}
322
443
323
444
/**
324
- * Allocates a memory segment with the given element layout and size.
325
- * @implSpec the default implementation for this method calls {@code this.allocate(MemoryLayout.sequenceLayout(count, elementLayout))}.
445
+ * {@return a new memory segment with the given {@code elementLayout} and {@code count}}
446
+ *
447
+ * @implSpec The default implementation for this method calls
448
+ * {@code this.allocate(MemoryLayout.sequenceLayout(count, elementLayout))}.
449
+ *
326
450
* @param elementLayout the array element layout.
327
451
* @param count the array element count.
328
- * @return a segment for the newly allocated memory block.
329
452
* @throws IllegalArgumentException if {@code elementLayout.byteSize() * count} overflows.
330
453
* @throws IllegalArgumentException if {@code count < 0}.
331
454
*/
@@ -338,21 +461,23 @@ default MemorySegment allocateArray(MemoryLayout elementLayout, long count) {
338
461
}
339
462
340
463
/**
341
- * Allocates a memory segment with the given size.
342
- * @implSpec the default implementation for this method calls {@code this.allocate(byteSize, 1)}.
464
+ * {@return a new memory segment with the given {@code byteSize}}
465
+ *
466
+ * @implSpec The default implementation for this method calls
467
+ * {@code this.allocate(byteSize, 1)}.
468
+ *
343
469
* @param byteSize the size (in bytes) of the block of memory to be allocated.
344
- * @return a segment for the newly allocated memory block.
345
470
* @throws IllegalArgumentException if {@code byteSize < 0}
346
471
*/
347
472
default MemorySegment allocate (long byteSize ) {
348
473
return allocate (byteSize , 1 );
349
474
}
350
475
351
476
/**
352
- * Allocates a memory segment with the given size and alignment constraint.
477
+ * {@return a new memory segment with the given {@code byteSize} and {@code byteAlignment}}
478
+ *
353
479
* @param byteSize the size (in bytes) of the block of memory to be allocated.
354
480
* @param byteAlignment the alignment (in bytes) of the block of memory to be allocated.
355
- * @return a segment for the newly allocated memory block.
356
481
* @throws IllegalArgumentException if {@code byteSize < 0}, {@code byteAlignment <= 0},
357
482
* or if {@code byteAlignment} is not a power of 2.
358
483
*/
@@ -365,6 +490,7 @@ default MemorySegment allocate(long byteSize) {
365
490
* <p>
366
491
* The returned allocator throws {@link IndexOutOfBoundsException} when a slice of the provided
367
492
* segment with the requested size and alignment cannot be found.
493
+ *
368
494
* @implNote A slicing allocator is not <em>thread-safe</em>.
369
495
*
370
496
* @param segment the segment which the returned allocator should slice from.
1 commit comments
openjdk-notifier[bot] commentedon Aug 10, 2023
Review
Issues