33da4ce457
For 32 bit equality (Eq32), rather than always zero extending to 64 bits, sign extend for signed types and zero extend for unsigned types. This makes no difference to the equality test (via SUB), however it increases the likelihood of avoiding unnecessary sign or zero extension simply for the purpose of equality testing. While here, replace the Neq* rules with (Not (Eq*)) - this makes no difference to the generated code (as the intermediates get expanded and eliminated), however it means that changes to the equality rules also reflect in the inequality rules. As an example, the following: lw t0,956(t0) slli t0,t0,0x20 srli t0,t0,0x20 li t1,1 bne t1,t0,278fc Becomes: lw t0,1024(t0) li t1,1 bne t1,t0,278b0 Removes almost 1000 instructions from the Go binary on riscv64. Change-Id: Iac60635f494f6db87faa47752bd1cc16e6b5967f Reviewed-on: https://go-review.googlesource.com/c/go/+/516595 Run-TryBot: Joel Sing <joel@sing.id.au> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: M Zhuo <mzh@golangcn.org> Reviewed-by: Michael Knyszek <mknyszek@google.com> |
||
---|---|---|
.github | ||
api | ||
doc | ||
lib/time | ||
misc | ||
src | ||
test | ||
.gitattributes | ||
.gitignore | ||
codereview.cfg | ||
CONTRIBUTING.md | ||
go.env | ||
LICENSE | ||
PATENTS | ||
README.md | ||
SECURITY.md |
The Go Programming Language
Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.
Gopher image by Renee French, licensed under Creative Commons 4.0 Attributions license.
Our canonical Git repository is located at https://go.googlesource.com/go. There is a mirror of the repository at https://github.com/golang/go.
Unless otherwise noted, the Go source files are distributed under the BSD-style license found in the LICENSE file.
Download and Install
Binary Distributions
Official binary distributions are available at https://go.dev/dl/.
After downloading a binary release, visit https://go.dev/doc/install for installation instructions.
Install From Source
If a binary distribution is not available for your combination of operating system and architecture, visit https://go.dev/doc/install/source for source installation instructions.
Contributing
Go is the work of thousands of contributors. We appreciate your help!
To contribute, please read the contribution guidelines at https://go.dev/doc/contribute.
Note that the Go project uses the issue tracker for bug reports and proposals only. See https://go.dev/wiki/Questions for a list of places to ask questions about the Go language.