]> Cypherpunks repositories - gostls13.git/commit
cmd/link: Preallocate Lsym map
authorShahar Kohanim <skohanim@gmail.com>
Mon, 29 Feb 2016 10:19:26 +0000 (12:19 +0200)
committerDavid Crawshaw <crawshaw@golang.org>
Mon, 29 Feb 2016 17:30:13 +0000 (17:30 +0000)
commite0b04fa508d6117f217a25e1868740a6a39d5605
treec0166aed0013bd75c66ca46afbd0ad98cffcf680
parent21f2cb60eaf6636f66062585cce575af3e11edb5
cmd/link: Preallocate Lsym map

Preallocate ~2MB for Lsym map (size calculation from http://play.golang.org/p/9L7F5naXRr).
Reduces best of 10 link time of cmd/go by ~4%.
On cmd/go max resident size unaffected, on println hello world max resident size grows by 4mb from 18mb->22mb. Performance improves in both cases.

tip:  real  0m1.283s user  0m1.502s sys 0m0.144s
this: real  0m1.341s user  0m1.598s sys 0m0.136s

Change-Id: I4a95e45fe552f1f64f53e868421b9f45a34f8b96
Reviewed-on: https://go-review.googlesource.com/19979
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: David Crawshaw <crawshaw@golang.org>
src/cmd/link/internal/ld/sym.go