RFR: 8281266: [JVMCI] MetaUtil.toInternalName() doesn't handle hidden classes correctly [v2]
Severin Gehwolf
sgehwolf at openjdk.java.net
Tue Mar 8 09:41:03 UTC 2022
On Tue, 8 Mar 2022 08:43:41 GMT, Foivos <duke at openjdk.java.net> wrote:
>> https://github.com/openjdk/jdk/commit/7cc137105928ec109a29d9315565f7f49af3cf2b introduced hidden classes with internal names like `com/example/Foo.1234` that get changed to `com.example.Foo/1234` by `Class.getName()` which are not properly handled by `MetaUtil`'s `toInternalName` and `internalNameToJava`
>>
>> This PR fixes this along with the corresponding test that used to work on the assumption that the internal class names didn't contain the `.` character and that java class names didn't contain the `/` character except for lambdas (which are now treated as hidden classes as well), an assumption that no longer holds.
>
> Foivos has refreshed the contents of this pull request, and previous commits have been removed. The incremental views will show differences compared to the previous content of the PR. The pull request contains one new commit since the last revision:
>
> Fix handling of hidden classes in MetaUtil
>
> 7cc137105928ec109a29d9315565f7f49af3cf2b introduced hidden classes with
> internal names like com/example/Foo.1234 that get changed to
> com.example.Foo/1234 by Class.getName() which are not properly handled
> by MetaUtil's toInternalName and internalNameToJava
Still good.
-------------
Marked as reviewed by sgehwolf (Reviewer).
PR: https://git.openjdk.java.net/jdk/pull/7346
More information about the hotspot-compiler-dev
mailing list