cmd/compile: update default PGO profile

Since last time the default.pgo profile is collected, there has
been a lot of development in the compiler. It's time to refresh
the compiler's PGO profile.

Profile collected by running the cmd/compile/profile.sh script on
the gotip-linux-amd64_c2s16-perf_vs_release gomote.

There is a slight improvement on benchmark results. On Linux/AMD64,

         │  nopgo.txt  │              old.txt               │              new.txt               │
         │   sec/op    │   sec/op     vs base               │   sec/op     vs base               │
Template   142.5m ± 1%   140.8m ± 1%  -1.23% (p=0.017 n=20)   141.3m ± 1%  -0.87% (p=0.011 n=20)
Unicode    122.7m ± 1%   116.6m ± 1%  -4.95% (p=0.000 n=20)   114.9m ± 1%  -6.28% (p=0.000 n=20)
GoTypes    889.1m ± 0%   872.3m ± 1%  -1.89% (p=0.000 n=20)   864.9m ± 1%  -2.73% (p=0.000 n=20)
Compiler   161.0m ± 1%   151.9m ± 1%  -5.65% (p=0.000 n=20)   151.5m ± 1%  -5.90% (p=0.000 n=20)
SSA         8.626 ± 0%    8.337 ± 0%  -3.34% (p=0.000 n=20)    8.294 ± 0%  -3.85% (p=0.000 n=20)
Flate      148.1m ± 2%   145.3m ± 1%  -1.91% (p=0.005 n=20)   145.8m ± 2%  -1.56% (p=0.026 n=20)
GoParser   160.7m ± 2%   160.0m ± 1%       ~ (p=0.174 n=20)   158.7m ± 1%  -1.23% (p=0.001 n=20)
Reflect    389.9m ± 1%   383.9m ± 1%  -1.55% (p=0.000 n=20)   382.2m ± 1%  -1.97% (p=0.000 n=20)
Tar        159.6m ± 1%   157.2m ± 1%  -1.48% (p=0.000 n=20)   157.7m ± 1%  -1.18% (p=0.015 n=20)
XML        186.2m ± 2%   183.4m ± 2%       ~ (p=0.056 n=20)   182.4m ± 1%  -2.03% (p=0.001 n=20)
geomean    300.2m        293.0m       -2.41%                  291.9m       -2.78%

For #60234.

Change-Id: I4101115f9c8005c3180db7a1600c0bc81bef7d5c
Reviewed-on: https://go-review.googlesource.com/c/go/+/792120
LUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: David Chase <drchase@google.com>
SLSA-Policy-Verified: SLSA Policy Verification Service <devtools-gerritcodereview-exitgate@google.com>
1 file changed
tree: 69b3c3dfc77c5b6202591831e7a3d899b8612efc
  1. .github/
  2. api/
  3. doc/
  4. lib/
  5. misc/
  6. src/
  7. test/
  8. .gitattributes
  9. .gitignore
  10. codereview.cfg
  11. CONTRIBUTING.md
  12. go.env
  13. LICENSE
  14. PATENTS
  15. README.md
  16. SECURITY.md
README.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 Gopher image by Renee French, licensed under Creative Commons 4.0 Attribution 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.