-
Notifications
You must be signed in to change notification settings - Fork 61
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
8291473: Unify MemorySegment and MemoryAddress #694
8291473: Unify MemorySegment and MemoryAddress #694
Conversation
👋 Welcome back mcimadamore! A progress list of the required criteria for merging this PR into |
Webrevs
|
This is very appreciated. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There seems to be some comments (and 1 string) that mention MemoryAddress
. Please update those as well.
src/java.base/share/classes/java/lang/foreign/MemorySegment.java
Outdated
Show resolved
Hide resolved
src/java.base/share/classes/java/lang/foreign/package-info.java
Outdated
Show resolved
Hide resolved
test/micro/org/openjdk/bench/java/lang/foreign/pointers/Point.java
Outdated
Show resolved
Hide resolved
Co-authored-by: Jorn Vernee <JornVernee@users.noreply.github.com>
Co-authored-by: Jorn Vernee <JornVernee@users.noreply.github.com>
Co-authored-by: Jorn Vernee <JornVernee@users.noreply.github.com>
…inker.java Co-authored-by: Jorn Vernee <JornVernee@users.noreply.github.com>
…bs.java Co-authored-by: Jorn Vernee <JornVernee@users.noreply.github.com>
Co-authored-by: Jorn Vernee <JornVernee@users.noreply.github.com>
Revert BulkMismatchAcquire benchmark Fix misc issues in tests and benchmarks
@@ -59,9 +61,19 @@ public abstract class HeapMemorySegmentImpl extends AbstractMemorySegmentImpl { | |||
final long offset; | |||
final Object base; | |||
|
|||
@Override | |||
public Optional<Object> array() { | |||
return Optional.of(base); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if we should use here ofNullable
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would like to recall this comment. Even if it would look better from language perspective, having not specialized Optional
can make Unsafe
operations slower, as the VM can make issues with detecting if it's on heap or off-heap access.
/** | ||
* {@return the Java array associated with this memory segment, if any} | ||
*/ | ||
Optional<Object> array(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if array word is not too strict, I think what if we would use value object as a base for struct (sometime in future).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if array word is not too strict, I think what if we would use value object as a base for struct (sometime in future).
I think you are correct, the word might indeed be too strict. "Heap container" is what we're after, but I'm not sure if having a method named "heapContainer" would fly?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not good at finding names. I got used to base
. Maybe heapBase or heapObject. I'll think about it and come back if I invite something worth of mentioning.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think heapContainer is good, I just thought as well about something like holder, or value holder if we would like to have something shorter - I'm really not an expert at naming.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what about heapBase
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll keep the name (array
) for now, we can always revise that later. Thanks.
Improve valist test
Fix acquire logic to be layout-based
Simplify buffer copy util
I've finished addressing the review comments. Now |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is mostly good now.
The only thing is that there's still some occurrence of MemoryAddress
(when I search for it in src/java.base/classes
), mostly in comments. Some of these are already stale, so not that important to fix, but there's also a reference to MemoryAddress
in the class javadoc of SymbolLookup
which I think should be updated.
I'll take a pass |
I've fixed most of the spurious references to the now removed classes. I've left the main Binding javadoc alone, because it's full of references to stuff that's no longer valid, and should probably be rewritten in a separate pass. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. Looks good
@mcimadamore This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 65 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
/integrate |
Going to push as commit 8b1af9a.
Your commit was automatically rebased without conflicts. |
@mcimadamore Pushed as commit 8b1af9a. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
This patch implements the changes described in [1].
The main things to notice are the removal of
MemoryAddress
andAddressable
. Everything else falls from that.There are some changes to the
MemorySegment
API as well, as some methods such assegmentOffset
andasOverlappingSlice
have been removed, and insteadMemorySegment::address
now works on heap segments too (and, clients can obtain the array of an heap segment using itsarray
method). So, these methods can, if needed, be implemented outside the core API.MemorySegment::equals
now compares the segments address, which is the most useful comparison when working with native interop (again, client can implement deeper comparison usingmismatch
).Finally, restricted factories accepting raw addresses (in
MemorySegment
andVaList
) have been tweaked to accept a long value instead.VaList
also needed some adjustments, since it builds on top of segments. The API is similar to before - but instead of having an address accessor, it has a zero-length segment accessor.ValueLayout.OfAddress
has a new method to create unsafe address layouts which return segment with maximal size (Long.MAX_VALUE
). I've used these layouts in a lot of places in the implementation internal, which simplifies things quite a bit (e.g. removing the need to create a new segment from an address).There are several test and microbenchmark updates, but relatively minor, and all caused by removal of
MemoryAddress
/Addressable
. Changes here should be relatively simple to follow.While the javadoc is ok, I didn't put too much effort in trying to provide a complete and cohesive story on how zero-length segments are used to model raw addresses. I'm working on some more extensive doc changes on the side, but I wanted to split the javadoc changes from the impl changes, so as to simplify the review work. I hope that makes sense.
[1] - https://mail.openjdk.org/pipermail/panama-dev/2022-July/017181.html
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/panama-foreign pull/694/head:pull/694
$ git checkout pull/694
Update a local copy of the PR:
$ git checkout pull/694
$ git pull https://git.openjdk.org/panama-foreign pull/694/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 694
View PR using the GUI difftool:
$ git pr show -t 694
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/panama-foreign/pull/694.diff