-
Notifications
You must be signed in to change notification settings - Fork 396
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 TR::vnolz and TR::vnotz evaluators in z/codegen #7137
Conversation
Tagging @r30shah for review. |
The failure in |
@@ -2337,6 +2325,76 @@ OMR::Z::TreeEvaluator::lbitpermuteEvaluator(TR::Node *node, TR::CodeGenerator *c | |||
return TR::TreeEvaluator::bitpermuteEvaluator(node, cg); | |||
} | |||
|
|||
TR::Register* |
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.
Can we use inlineVectorUnaryOp
? It does most of the work this two function does.
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, can you squash the commits?
Jenkins build zlinux,zos |
@hzongaro given Daryl is away, can I request you to review and merge this change ? |
This PR introduces evaluators for the
TR::vnolz
andTR::vnotz
IL in the z/codegen. Support is only enabled for architectures with vector instruction support.