[foreign-memaccess+abi] RFR: 8291639: Improve the ability to visualize a MemorySegment in human readable forms [v17]
Gavin Ray
duke at openjdk.org
Mon Sep 5 20:38:57 UTC 2022
On Mon, 5 Sep 2022 20:20:17 GMT, Maurizio Cimadamore <mcimadamore at openjdk.org> wrote:
>> src/java.base/share/classes/java/lang/foreign/MemoryInspection.java line 187:
>>
>>> 185: * @return rendered String
>>> 186: */
>>> 187: default String render(ValueLayout.OfAddress addressLayout, MemorySegment value) {
>>
>> I think you can make it take `Addressable` so it works for both `MemorySegment` and `MemoryAddress`:
>>
>>
>> default String render(ValueLayout.OfAddress addressLayout, Addressable value) {
>> requireNonNull(addressLayout);
>> return String.format("0x%0" + (ValueLayout.ADDRESS.byteSize() * 2) + "X", value.address());
>> }
>>
>>
>> In JDK 20 release I get an error:
>> 
>>
>>
>> Trying to do `(MemorySegment)` cast fails:
>>
>> 
>>
>> But if I make it take `Addressable` instead, then it works:
>> 
>
> Note that the API in the Panama repo is different - MemoryAddress (and Addressable) have been removed as part of:
> https://github.com/openjdk/panama-foreign/pull/694
Oh, well that'd make sense why it didn't work OOTB then, thanks for the info!
-------------
PR: https://git.openjdk.org/panama-foreign/pull/695
More information about the panama-dev
mailing list