-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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: adding a constant to a memory location needs 3 instructions #15054
Comments
@randall77 I don't know if it's easy or not to handle this. |
Utilizing memory-memory x86 instructions is also a topic of #14587,
although that one is for a simpler cade. However, I think the solution
should be the same.
|
This should be easier than #14587, as we don't have to deal with flags. You'd just need to make sure there are no other uses of the load. Then it would just be a simple rewrite. |
We could... generate the rules :) |
CL https://golang.org/cl/29272 mentions this issue. |
Adds the new canMergeLoad function which can be used by rules to decide whether a load can be merged into an operation. The function ensures that the merge will not reorder the load relative to memory operations (for example, stores) in such a way that the block can no longer be scheduled. This new function enables transformations such as: MOVD 0(R1), R2 ADD R2, R3 to: ADD 0(R1), R3 The two-operand form of the following instructions can now read a single memory operand: - ADD - ADDC - ADDW - MULLD - MULLW - SUB - SUBC - SUBE - SUBW - AND - ANDW - OR - ORW - XOR - XORW Improves SHA3 performance by 6-8%. Updates #15054. Change-Id: Ibcb9122126cd1a26f2c01c0dfdbb42fe5e7b5b94 Reviewed-on: https://go-review.googlesource.com/29272 Run-TryBot: Michael Munday <munday@ca.ibm.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Keith Randall <khr@golang.org>
This is fixed. |
Please answer these questions before submitting your issue. Thanks!
go version
)?go version devel +e775b8d Thu Mar 31 18:41:30 2016 +0000 linux/amd64
go env
)?linux amd64
Compiled the following function
One single instruction
Three instructions
The text was updated successfully, but these errors were encountered: