1. 22 May, 2013 4 commits
  2. 21 May, 2013 11 commits
  3. 20 May, 2013 14 commits
  4. 19 May, 2013 2 commits
  5. 18 May, 2013 5 commits
  6. 17 May, 2013 4 commits
    • Brad Fitzpatrick's avatar
      bufio: make Reader buffer transient · b25a53ac
      Brad Fitzpatrick authored
      Share garbage between different bufio Readers. When a Reader
      has zero buffered data, put its buffer into a pool.
      
      This acknowledges that most bufio.Readers eventually get
      read to completion, and their buffers are then no longer
      needed.
      
      benchmark               old ns/op    new ns/op    delta
      BenchmarkReaderEmpty         2993         1058  -64.65%
      
      benchmark              old allocs   new allocs    delta
      BenchmarkReaderEmpty            3            2  -33.33%
      
      benchmark               old bytes    new bytes    delta
      BenchmarkReaderEmpty         4278          133  -96.89%
      
      Update #5100
      
      R=r
      CC=adg, dvyukov, gobot, golang-dev, rogpeppe
      https://golang.org/cl/8819049
      b25a53ac
    • Rob Pike's avatar
      cmd/vet: delete; it now lives in the go.tools subrepo · 249842c8
      Rob Pike authored
      R=golang-dev, dsymonds, rsc, iant, dave
      CC=golang-dev
      https://golang.org/cl/9496043
      249842c8
    • Keith Randall's avatar
      runtime: faster x86 memmove (a.k.a. built-in copy()) · 60214492
      Keith Randall authored
      REP instructions have a high startup cost, so we handle small
      sizes with some straightline code.  The REP MOVSx instructions
      are really fast for large sizes.  The cutover is approximately
      1K.  We implement up to 128/256 because that is the maximum
      SSE register load (loading all data into registers before any
      stores lets us ignore copy direction).
      
      (on a Sandy Bridge E5-1650 @ 3.20GHz)
      benchmark               old ns/op    new ns/op    delta
      BenchmarkMemmove0               3            3   +0.86%
      BenchmarkMemmove1               5            5   +5.40%
      BenchmarkMemmove2              18            8  -56.84%
      BenchmarkMemmove3              18            7  -58.45%
      BenchmarkMemmove4              36            7  -78.63%
      BenchmarkMemmove5              36            8  -77.91%
      BenchmarkMemmove6              36            8  -77.76%
      BenchmarkMemmove7              36            8  -77.82%
      BenchmarkMemmove8              18            8  -56.33%
      BenchmarkMemmove9              18            7  -58.34%
      BenchmarkMemmove10             18            7  -58.34%
      BenchmarkMemmove11             18            7  -58.45%
      BenchmarkMemmove12             36            7  -78.51%
      BenchmarkMemmove13             36            7  -78.48%
      BenchmarkMemmove14             36            7  -78.56%
      BenchmarkMemmove15             36            7  -78.56%
      BenchmarkMemmove16             18            7  -58.24%
      BenchmarkMemmove32             18            8  -54.33%
      BenchmarkMemmove64             18            8  -53.37%
      BenchmarkMemmove128            20            9  -55.93%
      BenchmarkMemmove256            25           11  -55.16%
      BenchmarkMemmove512            33           33   -1.19%
      BenchmarkMemmove1024           43           44   +2.06%
      BenchmarkMemmove2048           61           61   +0.16%
      BenchmarkMemmove4096           95           95   +0.00%
      
      R=golang-dev, bradfitz, remyoudompheng, khr, iant, dominik.honnef
      CC=golang-dev
      https://golang.org/cl/9038048
      60214492
    • Shenghou Ma's avatar
      misc/cgo/test: deflake TestParallelSleep once more · af1dd56d
      Shenghou Ma authored
      Fixes #5480.
      
      R=golang-dev, iant
      CC=golang-dev
      https://golang.org/cl/9475043
      af1dd56d