-
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
Implement constant dynamic support in Power codegen #2808
Implement constant dynamic support in Power codegen #2808
Conversation
#else | ||
rlwinm r3, r3, 0, 0xfffffffe ! <clinit> clear up the last bit, which must be zero | ||
#endif | ||
cmpi cr0, 0, r17, in_clinit ! <clinit> is being executed |
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.
Indentations look quite odd with the tabs.
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.
Looks like all this weird indentation crept in from code that was copied from _interpreterUnresolvedStringGlue
. I'll go ahead and clean it up a little bit...
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.
I've replaced all the tabs with spaces for now. I'm still not a big fan of the indentation, but I'm trying to keep it consistent with what's used in the other PicBuilder helpers.
c9f14ae
to
0b6fc82
Compare
This commit adds the necessary code to the Power code generator to support resolving unresolved constant dynamic constant pool entries in JITted code. Signed-off-by: Ben Thomas <ben@benthomas.ca>
0b6fc82
to
bb012f5
Compare
Jenkins line endings check |
@gita-omr since eclipse-omr/omr#2946 has been merged, this should be ready to merge now |
This commit adds the necessary code to the Power code generator to
support resolving unresolved constant dynamic constant pool entries in
JITted code.
Signed-off-by: Ben Thomas ben@benthomas.ca
This PR depends on eclipse-omr/omr#2946.