Condensers and Shading

Ethan McCue ethan at mccue.dev
Tue Jun 13 14:16:56 UTC 2023


Hi All,

I just read through the early discussion on the condenser concept.

A brain-worm I can't dispose of[1] is that the concept of time shifting
could be used to allow language level shading.

That is, if a user can say that none of the classes in a module will be
reflected upon using dynamically constructed values.[2]

     Class.forName(f()); // X

Then it would be a "safe" operation to change the package name of all of
those classes and bundle them inside of a module which requires them.[3]

    shadeable module org.example {
        exports org.example;
        exports org.example.abc;
    }

    module org.other {
      requires shaded org.example;
  }

Now, this is not in Leyden's mission statement. Nothing about startup time
is improved by renaming packages and classes. But the set of information
you'd need to allow shading seems to overlap with the set of information
you'd need to allow for making a static executable.

So in the same way Valhalla is converging towards T! + value + implicit
constructor = inline-ability there might be a "can make static exe" that
falls out of other features like this.

[1]: And one I feel I should bring up considering that the set of
condensers might start out or remain closed to keep a consistent platform
definition.
[2]: + some other restrictions I am sure
[3]: There might be a place other than modules which could work, but
module-info declarations are currently the only place where users
explicitly mark reflect-ability constraints today, so it
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.openjdk.org/pipermail/leyden-dev/attachments/20230613/bb0c28c8/attachment.htm>


More information about the leyden-dev mailing list