[code-reflection] Integrated: Add support for more types
Maurizio Cimadamore
mcimadamore at openjdk.org
Fri Apr 26 17:15:22 UTC 2024
On Mon, 15 Apr 2024 09:24:14 GMT, Maurizio Cimadamore <mcimadamore at openjdk.org> wrote:
> This PR adds support for type-variables and wildcard type arguments in the code model `JavaType`'s hierarchy.
>
> This allows the code model to reflect the source types much more accurately, as we no longer need to erase the source type at the first sign of a non-denotable type. Instead, we can use the a modified (see below) version of the `Types::upwards` function (type projection) to compute the closest **denotable** upper bound to the type found in the source code. This means that the type associated with every op in the model is a (denotable) supertype of the type in the javac AST. The fact that such type is denotable has three important consequences:
>
> * the type can be expressed in the source code (in case the code model needs to be lifted back into Java source)
> * the type must be expressible in the syntax of bytecode signature attributes (this is important e.g. for the local variable type attribute)
> * the type can be resolved to its runtime counterpart in `j.l.r.Type` (not implemented in this PR), as explained below
>
> Some parser changes were required to support this, so that we can serialize and deserialize the new types accordingly.
>
> A new method has been added to `JavaType`, namely `JavaType::erasure`, which computes the erasure of a `JavaType`. This might come in handy when lowering the model into bytecode. Since supporting erasure is crucial, modelling of types has been carefully chosen as to facilitate that operation as much as possible: that is why, for example, `TypeVariableRef` contains the "principal" type-variable bound (so that we can define erasure for type-variables in a straightforward fashion, as the erasure of the primary bound).
>
> #### Denotable projections
>
> The code model type associated with an op result is computed by applying a modified version of `Types::upwards` - that is, the function that implements type projections as specified in [JLS 4.10.5](https://docs.oracle.com/javase/specs/jls/se22/html/jls-4.html#jls-4.10.5). The original projection algorithm is designed to leave intersection types in place - while this is handy, as it maximizes the applicability of the type inferred for local variables declared with `var`, for the code model use this is not suitable, as we'd like to get to a denotable type in the end (jshell has a similar problem, which was addressed in a more ad-hoc way).
>
> It is generally possible to project an intersection type using only one of its bounds, e.g.
>
>
> List<A & B>
>
>
> Is projected to:
>
>
> List<? extends A>
>
>
> T...
This pull request has now been integrated.
Changeset: 6713aca0
Author: Maurizio Cimadamore <mcimadamore at openjdk.org>
URL: https://git.openjdk.org/babylon/commit/6713aca070d5cab3a97c1cc19035a13d875d8641
Stats: 839 lines in 21 files changed: 648 ins; 28 del; 163 mod
Add support for more types
Reviewed-by: psandoz
-------------
PR: https://git.openjdk.org/babylon/pull/51
More information about the babylon-dev
mailing list