-
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
OpenJ9 JIT changes to support OMR FrontEnd base class refactoring #20571
Conversation
Jenkins test sanity.functional,sanity.openjdk xlinux,plinux,zlinux,alinux jdk21 depends eclipse-omr/omr#7540 This was tested internally across platform, but just doing a quick sniff test here in the PR prior to review. |
Z OpenJDK failure appears to be #17955. |
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.
Changes look fine given the OMR changes it depends on.
Signed-off-by: Daryl Maier <[email protected]>
Jenkins test sanity.functional xlinux,plinux,zlinux,alinux jdk21 depends eclipse-omr/omr#7540 |
@dsouzai : The subset of sanity acceptance testing passed, as well as an internal build on SDK8 that included 32-bit testing. Could you merge the two PRs if you are satisfied please? |
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! Thanks @0xdaryl !
#include "codegen/CodeGenerator.hpp" | ||
#if defined(J9VM_OPT_JITSERVER) | ||
#include "control/CompilationRuntime.hpp" | ||
#include "control/CompilationThread.hpp" | ||
#include "runtime/JITClientSession.hpp" | ||
#endif /* defined(J9VM_OPT_JITSERVER) */ | ||
|
||
// This is a workaround to avoid J9_PROJECT_SPECIFIC macros in x/env/OMRCPU.cpp | ||
// Without this definition, we get an undefined symbol of JITConfig::instance() at runtime | ||
TR::JitConfig * TR::JitConfig::instance() { return NULL; } |
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.
This one always annoyed me. Glad to see we're finally getting rid of it :) .
Breaking dependence on eclipse-omr/omr#7540 due to file changes.