[code-reflection] RFR: Add support for more types

Maurizio Cimadamore mcimadamore at openjdk.org
Tue Apr 23 13:12:52 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...

src/java.base/share/classes/java/lang/reflect/code/type/TypeVarRef.java line 35:

> 33: public final class TypeVarRef implements JavaType {
> 34: 
> 35:     // @@@: how do we encode tvar owner?

As the comment indicates, ideally a type-variable reference should also points to its owner (a type or a method). I'm not 100% sure how to encode that in the `TypeElement` structure (see also the toplevel PR summary).

src/jdk.compiler/share/classes/com/sun/tools/javac/comp/ReflectMethods.java line 494:

> 492: 
> 493:             com.sun.tools.javac.util.List<Type> nil = com.sun.tools.javac.util.List.nil();
> 494:             MethodType mtype = new MethodType(nil, syms.quotedType, nil, syms.methodClass);

This code seemed to try to parameterized the `Quoted` type, which is no (longer) a generic type. This was causing a crash in the logic for computing the set of captured variables of a given type (`types::captures`).

This change is what caused the fixes in the two reflect/code tests, as the tests were also expecting a parameterized Quoted type.

-------------

PR Review Comment: https://git.openjdk.org/babylon/pull/51#discussion_r1565469114
PR Review Comment: https://git.openjdk.org/babylon/pull/51#discussion_r1565467995


More information about the babylon-dev mailing list