1. 06 Dec, 2017 6 commits
  2. 05 Dec, 2017 8 commits
  3. 04 Dec, 2017 8 commits
    • Keith Randall's avatar
      cmd/compile: fix noopt builder, weird append case · 9d70b3ae
      Keith Randall authored
      Turn off append-to-itself optimization if optimizations are turned off.
      
      This optimization triggered a bug when doing
        s = append(s, s)
      where we write to the leftmost s before reading the rightmost s.
      
      Update #17039
      
      Change-Id: I21996532d20a75db6ec8d49db50cb157a1360b80
      Reviewed-on: https://go-review.googlesource.com/81816
      Run-TryBot: Keith Randall <khr@golang.org>
      Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      Reviewed-by: 's avatarDavid Chase <drchase@google.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      9d70b3ae
    • Matthew Dempsky's avatar
      cmd/go: disable concurrent compilation under GOEXPERIMENTs · 509ffb94
      Matthew Dempsky authored
      Duplicate cmd/compile check into cmd/go. Manually tested that
      "GOEXPERIMENT=fieldtrack make.bash" passes now.
      
      Updates #22223.
      
      Change-Id: I441970a8a5ad4aadf5bd4fbd4d6cc71847b43308
      Reviewed-on: https://go-review.googlesource.com/81776
      Run-TryBot: Matthew Dempsky <mdempsky@google.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      509ffb94
    • Matthew Dempsky's avatar
      test: disable broken test for 1.10 · 2b9e7c18
      Matthew Dempsky authored
      This test was added recently as a regress test for the spec relaxation
      in #9060, but doesn't work correctly yet. Disable for now to fix noopt
      builders.
      
      Updates #22444.
      
      Change-Id: I45c521ae0da7ffb0c6859d6f7220c59828ac6149
      Reviewed-on: https://go-review.googlesource.com/81775
      Run-TryBot: Matthew Dempsky <mdempsky@google.com>
      Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      2b9e7c18
    • Than McIntosh's avatar
      cmd/compile: fix bug in DWARF inl handling of unused autos · 88c2fb9d
      Than McIntosh authored
      The DWARF inline info generation hooks weren't properly
      handling unused auto vars in certain cases, triggering an assert (now
      fixed). Also with this change, introduce a new autom "flavor" to
      use for autom entries that are added to insure that a specific
      auto type makes it into the linker (this is a follow-on to the fix
      for 22941).
      
      Fixes #22962.
      
      Change-Id: I7a2d8caf47f6ca897b12acb6a6de0eb25f5cac8f
      Reviewed-on: https://go-review.googlesource.com/81557
      Run-TryBot: Than McIntosh <thanm@google.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarDavid Chase <drchase@google.com>
      Reviewed-by: 's avatarCherry Zhang <cherryyz@google.com>
      88c2fb9d
    • Elias Naur's avatar
      misc/ios: dump logs for failing lldb sessions to stdout · 03c93eaa
      Elias Naur authored
      The iOS test harness dumps the output of its lldb session to stdout,
      but only if the lldb session was successfully started.
      Make sure the log is always dumpede, so that lldb startup failures
      such as
      
      lldb setup error: exited (lldb start: exit status 253)
      
      can be diagnosed.
      
      For the iOS builders.
      
      Change-Id: Ie0e3341dd8f84a88d26509c34816668d3ebbfaa0
      Reviewed-on: https://go-review.googlesource.com/76195
      Run-TryBot: Elias Naur <elias.naur@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarHyang-Ah Hana Kim <hyangah@gmail.com>
      03c93eaa
    • Russ Cox's avatar
      cmd/go: disable tests when GOOS/GOARCH != GOHOSTARCH/GOHOSTARCH · 1b9f6633
      Russ Cox authored
      The whole GOROOT/pkg tree is installed using the GOHOSTOS/GOHOSTARCH
      toolchain (installed in GOROOT/pkg/tool/GOHOSTOS_GOHOSTARCH).
      The testgo.exe we run during the cmd/go test will be built
      for GOOS/GOARCH, which means it will use the GOOS/GOARCH toolchain
      (installed in GOROOT/pkg/tool/GOOS_GOARCH).
      
      If these are not the same toolchain, then the entire standard library
      will look out of date to testgo.exe (the compilers in those two different
      tool directories are built for different architectures and have different
      buid IDs), which will cause many tests to do unnecessary rebuilds
      and some tests to attempt to overwrite the installed standard library,
      which will in turn make it look out of date to whatever runs after the
      cmd/go test exits.
      
      Bail out entirely in this case instead of destroying the world.
      
      The changes outside TestMain are checks that might have caught
      this a bit earlier and made it much less confusing to debug.
      
      Fixes #22709.
      Fixes #22965.
      
      Change-Id: Ibf28fa19e29a1f1b8f17875f446d3474dd04a924
      Reviewed-on: https://go-review.googlesource.com/81516
      Run-TryBot: Russ Cox <rsc@golang.org>
      Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      1b9f6633
    • Russ Cox's avatar
      cmd/go: fix -covermode=atomic use of sync/atomic in -coverpkg matches · f047422a
      Russ Cox authored
      If we're using -covermode=atomic with -coverpkg, to add coverage
      to more than just the package being tested, then we need to make sure
      to make sync/atomic available to the compiler for every package
      being recompiled for coverage.
      
      Fixes #22728.
      
      Change-Id: I27f88f6a62e37d4a7455554cd03c8ca2b21f81a4
      Reviewed-on: https://go-review.googlesource.com/81497
      Run-TryBot: Russ Cox <rsc@golang.org>
      Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      f047422a
    • Christos Zoulas's avatar
      runtime: make NetBSD lwp_park use monotonic time · 66fcf454
      Christos Zoulas authored
      This change updates runtime.semasleep to no longer call
      runtime.nanotime and instead calls lwp_park with a duration to sleep
      relative to the monotonic clock, so the nanotime is never called.
      (This requires updating to a newer version of the lwp_park system
      call, which is safe, because Go 1.10 will require the unreleased
      NetBSD 8+ anyway)
      
      Additionally, this change makes the nanotime function use the
      monotonic clock for netbsd/arm, which was forgotten from
      https://golang.org/cl/81135 which updated netbsd/amd64 and netbsd/386.
      
      Because semasleep previously depended on nanotime, the past few days
      of netbsd have likely been unstable because lwp_park was then mixing
      the monotonic and wall clocks. After this CL, lwp_park no longer
      depends on nanotime.
      
      Original patch submitted at:
      https://www.netbsd.org/~christos/go-lwp-park-clock-monotonic.diff
      
      This commit message (any any mistakes therein) were written by Brad
      Fitzpatrick. (Brad migrated the patch to Gerrit and checked CLAs)
      
      Updates #6007
      Fixes #22968
      
      Also updates netbsd/arm to use monotonic time for
      
      Change-Id: If77ef7dc610b3025831d84cdfadfbbba2c52acb2
      Reviewed-on: https://go-review.googlesource.com/81715
      Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      66fcf454
  4. 02 Dec, 2017 2 commits
    • Brad Fitzpatrick's avatar
      os: clarify docs on Interrupt and Kill · 871b7931
      Brad Fitzpatrick authored
      Note that Interrupt will compile but not work on Windows.
      
      Fixes #22454
      
      Change-Id: If011c32211f4bb45d458317e113b9794d5b4a4b1
      Reviewed-on: https://go-review.googlesource.com/81035Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
      871b7931
    • Ian Lance Taylor's avatar
      os: calling Fd disables the SetDeadline methods · 41534957
      Ian Lance Taylor authored
      The full truth seems too complicated to write in this method's doc, so
      I'm going with a simple half truth.
      
      The full truth is that Fd returns the descriptor in blocking mode,
      because that is historically how it worked, and existing programs
      would be surprised if the descriptor is suddenly non-blocking. On Unix
      systems whether a file is non-blocking or not is a property of the
      underlying file description, not of a particular file descriptor, so
      changing the returned descriptor to blocking mode also changes the
      existing File to blocking mode. Blocking mode works fine, althoug I/O
      operations now take up a thread. SetDeadline and friends rely on the
      runtime poller, and the runtime poller only works if the descriptor is
      non-blocking. So it's correct that calling Fd disables SetDeadline.
      The other half of the truth is that if the program is willing to work
      with a non-blocking descriptor, it could call
      syscall.SetNonblock(descriptor, true) to change the descriptor, and
      the original File, to non-blocking mode. At that point SetDeadline
      would start working again. I tried to write that in a way that is
      short and comprehensible but failed. Since deadlines mostly work on
      pipes, and there isn't much reason to call Fd on a pipe, and few
      people use SetDeadline, I decided to punt.
      
      Fixes #22934
      
      Change-Id: I2e49e036f0bcf71f5365193831696f9e4120527c
      Reviewed-on: https://go-review.googlesource.com/81636Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      41534957
  5. 01 Dec, 2017 16 commits