1. 30 Sep, 2014 11 commits
    • Russ Cox's avatar
      compress/zlib: mention that NewReaderDict can return ErrDictionary · 02395953
      Russ Cox authored
      Fixes #7935.
      
      LGTM=iant
      R=golang-codereviews, iant
      CC=golang-codereviews, ruiu
      https://golang.org/cl/147390043
      02395953
    • Russ Cox's avatar
      log/syslog: try /var/run/log, for FreeBSD · 5a1906dc
      Russ Cox authored
      Fixes #8449.
      
      LGTM=iant
      R=golang-codereviews, iant
      CC=bradfitz, golang-codereviews
      https://golang.org/cl/145600044
      5a1906dc
    • Russ Cox's avatar
      cmd/objdump: move armasm, x86asm into internal packages · c75f81f0
      Russ Cox authored
      For Go 1.3 these external packages were collapsed into
      large single-file implementations stored in the cmd/objdump
      directory.
      
      For Go 1.4 we want pprof to be able to link against them too,
      so move them into cmd/internal, where they can be shared.
      
      The new files are copied from the repo in the file path (rsc.io/...).
      Those repos were code reviewed during development
      (mainly by crawshaw and minux), because we knew the
      main repo would use them.
      
      Update #8798
      
      LGTM=bradfitz
      R=crawshaw, bradfitz
      CC=golang-codereviews
      https://golang.org/cl/153750044
      c75f81f0
    • Russ Cox's avatar
      CONTRIBUTORS: add Raul Silvera (Google CLA) · 7de0c315
      Russ Cox authored
      Raul wrote the pprof code in CL 153750043.
      
      LGTM=bradfitz, r
      R=r, bradfitz
      CC=golang-codereviews
      https://golang.org/cl/146450043
      7de0c315
    • Russ Cox's avatar
      regexp/syntax: reject large repetitions created by nesting small ones · 9b2b0c8c
      Russ Cox authored
      Fixes #7609.
      
      LGTM=r
      R=r
      CC=golang-codereviews
      https://golang.org/cl/150270043
      9b2b0c8c
    • Keith Randall's avatar
      runtime: fix scanning of gc work buffer · ac9218f5
      Keith Randall authored
      GC types were not being generated for the garbage collector
      work buffer.  The markfor object was being collected as a result.
      This broke amd64p32 and maybe plan9 builds.  Why it didn't break
      every build I'm not sure...
      
      Fixes #8812
      
      LGTM=0intro, rsc
      R=golang-codereviews, dave, khr, 0intro, rsc
      CC=golang-codereviews
      https://golang.org/cl/149260043
      ac9218f5
    • Dmitriy Vyukov's avatar
      runtime: fix throwsplit check · 12308d5a
      Dmitriy Vyukov authored
      Newstack runs on g0, g0->throwsplit is never set.
      
      LGTM=rsc
      R=rsc
      CC=golang-codereviews, khr
      https://golang.org/cl/147370043
      12308d5a
    • Keith Randall's avatar
      runtime: initialize traceback variables earlier · 70b2da98
      Keith Randall authored
      Our traceback code needs to know the PC of several special
      functions, including goexit, mcall, etc.  Make sure that
      these PCs are initialized before any traceback occurs.
      
      Fixes #8766
      
      LGTM=rsc
      R=golang-codereviews, rsc, khr, bradfitz
      CC=golang-codereviews
      https://golang.org/cl/145570043
      70b2da98
    • Brad Fitzpatrick's avatar
      net/http: make Transport.CloseIdleConnections also close pending dials · f13cec9f
      Brad Fitzpatrick authored
      See comment 4 of https://code.google.com/p/go/issues/detail?id=8483#c4:
      
      "So if a user creates a http.Client, issues a bunch of
      requests and then wants to shutdown it and all opened connections;
      what is she intended to do? The report suggests that just waiting for
      all pending requests and calling CloseIdleConnections won't do, as
      there can be new racing connections. Obviously she can't do what
      you've done in the test, as it uses the unexported function.  If this
      happens periodically, it can lead to serious resource leaks (the
      transport is also preserved alive).  Am I missing something?"
      
      This CL tracks the user's intention to close all idle
      connections (CloseIdleConnections sets it true; and making a
      new request sets it false). If a pending dial finishes and
      nobody wants it, before it's retained for a future caller, the
      "wantIdle" bool is checked and it's closed if the user has
      called CloseIdleConnections without a later call to make a new
      request.
      
      Fixes #8483
      
      LGTM=adg
      R=golang-codereviews, dvyukov, adg
      CC=golang-codereviews, rsc
      https://golang.org/cl/148970043
      f13cec9f
    • Dmitri Shuralyov's avatar
      go/format, cmd/gofmt: fix issues with partial Go code with indent · 912ec199
      Dmitri Shuralyov authored
      Fixes #5551.
      Fixes #4449.
      
      Adds tests for both issues.
      
      Note that the two issues occur only when formatting partial Go code
      with indent.
      
      The best way to understand the change is as follows: I took the code
      of cmd/gofmt and go/format, combined it into one unified code that
      does not suffer from either 4449 nor 5551, and then applied that code
      to both cmd/gofmt and go/format.
      
      As a result, there is now much more identical code between the two
      packages, making future code deduplication easier (it was not possible
      to do that now without adding public APIs, which I was advised not to
      do at this time).
      
      More specifically, I took the parse() of cmd/gofmt which correctly
      preserves comments (issue 5551) and modified it to fix issue where
      it would sometimes modify literal values (issue 4449).
      
      I ended up removing the matchSpace() function because it no longer
      needed to do some of its work (insert indent), and a part of its work
      had to be done in advance (determining the indentation of first code
      line), because that calculation is required for cfg.Fprint() to run.
      
      adjustIndent is used to adjust the indent of cfg.Fprint() to compensate
      for the body of wrapper func being indented by one level. This allows
      to get rid of the bytes.Replace text manipulation of inner content,
      which was problematic and sometimes altered raw string literals (issue
      4449). This means that sometimes the value of cfg.Indent is negative,
      but that works as expected.
      
      So now the algorithm for formatting partial Go code is:
      
      1. Determine and prepend leading space of original source.
      2. Determine and prepend indentation of first code line.
      3. Format and write partial Go code (with all of its leading &
         trailing space trimmed).
      4. Determine and append trailing space of original source.
      
      LGTM=gri
      R=golang-codereviews, bradfitz, gri
      CC=golang-codereviews
      https://golang.org/cl/142360043
      912ec199
    • Dave Cheney's avatar
      liblink: generate MRC replacement in liblink, not tls_arm · 0b36211c
      Dave Cheney authored
      Fixes #8690.
      
      This CL moves the save of LR around BL runtime.read_tls_fallback to liblink as it is not needed when MRC is not replaced.
      
      LGTM=rsc, minux
      R=rsc, khr, minux
      CC=golang-codereviews
      https://golang.org/cl/147310043
      0b36211c
  2. 29 Sep, 2014 14 commits
  3. 28 Sep, 2014 1 commit
  4. 27 Sep, 2014 1 commit
  5. 26 Sep, 2014 13 commits
    • Russ Cox's avatar
      math: avoid assumption of denormalized math mode in Sincos · 4a8cb4a4
      Russ Cox authored
      The extra-clever code in Sincos is trying to do
      
              if v&2 == 0 {
                      mask = 0xffffffffffffffff
              } else {
                      mask = 0
              }
      
      It does this by turning v&2 into a float64 X0 and then using
      
              MOVSD $0.0, X3
              CMPSD X0, X3, 0
      
      That CMPSD is defined to behave like:
      
              if X0 == X3 {
                      X3 = 0xffffffffffffffff
              } else {
                      X3 = 0
              }
      
      which gives the desired mask in X3. The goal in using the
      CMPSD was to avoid a conditional branch.
      
      This code fails when called from a PortAudio callback.
      In particular, the failure behavior is exactly as if the
      CMPSD always chose the 'true' execution.
      
      Notice that the comparison X0 == X3 is comparing as
      floating point values the 64-bit pattern v&2 and the actual
      floating point value zero. The only possible values for v&2
      are 0x0000000000000000 (floating point zero)
      and 0x0000000000000002 (floating point 1e-323, a denormal).
      If they are both comparing equal to zero, I conclude that
      in a PortAudio callback (whatever that means), the processor
      is running in "denormals are zero" mode.
      
      I confirmed this by placing the processor into that mode
      and running the test case in the bug; it produces the
      incorrect output reported in the bug.
      
      In general, if a Go program changes the floating point math
      modes to something other than what Go expects, the math
      library is not going to work exactly as intended, so we might
      be justified in not fixing this at all.
      
      However, it seems reasonable that the client code might
      have expected "denormals are zero" mode to only affect
      actual processing of denormals. This code has produced
      what is in effect a gratuitous denormal by being extra clever.
      There is nothing about the computation being requested
      that fundamentally requires a denormal.
      
      It is also easy to do this computation in integer math instead:
      
              mask = ((v&2)>>1)-1
      
      Do that.
      
      For the record, the other math tests that fail if you put the
      processor in "denormals are zero" mode are the tests for
      Frexp, Ilogb, Ldexp, Logb, Log2, and FloatMinMax, but all
      fail processing denormal inputs. Sincos was the only function
      for which that mode causes incorrect behavior on non-denormal inputs.
      
      The existing tests check that the new assembly is correct.
      There is no test for behavior in "denormals are zero" mode,
      because I don't want to add assembly to change that.
      
      Fixes #8623.
      
      LGTM=josharian
      R=golang-codereviews, josharian
      CC=golang-codereviews, iant, r
      https://golang.org/cl/151750043
      4a8cb4a4
    • Russ Cox's avatar
      1d9c0315
    • Russ Cox's avatar
      cmd/go: always build _test.go files and link into test · 754cd541
      Russ Cox authored
      go test's handling of _test.go files when the entire
      package's set of files has no Test functions has varied
      over the past few releases. There are a few interesting
      cases (all contain no Test functions):
              (1) x_test.go has syntax errors
              (2) x_test.go has type errors
              (3) x_test.go has runtime errors (say, a func init that panics)
      
      In Go 1.1, tests with (1) or (2) failed; (3) passed.
      In Go 1.2, tests with (1) or (2) failed; (3) passed.
      In Go 1.3, tests with (1) failed; (2) or (3) passed.
      After this CL, tests with (1), (2), or (3) all fail.
      
      This is clearly a corner case, but it seems to me that
      the behavior of the test should not change if you
      add or remove a line like
      
              func TestAlwaysPasses(t *testing.T) {}
      
      That implies that the _test.go files must always
      be built and always be imported into the test binary.
      Doing so means that (1), (2), and (3) must all fail.
      
      Fixes #8337.
      
      LGTM=iant
      R=golang-codereviews, iant
      CC=adg, golang-codereviews, r
      https://golang.org/cl/150980043
      754cd541
    • Russ Cox's avatar
      cmd/yacc: fix parsing of character tokens · bfebf9ea
      Russ Cox authored
      From issue 7967 I learned:
      
      1) yacc accepts either 'x' or "x" to mean token value 0x78
      2) yacc also accepts 'xyz' and "XYZ" to mean token value 0x78
      
      Use strconv.Unquote to simplify the handling of quoted
      strings and check that each has only one rune.
      
      Although this does clean things up, it makes 'x' and "x"
      treated as different internally (now they are stored as
      `'x'` and `"x"`; before they were both ` x`). Grammars that
      use both interchangeably will now die with an error
      similar to the one from issue 7967:
      
              yacc bug -- cannot have 2 different Ts with same value
                      "+" and '+'
      
      The echoing of the quotes should make clear what is going on.
      
      The other semantic change caused by using strconv.Unquote
      is that '\"' and "\'" are no longer valid. Like in Go, they must be
      spelled without the backslash: '"' and "'".
      
      On the other hand, now yacc and Go agree about what character
      and string literals mean.
      
      LGTM=r
      R=r
      CC=golang-codereviews
      https://golang.org/cl/149110043
      bfebf9ea
    • Rob Pike's avatar
      flag: allow CommandLine's Usage function to be set · b2487ef6
      Rob Pike authored
      Fixes #7779.
      
      LGTM=rsc
      R=golang-codereviews, rsc
      CC=golang-codereviews
      https://golang.org/cl/147210043
      b2487ef6
    • Russ Cox's avatar
      cmd/go: fix -a · 1bf18b42
      Russ Cox authored
      The one line that you can't test easily was broken.
      This manifested as a failure of a pre-existing test
      in test.bash but I didn't notice it (there are a few other
      long-standing failures that need to be fixed).
      
      TBR=r
      CC=golang-codereviews
      https://golang.org/cl/146340044
      1bf18b42
    • Russ Cox's avatar
      cmd/go: make build -a skip standard packages in Go releases · 8c3005c4
      Russ Cox authored
      Today, 'go build -a my/pkg' and 'go install -a my/pkg'
      recompile not just my/pkg and all its dependencies that
      you wrote but also the standard library packages.
      Recompiling the standard library is problematic on
      some systems because the installed copy is not writable.
      
      The -a behavior means that you can't use 'go install -a all'
      or 'go install -a my/...' to rebuild everything after a Go
      release - the rebuild stops early when it cannot overwrite
      the installed standard library.
      
      During development work, however, you do want install -a
      to rebuild everything, because anything might have changed.
      
      Resolve the conflict by making the behavior of -a depend
      on whether we are using a released copy of Go or a devel copy.
      In the release copies, -a no longer applies to the standard library.
      In the devel copies, it still does.
      
      This is the latest in a long line of refinements to the
      "do I build this or not" logic. It is surely not the last.
      
      Fixes #8290.
      
      LGTM=r
      R=golang-codereviews, r, tracey.brendan
      CC=adg, golang-codereviews, iant
      https://golang.org/cl/151730045
      8c3005c4
    • Russ Cox's avatar
      doc/go1.4: add some cmd/go changes · e5afecbd
      Russ Cox authored
      CC=golang-codereviews
      https://golang.org/cl/143650043
      e5afecbd
    • Alex Brainman's avatar
      cmd/go: handle paths like \x.go on windows · 0b8bc7ce
      Alex Brainman authored
      Fixes #8130.
      
      LGTM=rsc
      R=golang-codereviews, rsc
      CC=golang-codereviews
      https://golang.org/cl/143200043
      0b8bc7ce
    • Russ Cox's avatar
      liblink: fix cmd/ld -X flag · df781cc4
      Russ Cox authored
      This fixes the test/linkx.go test, which does not run by default.
      (Issue 4139 is about fixing that.)
      
      Fixes #8806.
      
      LGTM=r
      R=golang-codereviews, r
      CC=bradfitz, golang-codereviews, iant
      https://golang.org/cl/145420043
      df781cc4
    • Russ Cox's avatar
      cmd/go: document that testdata directories are ignored · 6d760fb0
      Russ Cox authored
      Also rebuild doc.go; was stale, so contains extra changes.
      
      Fixes #8677.
      
      LGTM=r
      R=golang-codereviews, r
      CC=golang-codereviews, iant
      https://golang.org/cl/148170043
      6d760fb0
    • Russ Cox's avatar
      cmd/go: add test -o flag to control where test binary is written · ce143f25
      Russ Cox authored
      While we are here, remove undocumented, meaningless test -file flag.
      
      Fixes #7724.
      
      LGTM=r
      R=golang-codereviews, r
      CC=golang-codereviews, iant
      https://golang.org/cl/149070043
      ce143f25
    • Russ Cox's avatar
      cmd/go: display program name when reporting crash · 13a2c1ca
      Russ Cox authored
      Fix by atom (from CL 89190044), comment and test by me.
      
      Fixes #6823.
      
      LGTM=crawshaw
      R=golang-codereviews, crawshaw
      CC=0xe2.0x9a.0x9b, adg, golang-codereviews, iant, r
      https://golang.org/cl/148180043
      13a2c1ca