Separation between MemorySegment and MemoryScope
forax at univ-mlv.fr
forax at univ-mlv.fr
Fri Mar 26 23:28:25 UTC 2021
----- Mail original -----
> De: "Maurizio Cimadamore" <maurizio.cimadamore at oracle.com>
> À: "Remi Forax" <forax at univ-mlv.fr>, "panama-dev at openjdk.java.net'" <panama-dev at openjdk.java.net>
> Envoyé: Vendredi 26 Mars 2021 23:52:19
> Objet: Re: Separation between MemorySegment and MemoryScope
Let's separate the issues,
[...]
> Elsewhere Paul said that Vector will look at
> integration with MemorySegment, but can only do so after MemorySegment
> lands in java.base (aaaah these incubating modules).
This is how it can be done.
Notice that we want jdk.incubator.vector to access classes of jdk.incubator.foreign so it not really an issue, the issue is if java.base want to access to an incubator module because a module can not be a parent (every modules as java.base as parent) and a child (java.base requiring jdk.incubator.*) at the same time, there is a no cycle rule in the Java module spec.
The problem is more that we may don't want jdk.incubator.vector to depend on jdk.incubator.foreign, users may want one module but not the other.
Again there is a solution for that, doing a "requires static", the module has to be there at compile time, but not at runtime.
We still have an issue if we have a method that is part of the public API of of jdk.incubator.vector that uses MemorySegment, but typing the method parameter has Object instead of MemorySegment will work,
(Note, this is not really a big issue because class are loaded dynamically and javac will only emit a warning, i believe, but if someone use the Vector API by reflection, it may fail)
i.e. the classes jdk.incubator.vector can use the class of jdk.incubator.vector if it's only part of the private API.
You also have to add the module by hand in the module graph because the initialization of the module graph do not follow the "requires static" branch but given that it's an incubator module,
you have to add it by hand anyway.
>
> Cheers
> Maurizio
Rémi
More information about the panama-dev
mailing list