]> Cypherpunks repositories - gostls13.git/commit
runtime: change default stack segment size to 8 kB
authorRuss Cox <rsc@golang.org>
Thu, 3 Oct 2013 13:19:10 +0000 (09:19 -0400)
committerRuss Cox <rsc@golang.org>
Thu, 3 Oct 2013 13:19:10 +0000 (09:19 -0400)
commit408238e20bb794d91199c892c68a0989fc924d65
tree4dba4595fae1a79182eeefb29a0b78b201940434
parentdc8d9031550e4adc5c83dadd48d9e1e8d0f7ea6d
runtime: change default stack segment size to 8 kB

Changing from 4 kB to 8 kB brings significant improvement
on a variety of the Go 1 benchmarks, on both amd64
and 386 systems.

Significant runtime reductions:

          amd64  386
GoParse    -14%  -1%
GobDecode  -12% -20%
GobEncode  -64%  -1%
JSONDecode  -9%  -4%
JSONEncode -15%  -5%
Template   -17% -14%

In the longer term, khr's new stacks will avoid needing to
make this decision at all, but for Go 1.2 this is a reasonable
stopgap that makes performance significantly better.

Demand paging should mean that if the second 4 kB is not
used, it will not be brought into memory, so the change
should not adversely affect resident set size.
The same argument could justify bumping as high as 64 kB
on 64-bit machines, but there are diminishing returns
after 8 kB, and using 8 kB limits the possible unintended
memory overheads we are not aware of.

Benchmark graphs at
http://swtch.com/~rsc/gostackamd64.html
http://swtch.com/~rsc/gostack386.html

Full data at
http://swtch.com/~rsc/gostack.zip

R=golang-dev, khr, dave, bradfitz, dvyukov
CC=golang-dev
https://golang.org/cl/14317043
src/pkg/runtime/stack.h