-
Notifications
You must be signed in to change notification settings - Fork 397
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
AArch64: Implement FP type conversion evaluators #3325
Conversation
Updated files resolving merge conflicts. |
75a641b
to
3ee63b4
Compare
Hmm. Somehow a review was requested (presumably by me) on this one from many people. I'm not sure how that happened. As always, please feel free to comment if you wish, but I didn't intend to solicit any reviews. |
Resolved merge conflicts with #3378. |
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.
Minor typo to fix up throughout. Otherwise, looks good to me.
@@ -257,54 +257,71 @@ OMR::ARM64::TreeEvaluator::dnegEvaluator(TR::Node *node, TR::CodeGenerator *cg) | |||
return OMR::ARM64::TreeEvaluator::unImpOpEvaluator(node, cg); | |||
} | |||
|
|||
static TR::Register * | |||
intFpTypeCoversionHelper(TR::Node *node, TR::InstOpCode::Mnemonic op, TR::CodeGenerator *cg) |
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.
Could you fix the spelling of "Conversion" please, and then fix up the calls throughout?
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.
Corrected spelling.
This commit implements type conversion evaluators of floating-point types, such as i2f, d2l, and f2d. Signed-off-by: knn-k <konno@jp.ibm.com>
Updated files reflecting the review comment. |
@genie-omr build aarch64 This is an AArch64-specific change. A full genie build is not required. |
This commit implements type conversion evaluators of floating-point
types, such as i2f, d2l, and f2d.
Signed-off-by: knn-k konno@jp.ibm.com