Skip to content
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

cmd/compile: add rotates to PPC64.rules #20030

Closed
laboger opened this issue Apr 18, 2017 · 0 comments
Closed

cmd/compile: add rotates to PPC64.rules #20030

laboger opened this issue Apr 18, 2017 · 0 comments

Comments

@laboger
Copy link
Contributor

laboger commented Apr 18, 2017

Please answer these questions before submitting your issue. Thanks!

What version of Go are you using (go version)?

go tip

What operating system and processor architecture are you using (go env)?

Ubuntu 16.04 ppc64le

I have an update to PPC64.rules to improve performance of rotate opportunities, such as are found in sha3 and other crypto algorithms. This is done for the case where there is an operator (ADD, OR, XOR) between two shifts combine to be 32 or 64 bits, allowing a rotate to be done instead. An example:

t1 := (v1>>17 | v1<<(32-17))

@golang golang locked and limited conversation to collaborators Apr 20, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants