Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8329997: Add provisions for checking memory segment alignment constraints #18779

Closed
wants to merge 14 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions src/java.base/share/classes/java/lang/foreign/MemorySegment.java
Original file line number Diff line number Diff line change
@@ -605,14 +605,9 @@ public sealed interface MemorySegment permits AbstractMemorySegmentImpl {
* {@return the <a href="#segment-alignment">maximum byte alignment</a>
* associated with this memory segment}
* <p>
* The returned alignment is always a power of two and is derived from:
* <ul>
* <li>Heap segments:
derived from the segment {@linkplain #address() address()}
and the type of the <a href="#segment-alignment">backing heap storage</a>.
* <li>Native segments:
* the {@linkplain MemorySegment#address() address()} function.</li>
* </ul>
* The returned alignment is always a power of two and is derived from
* the segment {@linkplain #address() address()} and, if it is a heap segment,
* the type of the {@linkplain #heapBase() backing heap storage}.
* <p>
* This method can be used to ensure, a {@code segment} is sufficiently aligned
* with a {@code layout}: