RFR: 8191460: crash in Annotate with duplicate declaration and annotation processing enabled [v7]
Adam Sotona
asotona at openjdk.org
Tue Nov 14 14:19:31 UTC 2023
On Mon, 13 Nov 2023 17:14:14 GMT, Vicente Romero <vromero at openjdk.org> wrote:
>> This PR is removing an assertion in `com.sun.tools.javac.comp.Annotate`. The assertion is being thrown for a special, corner-ish, case. Basically having:
>>
>> package p;
>> @Deprecated class T {} // see that class T is annotated
>>
>> and:
>>
>> package p;
>> class Y {
>> @interface A {}
>> @interface A {} // error: class A is already defined
>> T t;
>> }
>>
>> class `Y` has a duplicate definition of annotation `A`. Now if class `T` is compiled first as in:
>>
>> `javac -d out/ p/T.java`
>>
>> and then we do:
>> `javac -processor P -cp p:out/:. p/Y.java p/T.java`
>>
>> where P is the simplest possible annotation processor, basically doing nothing. IMO what is happening here is that during the second compilation, once the compiler find type `T` in class `Y`, given that T.class is in the classpath, it is loaded and the `@Deprecated` annotation is attached to symbol for type `T`. Then when the source for `T.java` is being compiled and its annotations are being processed we get to the code where the assertion is. Here the symbol for `T` is not a package but its metadata is not empty and so the assertion is thrown. The fix here is just removing the assertion as as shown by this example it is not an invariant.
>>
>> TIA
>
> Vicente Romero has updated the pull request with a new target base due to a merge or a rebase. The pull request now contains 10 commits:
>
> - Merge branch 'master' into JDK-8191460
> - Merge pull request #3 from lahodaj/JDK-8191460
>
> Fixing build.
> - Fixing build.
> - Merge branch 'master' into JDK-8191460
> - Merge branch 'master' into JDK-8191460
> - Merge pull request #2 from lahodaj/JDK-8191460
>
> Attempting to improve the fix.
> - Attempting to improve the fix.
> - merge with remote branch
> - 8191460: crash in Annotate with duplicate declaration and annotation processing enabled
> - 8191460: crash in Annotate with duplicate declaration and annotation processing enabled
Looks good.
-------------
Marked as reviewed by asotona (Reviewer).
PR Review: https://git.openjdk.org/jdk/pull/16443#pullrequestreview-1729838692
More information about the compiler-dev
mailing list