-
Notifications
You must be signed in to change notification settings - Fork 728
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
Add Deprecated warning for using Xlp, and Xlp<size> using Java 11+ #9187
base: master
Are you sure you want to change the base?
Conversation
FYI @pshipton |
Adding warning for any users using -Xlp, and -Xlp<size> using Java 11+. Per Docs, these options are slated to be deprecated in all versions above Java 8. Since the functionality needs to be supported for Java 8, this should be a warning until support for Java 8 officially ends. Signed-off-by: AlenBadel <[email protected]>
What is the equivalent option to -Xlp? Not sure if there are still tests which use these options. If there are, the tests may start failing due to the warning. |
Well the doc mentions to use
I'll double check sanity on my side to verify this. |
Seems we should get |
We also have extended.functional testing that may use it. |
-Xlp:codecache:pagesize=, and -Xlp:objectheap:pagesize= are the same? They are talking about the JIT codecache and the heap - I didn't think they were the same and could be adjusted independently... FYI @vijaysun-omr |
The parsing code translates NOTE: On Z/OS the equivalent assortment would be
The only other difference is that on Z/OS. Where |
This is not accurate statement. For some platforms (ZOS for instance) |
@joransiu fyi |
Could you elaborate? |
Sorry, don't mind please. I thought about omitted parts of |
functional sanity/extended system sanity/extended seems to pass on my end with the warning. This is simply a warning that echos what has already been published in our docs. I don't think we have any strong justification to wait on merging this given our tests haven't broken. |
It doesn't seem reasonable to print a warning for a deprecated option when the replacement option |
Can one of the admins verify this patch? |
Adding warning for any users using
-Xlp
, and-Xlp<size>
using Java 11+.Per Docs, these options are slated to be deprecated in all versions above Java 8. Since the functionality needs to be supported for Java 8, this should be a warning until support for Java 8 officially ends.
See: https://www.eclipse.org/openj9/docs/xlp/
Signed-off-by: AlenBadel [email protected]