1. 23 Mar, 2016 8 commits
    • Dave Cheney's avatar
      cmd/compile/internal/ssa: avoid string conversion in zcse · e6beec1f
      Dave Cheney authored
      Some ssa.Type implementations fell through to gc.Tconv which generated
      garbage to produce a string form of the Type.
      
      name      old time/op    new time/op    delta
      Template     405ms ± 7%     401ms ± 6%    ~     (p=0.478 n=20+20)
      GoTypes      1.32s ± 1%     1.30s ± 2%  -1.27%  (p=0.000 n=19+20)
      Compiler     6.07s ± 2%     6.03s ± 2%    ~     (p=0.121 n=20+20)
      
      name      old alloc/op   new alloc/op   delta
      Template    63.9MB ± 0%    63.7MB ± 0%  -0.21%  (p=0.000 n=19+20)
      GoTypes      220MB ± 0%     219MB ± 0%  -0.21%  (p=0.000 n=20+20)
      Compiler     966MB ± 0%     965MB ± 0%  -0.11%  (p=0.000 n=20+20)
      
      name      old allocs/op  new allocs/op  delta
      Template      708k ± 0%      701k ± 0%  -0.99%  (p=0.000 n=20+20)
      GoTypes      2.20M ± 0%     2.17M ± 0%  -1.43%  (p=0.000 n=17+20)
      Compiler     9.45M ± 0%     9.36M ± 0%  -0.91%  (p=0.000 n=20+20)
      
      Change-Id: I5fcc30e0f76a823d1c301d4980b583d716a75ce3
      Reviewed-on: https://go-review.googlesource.com/20844Reviewed-by: default avatarKeith Randall <khr@golang.org>
      e6beec1f
    • Dave Cheney's avatar
      cmd/compile/internal/gc: remove redundant Nod(OXXX, ...) pattern · a4be24cb
      Dave Cheney authored
      The pattern
      
          n := Nod(OXXX, nil, nil)
          Nodconst(n, ...)
      
      was a leftover from the C days where n must be heap allocated.
      
      No change in benchmarks, none expected as n escapes anyway.
      
      name      old time/op    new time/op    delta
      Template     391ms ± 6%     388ms ± 5%    ~     (p=0.659 n=20+20)
      GoTypes      1.27s ± 1%     1.27s ± 2%    ~     (p=0.828 n=18+20)
      Compiler     6.16s ± 2%     6.15s ± 1%    ~     (p=0.947 n=20+20)
      
      name      old alloc/op   new alloc/op   delta
      Template    63.7MB ± 0%    63.7MB ± 0%    ~     (p=0.414 n=20+20)
      GoTypes      219MB ± 0%     219MB ± 0%    ~     (p=0.904 n=20+20)
      Compiler     980MB ± 0%     980MB ± 0%  +0.00%  (p=0.007 n=20+19)
      
      name      old allocs/op  new allocs/op  delta
      Template      586k ± 0%      586k ± 0%    ~     (p=0.564 n=19+20)
      GoTypes      1.80M ± 0%     1.80M ± 0%    ~     (p=0.718 n=20+20)
      Compiler     7.74M ± 0%     7.74M ± 0%    ~     (p=0.358 n=20+20)
      
      The reuse of nc in multiple overlapping scopes in walk.go is the worst.
      
      Change-Id: I4ed6a63f7ffbfff68124ad609f6e3a68d95cbbba
      Reviewed-on: https://go-review.googlesource.com/21015Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
      Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      a4be24cb
    • Aliaksandr Valialkin's avatar
      cmd/vet: check lock copy in function calls and return statements · 1374515a
      Aliaksandr Valialkin authored
      Fixes #14529
      
      Change-Id: I6ed059d279ba0fe12d76416859659f28d61781d2
      Reviewed-on: https://go-review.googlesource.com/20832
      Run-TryBot: Rob Pike <r@golang.org>
      Reviewed-by: default avatarRob Pike <r@golang.org>
      1374515a
    • Martin Möhrmann's avatar
      fmt: cleanup and optimize doPrintf for simple formats · 49da9312
      Martin Möhrmann authored
      Make a fast path for format strings that do not use
      precision or width specifications or argument indices.
      
      Only check and enforce the restriction to not pad left with zeros
      in code paths that change either f.minus or f.zero.
      
      Consolidate the if chains at the end of the main doPrintf loop
      into a switch statement. Move error printing into extra
      functions to reduce size of this switch statement.
      
      name                             old time/op  new time/op  delta
      SprintfPadding-2                  234ns ± 1%   233ns ± 1%   -0.54%  (p=0.010 n=19+19)
      SprintfEmpty-2                   37.0ns ± 3%  39.1ns ±14%     ~     (p=0.501 n=17+20)
      SprintfString-2                   112ns ± 1%   101ns ± 1%   -9.21%  (p=0.000 n=19+20)
      SprintfTruncateString-2           139ns ± 1%   139ns ± 0%   +0.57%  (p=0.000 n=19+19)
      SprintfQuoteString-2              402ns ± 0%   392ns ± 0%   -2.35%  (p=0.000 n=19+20)
      SprintfInt-2                      114ns ± 1%   102ns ± 2%  -10.92%  (p=0.000 n=20+20)
      SprintfIntInt-2                   177ns ± 2%   155ns ± 2%  -12.67%  (p=0.000 n=18+18)
      SprintfPrefixedInt-2              260ns ± 3%   249ns ± 3%   -4.55%  (p=0.000 n=20+20)
      SprintfFloat-2                    190ns ± 1%   178ns ± 2%   -6.54%  (p=0.000 n=20+20)
      SprintfComplex-2                  533ns ± 1%   517ns ± 3%   -2.95%  (p=0.000 n=20+20)
      SprintfBoolean-2                  102ns ± 1%    93ns ± 2%   -9.30%  (p=0.000 n=20+20)
      SprintfHexString-2                176ns ± 0%   168ns ± 2%   -4.49%  (p=0.000 n=16+19)
      SprintfHexBytes-2                 181ns ± 1%   174ns ± 2%   -4.27%  (p=0.000 n=20+20)
      SprintfBytes-2                    326ns ± 1%   311ns ± 1%   -4.51%  (p=0.000 n=20+20)
      ManyArgs-2                        540ns ± 2%   497ns ± 1%   -8.08%  (p=0.000 n=18+16)
      FprintInt-2                       150ns ± 0%   149ns ± 0%   -0.33%  (p=0.000 n=20+18)
      FprintfBytes-2                    185ns ± 0%   165ns ± 0%  -10.98%  (p=0.000 n=20+18)
      FprintIntNoAlloc-2                113ns ± 0%   112ns ± 0%   -0.88%  (p=0.000 n=20+20)
      
      Change-Id: I9ada8faa1f46aa67ea116a94ab3f4ad3e405c8fe
      Reviewed-on: https://go-review.googlesource.com/20919
      Run-TryBot: Rob Pike <r@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarRob Pike <r@golang.org>
      49da9312
    • Tamir Duberstein's avatar
      database/sql/driver: remove string exclusion · 7162c4d0
      Tamir Duberstein authored
      The exclusion of string from IsScanValue prevents driver authors from
      writing their drivers in such a way that would allow users to
      distinguish between strings and byte arrays returned from a database.
      Such drivers are possible today, but require their authors to deviate
      from the guidance provided by the standard library.
      
      This exclusion has been in place since the birth of this package in
      https://github.com/golang/go/commit/357f2cb1a385f4d1418e48856f9abe0cce,
      but the fakedb implementation shipped in the same commit violates the
      exclusion!
      
      Strictly speaking this is a breaking change, but it increases the set
      of permissible Scan types, and should not cause breakage in practice.
      
      No test changes are necessary because fakedb already exercises this.
      
      Fixes #6497.
      
      Change-Id: I69dbd3a59d90464bcae8c852d7ec6c97bfd120f8
      Reviewed-on: https://go-review.googlesource.com/19439
      Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
      7162c4d0
    • Ian Lance Taylor's avatar
      misc/cgo/testcarchive: rewrite test from bash to Go · bac0005e
      Ian Lance Taylor authored
      This is to support https://golang.org/cl/18057, which is going to add
      Windows support to this directory.  Better to write the test in Go then
      to have both test.bash and test.bat.
      
      Update #13494.
      
      Change-Id: I4af7004416309e885049ee60b9470926282f210d
      Reviewed-on: https://go-review.googlesource.com/20892
      Run-TryBot: Ian Lance Taylor <iant@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
      bac0005e
    • Mikio Hara's avatar
      cmd/dist: disable misc/cgo/fortran test on dragonfly · bafa0275
      Mikio Hara authored
      Updates #14544.
      
      Change-Id: I24ab8e6f9ad9d290a672216fc2f50f78c3ed8812
      Reviewed-on: https://go-review.googlesource.com/21014
      Run-TryBot: Mikio Hara <mikioh.mikioh@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
      bafa0275
    • Keith Randall's avatar
      cmd/compile: MOVBload and MOVBQZXload are the same op · 68e86e6d
      Keith Randall authored
      No need to have both ops when they do the same thing.
      Just declare MOVBload to zero extend and we can get rid
      of MOVBQZXload.  Same for W and L.
      
      Kind of a followon cleanup for https://go-review.googlesource.com/c/19506/
      Should enable an easier fix for #14920
      
      Change-Id: I7cfac909a8ba387f433a6ae75c050740ebb34d42
      Reviewed-on: https://go-review.googlesource.com/21004
      Run-TryBot: Keith Randall <khr@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
      68e86e6d
  2. 22 Mar, 2016 18 commits
  3. 21 Mar, 2016 14 commits