1. 27 Nov, 2017 3 commits
    • Robert Griesemer's avatar
      go/types: add debugging code to detect use of incomplete interfaces · 3c7e491b
      Robert Griesemer authored
      The comment for phase 2 of checker.interfaceType (typexpr.go:517)
      requires that embedded interfaces be complete for correctness of
      the algorithm.
      
      Yet, the very next comment (typexpr.go:530) states that underlying
      embedded interfaces may in fact be incomplete.
      
      This is in fact the case and the underlying bug in issue #18395.
      
      This change makes sure that new interface types are marked complete
      when finished (per the implicit definition in Interface.Complete,
      type.go:302). It also adds a check, enabled in debug mode only, to
      detect the use of incomplete embedded interfaces during construction
      of a new interface. In debug mode, this check fails for the testcase
      in the issue (and several others).
      
      This change has no noticeable impact with debug mode disabled.
      
      For #18395.
      
      Change-Id: Ibb81e47257651282fb3755a80a36ab5d392e636d
      Reviewed-on: https://go-review.googlesource.com/78955Reviewed-by: default avatarAlan Donovan <adonovan@google.com>
      3c7e491b
    • Andrew Bonventre's avatar
      doc: update URL of the go1.4 source snapshot to use dl.google.com · 4aac23cc
      Andrew Bonventre authored
      Updates golang/go#20672
      
      Change-Id: I88a1d8693ef9d1e4758719603ce1f3c3f6b920bc
      Reviewed-on: https://go-review.googlesource.com/79936Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
      4aac23cc
    • Brian Kessler's avatar
      math/cmplx: use signed zero to correct branch cuts · 802a8f88
      Brian Kessler authored
      Branch cuts for the elementary complex functions along real or imaginary axes
      should be resolved in floating point calculations by one-sided continuity with
      signed zero as described in:
      
      "Branch Cuts for Complex Elementary Functions or Much Ado About Nothing's Sign Bit"
      W. Kahan
      
      Available at: https://people.freebsd.org/~das/kahan86branch.pdf
      
      And as described in the C99 standard which is claimed as the original cephes source.
      
      Sqrt did not return the correct branch when imag(x) == 0. The branch is now
      determined by sign(imag(x)).  This incorrect branch choice was affecting the behavior
      of the Trigonometric/Hyperbolic functions that use Sqrt in intermediate calculations.
      
      Asin, Asinh and Atan had spurious domain checks, whereas the functions should be valid
      over the whole complex plane with appropriate branch cuts.
      
      Fixes #6888
      
      Change-Id: I9b1278af54f54bfb4208276ae345bbd3ddf3ec83
      Reviewed-on: https://go-review.googlesource.com/46492
      Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarRuss Cox <rsc@golang.org>
      802a8f88
  2. 26 Nov, 2017 2 commits
  3. 25 Nov, 2017 3 commits
  4. 24 Nov, 2017 2 commits
    • Austin Clements's avatar
      runtime: fix final stack split in exitsyscall · be589f8d
      Austin Clements authored
      exitsyscall should be recursively nosplit, but we don't have a way to
      annotate that right now (see #21314). There's exactly one remaining
      place where this is violated right now: exitsyscall -> casgstatus ->
      print. The other prints in casgstatus are wrapped in systemstack
      calls. This fixes the remaining print.
      
      Updates #21431 (in theory could fix it, but that would just indicate
      that we have a different G status-related crash and we've *never* seen
      that failure on the dashboard.)
      
      Change-Id: I9a5e8d942adce4a5c78cfc6b306ea5bda90dbd33
      Reviewed-on: https://go-review.googlesource.com/79815
      Run-TryBot: Austin Clements <austin@google.com>
      Reviewed-by: default avatarRick Hudson <rlh@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      be589f8d
    • Emmanuel Odeke's avatar
      runtime: tweak doc for Goexit · 2e1f0713
      Emmanuel Odeke authored
      Use singular form of panic and remove the unnecessary
      'however', when comparing Goexit's behavior to 'a panic'
      as well as what happens for deferred recovers with Goexit.
      
      Change-Id: I3116df3336fa135198f6a39cf93dbb88a0e2f46e
      Reviewed-on: https://go-review.googlesource.com/79755Reviewed-by: default avatarRob Pike <r@golang.org>
      2e1f0713
  5. 23 Nov, 2017 8 commits
  6. 22 Nov, 2017 21 commits
  7. 21 Nov, 2017 1 commit