1. 04 Nov, 2017 4 commits
  2. 03 Nov, 2017 24 commits
    • Russ Cox's avatar
      cmd/go: do not install dependencies during "go install" · 8f70e1f8
      Russ Cox authored
      This CL makes "go install" behave the way many users expect:
      install only the things named on the command line.
      Future builds still run as fast, thanks to the new build cache (CL 75473).
      To install dependencies as well (the old behavior), use "go install -i".
      
      Actual definitions aside, what most users know and expect of "go install"
      is that (1) it installs what you asked, and (2) it's fast, unlike "go build".
      It was fast because it installed dependencies, but installing dependencies
      confused users repeatedly (see for example #5065, #6424, #10998, #12329,
      "go build" and "go test" so that they could be "fast" too, but that only
      created new opportunities for confusion. We also had to add -installsuffix
      and then -pkgdir, to allow "fast" even when dependencies could not be
      installed in the usual place.
      
      The recent introduction of precise content-based staleness logic means that
      the go command detects the need for rebuilding packages more often than it
      used to, with the consequence that "go install" rebuilds and reinstalls
      dependencies more than it used to. This will create more new opportunities
      for confusion and will certainly lead to more issues filed like the ones
      listed above.
      
      CL 75743 introduced a build cache, separate from the install locations.
      That cache makes all operations equally incremental and fast, whether or
      not the operation is "install" or "build", and whether or not "-i" is used.
      
      Installing dependencies is no longer necessary for speed, it has confused
      users in the past, and the more accurate rebuilds mean that it will confuse
      users even more often in the future. This CL aims to end all that confusion
      by not installing dependencies by default.
      
      By analogy with "go build -i" and "go test -i", which still install
      dependencies, this CL introduces "go install -i", which installs
      dependencies in addition to the things named on the command line.
      
      Fixes #5065.
      Fixes #6424.
      Fixes #10998.
      Fixes #12329.
      Fixes #18981.
      Fixes #22469.
      
      Another step toward #4719.
      
      Change-Id: I3d7bc145c3a680e2f26416e182fa0dcf1e2a15e5
      Reviewed-on: https://go-review.googlesource.com/75850
      Run-TryBot: Russ Cox <rsc@golang.org>
      Reviewed-by: 's avatarDavid Crawshaw <crawshaw@golang.org>
      8f70e1f8
    • Russ Cox's avatar
      cmd/go: run vet automatically during go test · 0d188752
      Russ Cox authored
      This CL adds an automatic, limited "go vet" to "go test".
      If the building of a test package fails, vet is not run.
      If vet fails, the test is not run.
      The goal is that users don't notice vet as part of the "go test"
      process at all, until vet speaks up and says something important.
      This should help users find real problems in their code faster
      (vet can just point to them instead of needing to debug a
      test failure) and expands the scope of what kinds of things
      vet can help with.
      
      The "go vet" runs in parallel with the linking of the test binary,
      so for incremental builds it typically does not slow the overall
      "go test" at all: there's spare machine capacity during the link.
      
      all.bash has less spare machine capacity. This CL increases
      the time for all.bash on my laptop from 4m41s to 4m48s (+2.5%)
      
      To opt out for a given run, use "go test -vet=off".
      
      The vet checks used during "go test" are a subset of the full set,
      restricted to ones that are 100% correct and therefore acceptable
      to make mandatory. In this CL, that set is atomic, bool, buildtags,
      nilfunc, and printf. Including printf is debatable, but I want to
      include it for now and find out what needs to be scaled back.
      (It already found one real problem in package os's tests that
      previous go vet os had not turned up.)
      Now that we can rely on type information it may be that printf
      should make its function-name-based heuristic less aggressive
      and have a whitelist of known print/printf functions.
      Determining the exact set for Go 1.10 is #18085.
      
      Running vet also means that programs now have to type-check
      with both cmd/compile and go/types in order to pass "go test".
      We don't start vet until cmd/compile has built the test package,
      so normally the added go/types check doesn't find anything.
      However, there is at least one instance where go/types is more
      precise than cmd/compile: declared and not used errors involving
      variables captured into closures.
      
      This CL includes a printf fix to os/os_test.go and many declared
      and not used fixes in the race detector tests.
      
      Fixes #18084.
      
      Change-Id: I353e00b9d1f9fec540c7557db5653e7501f5e1c9
      Reviewed-on: https://go-review.googlesource.com/74356
      Run-TryBot: Russ Cox <rsc@golang.org>
      Reviewed-by: 's avatarRob Pike <r@golang.org>
      Reviewed-by: 's avatarDavid Crawshaw <crawshaw@golang.org>
      0d188752
    • Russ Cox's avatar
      cmd/go: cache successful test results · bd95f889
      Russ Cox authored
      This CL adds caching of successful test results, keyed by the
      action ID of the test binary and its command line arguments.
      
      Suppose you run:
      
      	go test -short std
      	<edit a typo in a comment in math/big/float.go>
      	go test -short std
      
      Before this CL, the second go test would re-run all the tests
      for the std packages. Now, the second go test will use the cached
      result immediately (without any compile or link steps) for any
      packages that do not transitively import math/big, and then
      it will, after compiling math/big and seeing that the .a file didn't
      change, reuse the cached test results for the remaining packages
      without any additional compile or link steps.
      
      Suppose that instead of editing a typo you made a substantive
      change to one function, but you left the others (including their
      line numbers) unchanged. Then the second go test will re-link
      any of the tests that transitively depend on math/big, but it still
      will not re-run the tests, because the link will result in the same
      test binary as the first run.
      
      The only cacheable test arguments are:
      
      	-cpu
      	-list
      	-parallel
      	-run
      	-short
      	-v
      
      Using any other test flag disables the cache for that run.
      The suggested argument to mean "turn off the cache" is -count=1
      (asking "please run this 1 time, not 0").
      
      There's an open question about re-running tests when inputs
      like environment variables and input files change. For now we
      will assume that users will bypass the test cache when they
      need to do so, using -count=1 or "go test" with no arguments.
      
      This CL documents the new cache but also documents the
      previously-undocumented distinction between "go test" with
      no arguments (now called "local directory mode") and with
      arguments (now called "package list mode"). It also cleans up
      a minor detail of package list mode buffering that used to change
      whether test binary stderr was sent to go command stderr based
      on details like exactly how many packages were listed or
      how many CPUs the host system had. Clearly the file descriptor
      receiving output should not depend on those, so package list mode
      now consistently merges all output to stdout, where before it
      mostly did that but not always.
      
      Fixes #11193.
      
      Change-Id: I120edef347b9ddd5b10e247bfd5bd768db9c2182
      Reviewed-on: https://go-review.googlesource.com/75631
      Run-TryBot: Russ Cox <rsc@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarDavid Crawshaw <crawshaw@golang.org>
      bd95f889
    • Tobias Klauser's avatar
      math/bits: add examples for right rotation · 89bcbf40
      Tobias Klauser authored
      Right rotation is achieved using negative k in RotateLeft*(x, k). Add
      examples demonstrating that functionality.
      
      Change-Id: I15dab159accd2937cb18d3fa8ca32da8501567d3
      Reviewed-on: https://go-review.googlesource.com/75371
      Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarRobert Griesemer <gri@golang.org>
      89bcbf40
    • Hugues Bruant's avatar
      cmd/compile: fix reassignment check · 483e298d
      Hugues Bruant authored
      CL 65071 enabled inlining for local closures with no captures.
      
      To determine safety of inlining a call sites, we check whether the
      variable holding the closure has any assignments after its original
      definition.
      
      Unfortunately, that check did not catch OAS2MAPR and OAS2DOTTYPE,
      leading to incorrect inlining when a variable holding a closure was
      subsequently reassigned through a type conversion or a 2-valued map
      access.
      
      There was another more subtle issue wherein reassignment check would
      always return a false positive for closure calls inside other
      closures. This was caused by the Name.Curfn field of local variables
      pointing to the OCLOSURE node instead of the corresponding ODCLFUNC,
      which resulted in reassigned walking an empty Nbody and thus never
      seeing any reassignments.
      
      This CL fixes these oversights and adds many more tests for closure
      inlining which ensure not only that inlining triggers but also the
      correctness of the resulting code.
      
      Updates #15561
      
      Change-Id: I74bdae849c4ecfa328546d6d62b512e8d54d04ce
      Reviewed-on: https://go-review.googlesource.com/75770Reviewed-by: 's avatarHugues Bruant <hugues.bruant@gmail.com>
      Reviewed-by: 's avatarMatthew Dempsky <mdempsky@google.com>
      Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      483e298d
    • griesemer's avatar
      go/types: add missing documentation to Object factory functions · d593f85e
      griesemer authored
      Fixes #22516.
      
      Change-Id: Ib6648cb224e7e85e894263ef79ea81a5850e9a19
      Reviewed-on: https://go-review.googlesource.com/75595Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      d593f85e
    • Ian Lance Taylor's avatar
      bytes: set cap of slices returned by Split and Fields and friends · a9e2479a
      Ian Lance Taylor authored
      This avoids the problem in which appending to a slice returned by
      Split can affect subsequent slices.
      
      Fixes #21149.
      
      Change-Id: Ie3df2b9ceeb9605d4625f47d49073c5f348cf0a1
      Reviewed-on: https://go-review.googlesource.com/74510Reviewed-by: 's avatarJelte Fennema <github-tech@jeltef.nl>
      Reviewed-by: 's avatarRobert Griesemer <gri@golang.org>
      a9e2479a
    • Keith Randall's avatar
      bytes: add more page boundary tests · 3043c355
      Keith Randall authored
      Make sure Index and IndexByte don't read past the queried byte slice.
      
      Hopefully will be helpful for CL 33597.
      
      Also remove the code which maps/unmaps the Go heap.
      Much safer to play with protection bits off-heap.
      
      Change-Id: I50d73e879b2d83285e1bc7c3e810efe4c245fe75
      Reviewed-on: https://go-review.googlesource.com/75890Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
      3043c355
    • Lynn Boger's avatar
      cmd/compile: add rules to improve consecutive byte loads and stores on ppc64le · bb1fd3b5
      Lynn Boger authored
      This adds new rules to recognize consecutive byte loads and
      stores and lowers them to loads and stores such as lhz, lwz, ld,
      sth, stw, std. This change only covers the little endian cases
      on little endian machines, such as is found in encoding/binary
      UintXX or PutUintXX for little endian. Big endian will be done
      later.
      
      Updates were also made to binary_test.go to allow the benchmark
      for Uint and PutUint to actually use those functions because
      the way they were written, those functions were being
      optimized out.
      
      Testcases were also added to cmd/compile/internal/gc/asm_test.go.
      
      Updates #22496
      
      The following improvement can be found in golang.org/x/crypto
      
      poly1305:
      
      Benchmark64-16              142           114           -19.72%
      Benchmark1K-16              1717          1424          -17.06%
      Benchmark64Unaligned-16     142           113           -20.42%
      Benchmark1KUnaligned-16     1721          1428          -17.02%
      
      chacha20poly1305:
      
      BenchmarkChacha20Poly1305Open_64-16     1012       885   -12.55%
      BenchmarkChacha20Poly1305Seal_64-16     971        836   -13.90%
      BenchmarkChacha20Poly1305Open_1350-16   11113      9539  -14.16%
      BenchmarkChacha20Poly1305Seal_1350-16   11013      9392  -14.72%
      BenchmarkChacha20Poly1305Open_8K-16     61074      53431 -12.51%
      BenchmarkChacha20Poly1305Seal_8K-16     61214      54806 -10.47%
      
      Other improvements of around 10% found in crypto/tls.
      
      Results after updating encoding/binary/binary_test.go:
      
      BenchmarkLittleEndianPutUint64-16     1.87      0.93      -50.27%
      BenchmarkLittleEndianPutUint32-16     1.19      0.93      -21.85%
      BenchmarkLittleEndianPutUint16-16     1.16      1.03      -11.21%
      
      Change-Id: I7bbe2fbcbd11362d58662fecd907a0c07e6ca2fb
      Reviewed-on: https://go-review.googlesource.com/74410
      Run-TryBot: Lynn Boger <laboger@linux.vnet.ibm.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarMichael Munday <mike.munday@ibm.com>
      bb1fd3b5
    • Hana (Hyang-Ah) Kim's avatar
      runtime/pprof: use new profile format for block/mutex profiles · f99d14e0
      Hana (Hyang-Ah) Kim authored
      Unlike the legacy text format that outputs the count and the number of
      cycles, the pprof tool expects contention profiles to include the count
      and the delay time measured in nanoseconds. printCountCycleProfile
      performs the conversion from cycles to nanoseconds.
      (See parseContention function in
       cmd/vendor/github.com/google/pprof/profile/legacy_profile.go)
      
      Fixes #21474
      
      Change-Id: I8e8fb6ea803822d7eaaf9ecf1df3e236ad225a7b
      Reviewed-on: https://go-review.googlesource.com/64410
      Run-TryBot: Hyang-Ah Hana Kim <hyangah@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarRuss Cox <rsc@golang.org>
      f99d14e0
    • Russ Cox's avatar
      cmd/go: make test binary builds reproducible · 14f2bfd3
      Russ Cox authored
      The name of the temporary directory containing _testmain.go
      was leaking into the binary.
      
      Found with GODEBUG=gocacheverify=1 go test std.
      
      Change-Id: I5b35f049b564f3eb65c6a791ee785d15255c7885
      Reviewed-on: https://go-review.googlesource.com/75630
      Run-TryBot: Russ Cox <rsc@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarDavid Crawshaw <crawshaw@golang.org>
      14f2bfd3
    • Russ Cox's avatar
      cmd/go: prefer $GOTMPDIR over operating system tmp dir for temp files · efb1a752
      Russ Cox authored
      We build and run executables in the work directory,
      and some users have $TMPDIR set noexec.
      
      Fixes #8451.
      
      Change-Id: I76bf2ddec84e9cb37ad9a6feb53a1a84b47aa263
      Reviewed-on: https://go-review.googlesource.com/75475
      Run-TryBot: Russ Cox <rsc@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarDavid Crawshaw <crawshaw@golang.org>
      efb1a752
    • Russ Cox's avatar
      cmd/go: do not print "go install" in errors from other commands · 2ff3e9c8
      Russ Cox authored
      Fixes #20251.
      
      Change-Id: I312a9534248668c8b3b4cf979591ed1a49e509e1
      Reviewed-on: https://go-review.googlesource.com/75474
      Run-TryBot: Russ Cox <rsc@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarDavid Crawshaw <crawshaw@golang.org>
      2ff3e9c8
    • David du Colombier's avatar
      cmd/vendor/github.com/google/pprof: refresh from upstream · f2503e61
      David du Colombier authored
      Updating to commit 79c4198ef7bd1069f8f56501fc05f0f1d2c33d8a
      from github.com/google/pprof
      
      Fixes #22561.
      
      Change-Id: Ib92fd443ccc067aef7214e59f594db7f2521535b
      Reviewed-on: https://go-review.googlesource.com/75870
      Run-TryBot: David du Colombier <0intro@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      f2503e61
    • Russ Cox's avatar
      cmd/go: cache built packages · de4b6ebf
      Russ Cox authored
      This CL adds caching of built package files in $GOCACHE, so that
      a second build with a particular configuration will be able to reuse
      the work done in the first build of that configuration, even if the
      first build was only "go build" and not "go install", or even if there
      was an intervening "go install" that wiped out the installed copy of
      the first build.
      
      The benchjuju benchmark runs go build on a specific revision of jujud 10 times.
      
      Before this CL:
      
      	102.72u 15.29s 21.98r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	105.99u 15.55s 22.71r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	106.49u 15.70s 22.82r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	107.09u 15.72s 22.94r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	108.19u 15.85s 22.78r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	108.92u 16.00s 23.02r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	109.25u 15.82s 23.05r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	109.57u 15.96s 23.11r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	109.86u 15.97s 23.17r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	110.50u 16.05s 23.37r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      
      After this CL:
      
      	113.66u 17.00s 24.17r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	3.85u 0.68s 3.49r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	3.98u 0.72s 3.63r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	4.07u 0.72s 3.57r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	3.98u 0.70s 3.43r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	4.58u 0.70s 3.58r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	3.90u 0.70s 3.46r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	3.85u 0.71s 3.52r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	3.70u 0.69s 3.64r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      	3.79u 0.68s 3.41r 	 go build -o /tmp/jujud github.com/juju/juju/cmd/jujud ...
      
      This CL reduces the overall all.bash time from 4m22s to 4m17s on my laptop.
      Not much faster, but also not slower.
      
      See also #4719, #20137, #20372.
      
      Change-Id: I101d5363f8c55bf4825167a5f6954862739bf000
      Reviewed-on: https://go-review.googlesource.com/75473
      Run-TryBot: Russ Cox <rsc@golang.org>
      Reviewed-by: 's avatarDavid Crawshaw <crawshaw@golang.org>
      de4b6ebf
    • Russ Cox's avatar
      cmd/go: disable implicit $GOCACHE when clearing $HOME in test · 5e35954a
      Russ Cox authored
      Change-Id: Ie9967c8aaf7cf2e90a442937df21b1218f7ae26f
      Reviewed-on: https://go-review.googlesource.com/75472
      Run-TryBot: Russ Cox <rsc@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      Reviewed-by: 's avatarDavid Crawshaw <crawshaw@golang.org>
      5e35954a
    • Russ Cox's avatar
      cmd/go: add README and access log to cache directory · 3392c071
      Russ Cox authored
      The README is there to help people who stumble across the directory.
      
      The access log is there to help us evaluate potential algorithms for
      managing and pruning cache directories. For now the management
      is manual: users have to run "go clean -cache" if they want the cache
      to get smaller.
      
      As a low-resolution version of the access log, we also update the
      mtime on each cache file as they are used by the go command.
      A simple refinement of go clean -cache would be to delete
      (perhaps automatically) cache files that have not been used in more
      than one day, or some suitable time period.
      
      Change-Id: I1dd6309952942169d71256c4b50b723583d21fca
      Reviewed-on: https://go-review.googlesource.com/75471
      Run-TryBot: Russ Cox <rsc@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      Reviewed-by: 's avatarDavid Crawshaw <crawshaw@golang.org>
      3392c071
    • Russ Cox's avatar
      cmd/go: add "go clean -cache" · a2b44023
      Russ Cox authored
      Give users a way to remove their caches.
      
      Change-Id: I0b041aa54b318e98605675f168fed54ab9b6fd14
      Reviewed-on: https://go-review.googlesource.com/75470
      Run-TryBot: Russ Cox <rsc@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      Reviewed-by: 's avatarDavid Crawshaw <crawshaw@golang.org>
      a2b44023
    • Gabriel Aszalos's avatar
      runtime: clarify GOROOT return value in documentation · d6ebbef8
      Gabriel Aszalos authored
      The current GOROOT documentation could indicate that changing the
      environment variable at runtime would affect the return value of
      GOROOT. This is false as the returned value is the one used for the
      build. This CL aims to clarify the confusion.
      
      Fixes #22302
      
      Change-Id: Ib68c30567ac864f152d2da31f001a98531fc9757
      Reviewed-on: https://go-review.googlesource.com/75751Reviewed-by: 's avatarRuss Cox <rsc@golang.org>
      d6ebbef8
    • isharipo's avatar
      cmd/internal/obj/x86: add most missing AVX1/2 insts · 39de58ba
      isharipo authored
      This change applies x86avxgen output.
      https://go-review.googlesource.com/c/arch/+/66972
      As an effect, many new AVX instructions are now available.
      
      One of the side-effects of this patch is
      sorted AXXX (A-enum) constants.
      
      Some AVX1/2 instructions still not added due to:
      1. x86.csv V0.2 does not list them;
      2. partially because of (1), test suite does not contain tests for
         these instructions.
      
      Change-Id: I90430d773974ca5c995d6950d90e2c62ec88ef47
      Reviewed-on: https://go-review.googlesource.com/75490
      Run-TryBot: Iskander Sharipov <iskander.sharipov@intel.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarCherry Zhang <cherryyz@google.com>
      39de58ba
    • Ben Shi's avatar
      cmd/internal/obj/arm: add BFC/BFI to arm's assembler · 1ac88469
      Ben Shi authored
      BFC (Bit Field Clear) and BFI (Bit Field Insert) were
      introduced in ARMv6T2, and the compiler can use them
      to do further optimization.
      
      Change-Id: I5a3fbcd2c2400c9bf4b939da6366c854c744c27f
      Reviewed-on: https://go-review.googlesource.com/72891
      Run-TryBot: Cherry Zhang <cherryyz@google.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarCherry Zhang <cherryyz@google.com>
      1ac88469
    • Alberto Donizetti's avatar
      cmd/dist: fix bad LC_TIME assumption in 'date' invocation · 6de53832
      Alberto Donizetti authored
      With GOBUILDTIMELOGFILE set, make.bash logs the starting time using
      
        $ echo $(date) > file
      
      and expects to be able to read the date back with
      
        time.Parse(time.UnixDate)
      
      but in some locales the default date format is not the same as
      time.UnixDate; for example on LC_TIME="en_GB.UTF-8"
      
        $ locale date_fmt
        %a %e %b %H:%M:%S %Z %Y
      
      Fix this by setting LC_TIME=C before the date command invocation.
      
      Fixes #22541
      
      Change-Id: I59bf944bb868e2acdd816c7e35134780cdbfc6a6
      Reviewed-on: https://go-review.googlesource.com/75370
      Run-TryBot: Alberto Donizetti <alb.donizetti@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarRuss Cox <rsc@golang.org>
      Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      6de53832
    • Zhengyu He's avatar
      runtime: fix GNU/Linux getproccount if sched_getaffinity does not return a multiple of 8 · eaf60360
      Zhengyu He authored
      The current code can potentially return a smaller processor count on a
      linux kernel when its cpumask_size (controlled by both kernel config and
      boot parameter) is not a multiple of the pointer size, because
      r/sys.PtrSize will be rounded down. Since sched_getaffinity returns the
      size in bytes, we can just allocate the buf as a byte array to avoid the
      extra calculation with the pointer size and roundups.
      
      Change-Id: I0c21046012b88d8a56b5dd3dde1d158d94f8eea9
      Reviewed-on: https://go-review.googlesource.com/75591
      Run-TryBot: Ian Lance Taylor <iant@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
      eaf60360
    • Alex Brainman's avatar
      cmd/link: restore windows stack commit size back to 4KB · 923299a6
      Alex Brainman authored
      CL 49331 increased windows stack commit size to 2MB by mistake.
      Revert that change.
      
      Fixes #22439
      
      Change-Id: I919e549e87da326f4ba45890b4d32f6d7046186f
      Reviewed-on: https://go-review.googlesource.com/74490
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarAustin Clements <austin@google.com>
      923299a6
  3. 02 Nov, 2017 12 commits
    • griesemer's avatar
      cmd/compile: avoid spurious errors for invalid map key types · 25159d3a
      griesemer authored
      Instead of trying to validate map key types eagerly in some
      cases, delay their validation to the end of type-checking,
      when we all type information is present.
      
      Passes go build -toolexec 'toolstash -cmp' -a std .
      
      Fixes #21273.
      Fixes #21657.
      
      Change-Id: I532369dc91c6adca1502d6aa456bb06b57e6c7ff
      Reviewed-on: https://go-review.googlesource.com/75310Reviewed-by: 's avatarMatthew Dempsky <mdempsky@google.com>
      25159d3a
    • Alberto Donizetti's avatar
      cmd/vendor/github.com/google/pprof: refresh from upstream · aec345d6
      Alberto Donizetti authored
      Update vendored pprof to commit 4fc39a00b6b8c1aad05260f01429ec70e127252c
      from github.com/google/pprof (2017-11-01).
      
      Fixes #19380
      Updates #21047
      
      Change-Id: Ib64a94a45209039e5945acbcfa0392790c8ee41e
      Reviewed-on: https://go-review.googlesource.com/57370
      Run-TryBot: Alberto Donizetti <alb.donizetti@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
      aec345d6
    • Tom Bergan's avatar
      net/http: clarify when it is safe to reuse a request · 3039bff9
      Tom Bergan authored
      The godoc for RoundTrip already specifies when it's ok to reuse a
      request that contains a body: the caller must wait until RoundTrip
      calls Close on Request.Body.
      
      This CL adds a small clarification: If the request does not have a
      body, it can be reused as long as the caller does not mutate the
      Request until RoundTrip fails or the Response.Body is closed.
      
      Fixes #19653
      
      Change-Id: I56652a9369978d11650e2e6314104831c2ce5e78
      Reviewed-on: https://go-review.googlesource.com/75671Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      3039bff9
    • Joe Tsai's avatar
      io: fix Pipe regression with differing error types · af37332d
      Joe Tsai authored
      Usage of atomic.Value has a subtle requirement that the
      value be of the same concrete type. In prior usage, the intention
      was to consistently store a value of the error type.
      Since error is an interface, the underlying concrete can differ.
      
      Fix this by creating a type-safe abstraction over atomic.Value
      that wraps errors in a struct{error} type to ensure consistent types.
      
      Change-Id: Ica74f2daba15e4cff48d2b4f830d2cb51c608fb6
      Reviewed-on: https://go-review.googlesource.com/75594
      Run-TryBot: Joe Tsai <thebrokentoaster@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
      af37332d
    • mattyw's avatar
      net/http: remove unused named return variables · 41d860cf
      mattyw authored
      The existing implementation names a c net.Conn return which is
      never user. Leaving the returns unamed is marginally clearer.
      
      Change-Id: If9a411c9235b78c116a8ffb21fef71f7a4a4ce8f
      Reviewed-on: https://go-review.googlesource.com/66890Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      41d860cf
    • Brad Fitzpatrick's avatar
      net/http: quiet some log spam in TestNoBodyOnChunked304Response · a9a58069
      Brad Fitzpatrick authored
      Updates #22540
      
      Change-Id: I63e8c4874f8a774e9c47affc856aadf8c35ca23b
      Reviewed-on: https://go-review.googlesource.com/75593
      Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarTom Bergan <tombergan@google.com>
      a9a58069
    • Michael Munday's avatar
      cmd/compile: add missing s390x load with index operations · 1ce7442e
      Michael Munday authored
      Prior to this CL loads with sign extension could not be replaced with
      indexed loads (only loads with zero extension).
      
      This CL also prevents large offsets (more than 20-bits) from being
      merged into indexed loads. It is better to keep such offsets
      separate.
      
      Gives a small improvement in binary size, ~1.5KB from .text in cmd/go.
      
      Change-Id: Ib848ffc2b05de6660c5ce2394ae1d1d144273e29
      Reviewed-on: https://go-review.googlesource.com/36845
      Run-TryBot: Michael Munday <mike.munday@ibm.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarKeith Randall <khr@golang.org>
      1ce7442e
    • Daniel Martí's avatar
      cmd/compile: turn some pointer params into results · d5960e30
      Daniel Martí authored
      These are likely from the time when gc was written in C. There is no
      need for any of these to be passed pointers, as the previous values are
      not kept in any way, and the pointers are never nil. Others were left
      untouched as they fell into one of these useful cases.
      
      While at it, also turn some 0/1 integers into booleans.
      
      Passes toolstash -cmp on std cmd.
      
      Change-Id: Id3a9c9e84ef89536c4dc69a7fdbacd0fd7a76a9b
      Reviewed-on: https://go-review.googlesource.com/72990
      Run-TryBot: Daniel Martí <mvdan@mvdan.cc>
      Reviewed-by: 's avatarMatthew Dempsky <mdempsky@google.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      d5960e30
    • Ilya Tocar's avatar
      cmd/compile/internal/ssa: inline memmove with known size · f3884680
      Ilya Tocar authored
      Replace calls to memmove with known (constant) size, with OpMove.
      Do it only if it is safe from aliasing point of view.
      Helps with code like this:
      
      append(buf,"const str"...)
      
      In strconv this provides nice benefit:
      Quote-6                                   731ns ± 2%   647ns ± 3%  -11.41%  (p=0.000 n=10+10)
      QuoteRune-6                               117ns ± 5%   111ns ± 1%   -4.54%  (p=0.000 n=10+10)
      AppendQuote-6                             475ns ± 0%   396ns ± 0%  -16.59%  (p=0.000 n=9+10)
      AppendQuoteRune-6                        32.0ns ± 0%  27.4ns ± 0%  -14.41%  (p=0.000 n=8+9)
      
      Change-Id: I7704f5c51b46aed2d8f033de74c75140fc35036c
      Reviewed-on: https://go-review.googlesource.com/54394
      Run-TryBot: Ilya Tocar <ilya.tocar@intel.com>
      Reviewed-by: 's avatarKeith Randall <khr@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      f3884680
    • Brad Fitzpatrick's avatar
      net/http: remove some log spam in test, add missing error detail · ad3742f4
      Brad Fitzpatrick authored
      Updates #22540
      
      Change-Id: I26e79c25652976fac6f2e5a7afb4fd1240996d74
      Reviewed-on: https://go-review.googlesource.com/75531Reviewed-by: 's avatarTom Bergan <tombergan@google.com>
      Run-TryBot: Tom Bergan <tombergan@google.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      ad3742f4
    • Joe Tsai's avatar
      go/printer: forbid empty line before first comment in block · 08f19bbd
      Joe Tsai authored
      To improve readability when exported fields are removed,
      forbid the printer from emitting an empty line before the first comment
      in a const, var, or type block.
      Also, when printing the "Has filtered or unexported fields." message,
      add an empty line before it to separate the message from the struct
      or interfact contents.
      
      Before the change:
      <<<
      type NamedArg struct {
      
              // Name is the name of the parameter placeholder.
              //
              // If empty, the ordinal position in the argument list will be
              // used.
              //
              // Name must omit any symbol prefix.
              Name string
      
              // Value is the value of the parameter.
              // It may be assigned the same value types as the query
              // arguments.
              Value interface{}
              // contains filtered or unexported fields
      }
      >
      > After the change:
      > <<<
      > type NamedArg struct {
      >         // Name is the name of the parameter placeholder.
      >         //
      >         // If empty, the ordinal position in the argument list will be
      >         // used.
      >         //
      >         // Name must omit any symbol prefix.
      >         Name string
      >
      >         // Value is the value of the parameter.
      >         // It may be assigned the same value types as the query
      >         // arguments.
      >         Value interface{}
      >
      >         // contains filtered or unexported fields
      > }
      
      Fixes #18264
      
      Change-Id: I9fe17ca39cf92fcdfea55064bd2eaa784ce48c88
      Reviewed-on: https://go-review.googlesource.com/71990
      Run-TryBot: Joe Tsai <thebrokentoaster@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarRobert Griesemer <gri@golang.org>
      08f19bbd
    • Martin Möhrmann's avatar
      runtime: refactor insertion slot tracking for fast hashmap functions · 8585f9fd
      Martin Möhrmann authored
      * Avoid calculating insertk until needed.
      * Avoid a pointer into b.tophash and just track the insertion index.
        This avoids b.tophash being marked as escaping to heap.
      * Calculate val only once at the end of the mapassign functions.
      
      Function sizes decrease slightly, e.g. for mapassign_faststr:
      before "".mapassign_faststr STEXT size=1166 args=0x28 locals=0x78
      after  "".mapassign_faststr STEXT size=1080 args=0x28 locals=0x68
      
      name                     old time/op  new time/op  delta
      MapAssign/Int32/256-4    19.4ns ± 4%  19.5ns ±11%     ~     (p=0.973 n=20+20)
      MapAssign/Int32/65536-4  32.5ns ± 2%  32.4ns ± 3%     ~     (p=0.078 n=20+19)
      MapAssign/Int64/256-4    20.3ns ± 6%  17.6ns ± 5%  -13.01%  (p=0.000 n=20+20)
      MapAssign/Int64/65536-4  33.3ns ± 2%  33.3ns ± 1%     ~     (p=0.444 n=20+20)
      MapAssign/Str/256-4      22.3ns ± 3%  22.4ns ± 3%     ~     (p=0.343 n=20+20)
      MapAssign/Str/65536-4    44.9ns ± 1%  43.9ns ± 1%   -2.39%  (p=0.000 n=20+19)
      
      Change-Id: I2627bb8a961d366d9473b5922fa129176319eb22
      Reviewed-on: https://go-review.googlesource.com/74870
      Run-TryBot: Martin Möhrmann <moehrmann@google.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarKeith Randall <khr@golang.org>
      8585f9fd