-
Notifications
You must be signed in to change notification settings - Fork 729
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove some methods from recognized methods #20520
Conversation
Jenkins test sanity amac jdk17 depends eclipse-omr/omr#7527 |
Note that these enumerated constants are used in
I don't think these methods exist in any of those classes. I think this change looks good, but I'm just trying to look into the history to understand when these methods disappeared. |
|
Removing I wonder if someone working on Z can look at |
IBM SDK Java 8 has the class |
aa25505
to
dd01061
Compare
I updated the commit to additionally remove |
Jenkins test sanity zlinux jdk17 depends eclipse-omr/omr#7527 |
I opened separate pull requests for |
dd01061
to
be97564
Compare
Rebased to resolve merge conflicts. |
These methods no longer exist in the Java class library. - sun/nio/cs/ISO_8859_1$Decoder.decodeISO8859_1() - sun/nio/cs/UTF_8$Encoder.encodeUTF_8() - sun/nio/cs/ext/SBCS_Encoder.encodeSBCS() - sun/nio/cs/ext/SBCS_Decoder.decodeSBCS() Signed-off-by: KONNO Kazuhiro <[email protected]>
be97564
to
e8d610b
Compare
Jenkins test sanity xlinux,zlinux jdk17 depends eclipse-omr/omr#7527 Rebased to resolve merge conflicts. |
Hi @knn-k , I am looking at the class files that is shipped with the IBM SDK 8 on z/OS to go through the methods that you are removing in this PR. Commenting about following 3 recognized methods referencing from changes in
These changes in the JIT recognize methods provides vital performance related to code pages conversion and is important on z/OS that we should not remove. |
@r30shah Thank you for checking IBM SDK 8 for z/OS. I am cancelling this PR. I checked IBM SDK 8 for other platforms as well as Semeru Runtimes 8-21. I didn't know IBM SDK 8 for z/OS had its own classes and methods. |
Maybe it would be worth adding comments for these methods to explain where they are used. |
I opened PR #20864 for adding comments to the encoding/decoding methods. |
These methods no longer exist in the Java class library.