-
Notifications
You must be signed in to change notification settings - Fork 738
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
Clean up deprecated recognized method inlining #2248
Conversation
286838b
to
00cbb56
Compare
I'm having trouble following the logic for the currentTimeMillis removal - where is the point that makes it clearly dead? |
The code is not used under any scenarios and will crash JVM if it kicks in.
|
@0dvictor sorry I didn't get back to this one - can you rebase so I can run the build? |
Rebased. |
Jenkins test sanity |
Jenkins test sanity |
Following 4 recognized methods have been long deprecated: 1. com_ibm_jit_JITHelpers_hashCodeImpl 2. java_lang_Object_hashCodeImpl 3. java_lang_System_currentTimeMillis [X86 only] 4. java_lang_Integer_rotateLeft [X86 only] Cleaning-up code related them. Signed-off-by: Victor Ding <dvictor@ca.ibm.com>
There were Travis CI failures caused by out-of-dated OMR; hence I've rebased and re-launched Travis CI. All checks have passed now, could you re-launch sanity tests? @andrewcraik |
Jenkins test sanity |
Windows failures are due to #2129 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
based on victor's comment and a review of the code this does look to be genuinely dead.
Following 4 recognized methods have been long deprecated:
Cleaning-up code related them.
Signed-off-by: Victor Ding dvictor@ca.ibm.com