diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2015-01-27 23:57:12 +0300 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2015-01-28 19:36:50 +0000 |
| commit | 69cd91a5981c49eaaa59b33196bdb5586c18d289 (patch) | |
| tree | 1fcf616422ad0317f5870c49fbff5d64c8ae932c /src/runtime/string.go | |
| parent | 4737399bd99e5221150f508de1125cc00d329f60 (diff) | |
| download | go-69cd91a5981c49eaaa59b33196bdb5586c18d289.tar.xz | |
cmd/gc: don't copy []byte during string comparison
Currently we allocate a new string during []byte->string conversion
in string comparison expressions. String allocation is unnecessary in
this case, because comparison does memorize the strings for later use.
This change uses slicebytetostringtmp to construct temp string directly
from []byte buffer and passes it to runtime.eqstring.
Change-Id: If00f1faaee2076baa6f6724d245d5b5e0f59b563
Reviewed-on: https://go-review.googlesource.com/3410
Reviewed-by: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/runtime/string.go')
| -rw-r--r-- | src/runtime/string.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/runtime/string.go b/src/runtime/string.go index 8aa0dd076d..6f7de4de1e 100644 --- a/src/runtime/string.go +++ b/src/runtime/string.go @@ -76,6 +76,7 @@ func slicebytetostringtmp(b []byte) string { // First such case is a m[string(k)] lookup where // m is a string-keyed map and k is a []byte. // Second such case is "<"+string(b)+">" concatenation where b is []byte. + // Third such case is string(b)=="foo" comparison where b is []byte. if raceenabled && len(b) > 0 { racereadrangepc(unsafe.Pointer(&b[0]), |
