1. 20 May, 2014 6 commits
    • Mikio Hara's avatar
      doc/go1.3.html: switch default stack size back to 8kB · 66f72f8a
      Mikio Hara authored
      Update #8030
      
      LGTM=bradfitz
      R=golang-codereviews, bradfitz
      CC=golang-codereviews
      https://golang.org/cl/94680043
      66f72f8a
    • Elias Naur's avatar
      cmd/cgo: document CC_FOR_TARGET and CXX_FOR_TARGET · 88d07b2c
      Elias Naur authored
      Update #4714
      
      LGTM=iant, minux.ma, rsc
      R=rsc, iant, r, minux.ma
      CC=golang-codereviews
      https://golang.org/cl/100390043
      88d07b2c
    • Russ Cox's avatar
      liblink: fix field tracking · d9c9665f
      Russ Cox authored
      The USEFIELD instructions no longer make it to the linker,
      so we have to do something else to pin the references
      they were pinning. Emit a 0-length relocation of type R_USEFIELD.
      
      Fixes #7486.
      
      LGTM=iant
      R=golang-codereviews, iant
      CC=golang-codereviews, r
      https://golang.org/cl/95530043
      d9c9665f
    • Russ Cox's avatar
      runtime: switch default stack size back to 8kB · 6aee2964
      Russ Cox authored
      The move from 4kB to 8kB in Go 1.2 was to eliminate many stack split hot spots.
      
      The move back to 4kB was predicated on copying stacks eliminating
      the potential for hot spots.
      
      Unfortunately, the fact that stacks do not copy 100% of the time means
      that hot spots can still happen under the right conditions, and the slowdown
      is worse now than it was in Go 1.2. There is a real program in issue 8030 that
      sees about a 30x slowdown: it has a reflect call near the top of the stack
      which inhibits any stack copying on that segment.
      
      Go back to 8kB until stack copying can be used 100% of the time.
      
      Fixes #8030.
      
      LGTM=khr, dave, iant
      R=iant, khr, r, bradfitz, dave
      CC=golang-codereviews
      https://golang.org/cl/92540043
      6aee2964
    • Russ Cox's avatar
      cmd/gc: fix float32 const conversion and printing of big float consts · 60be4a24
      Russ Cox authored
      The float32 const conversion used to round to float64
      and then use the hardware to round to float32.
      Even though there was a range check before this
      conversion, the double rounding introduced inaccuracy:
      the round to float64 might round the value further away
      from the float32 range, reaching a float64 value that
      could not actually be rounded to float32. The hardware
      appears to give us 0 in that case, but it is probably undefined.
      Double rounding also meant that the wrong value might
      be used for certain border cases.
      
      Do the rounding the float32 ourselves, just as we already
      did the rounding to float64. This makes the conversion
      precise and also makes the conversion match the range check.
      
      Finally, add some code to print very large (bigger than float64)
      floating point constants in decimal floating point notation instead
      of falling back to the precise but human-unreadable binary floating
      point notation.
      
      Fixes #8015.
      
      LGTM=iant
      R=golang-codereviews, iant
      CC=golang-codereviews, r
      https://golang.org/cl/100580044
      60be4a24
    • Shenghou Ma's avatar
      cmd/ld: abort if (32-bit) address relocation is negative on amd64. · 66129835
      Shenghou Ma authored
      Update #7980
      This CL make the linker abort for the example program. For Go 1.4,
      we need to find a general way to handle large memory model programs.
      
      LGTM=dave, josharian, iant
      R=iant, dave, josharian
      CC=golang-codereviews
      https://golang.org/cl/91500046
      66129835
  2. 19 May, 2014 10 commits
  3. 17 May, 2014 2 commits
  4. 16 May, 2014 11 commits
  5. 15 May, 2014 11 commits
    • Shenghou Ma's avatar
      api: update next.txt · 74fe67f2
      Shenghou Ma authored
      LGTM=bradfitz
      R=golang-codereviews, bradfitz
      CC=golang-codereviews
      https://golang.org/cl/95490043
      74fe67f2
    • Russ Cox's avatar
      cmd/gc: fix two select temporary bugs · 1357f548
      Russ Cox authored
      The introduction of temporaries in order.c was not
      quite right for two corner cases:
      
      1) The rewrite that pushed new variables on the lhs of
      a receive into the body of the case was dropping the
      declaration of the variables. If the variables escape,
      the declaration is what allocates them.
      Caught by escape analysis sanity check.
      In fact the declarations should move into the body
      always, so that we only allocate if the corresponding
      case is selected. Do that. (This is an optimization that
      was already present in Go 1.2. The new order code just
      made it stop working.)
      
      Fixes #7997.
      
      2) The optimization to turn a single-recv select into
      an ordinary receive assumed it could take the address
      of the destination; not so if the destination is _.
      
      Fixes #7998.
      
      LGTM=iant
      R=golang-codereviews, iant
      CC=golang-codereviews
      https://golang.org/cl/100480043
      1357f548
    • Guillaume J. Charmes's avatar
      archive/tar: Do not panic on Read if uninitialized · 6d63d4f3
      Guillaume J. Charmes authored
      Calling tar.Reader.Read() used to work fine, but without this patch it panics.
      Simply return EOF to indicate the tar.Reader.Next() needs to be called.
      
      LGTM=iant, bradfitz
      R=golang-codereviews, bradfitz, iant, mikioh.mikioh, dominik.honnef
      CC=golang-codereviews
      https://golang.org/cl/94530043
      6d63d4f3
    • Mikio Hara's avatar
      api: update openbsd exceptions · 8c8c260d
      Mikio Hara authored
      This CL restores dropped constants not supported in OpenBSD 5.5
      and tris to keep the promise of API compatibility.
      
      Update #7049
      
      LGTM=jsing, bradfitz
      R=rsc, jsing, bradfitz
      CC=golang-codereviews
      https://golang.org/cl/94950043
      8c8c260d
    • Mikio Hara's avatar
      syscall: regenerate z-files for openbsd · 40e7f649
      Mikio Hara authored
      This CL restores dropped constants not supported in OpenBSD 5.5
      and tris to keep the promise of API compatibility.
      
      Update #7049
      
      LGTM=jsing, bradfitz, rsc
      R=rsc, jsing, robert.hencke, minux.ma, bradfitz, iant
      CC=golang-codereviews
      https://golang.org/cl/96970043
      40e7f649
    • Robert Griesemer's avatar
      container/heap: update example code · b2d1a2b5
      Robert Griesemer authored
      - use Init to establish heap invariant on
        a non-empty heap
      - use Fix to update heap after an element's
        properties have been changed
      
      (The old code used Init where it wasn't needed,
       and didn't use Fix because Fix was added after
       the example was written.)
      
      LGTM=bradfitz
      R=adonovan, bradfitz
      CC=golang-codereviews
      https://golang.org/cl/94520043
      b2d1a2b5
    • Russ Cox's avatar
      syscall: fix stack frame sizes in assembly · 7ad60b72
      Russ Cox authored
      for GOOS in darwin freebsd linux nacl netbsd openbsd plan9 solaris windows
      do
              for GOARCH in 386 amd64 amd64p32 arm
              do
                      go vet
              done
      done
      
      These are all real mistakes being corrected, but none
      of them should be able to cause problems today
      due to the NOSPLIT on the functions.
      
      However, vet has also identified a few important problems.
      I'm sending this CL to get rid of the trivial 'go vet' results
      before attacking the real ones.
      
      LGTM=r
      R=golang-codereviews, r, bradfitz
      CC=golang-codereviews
      https://golang.org/cl/95460046
      7ad60b72
    • Russ Cox's avatar
      sync/atomic: fix unimportant assembly errors found by go vet · 42ea2eda
      Russ Cox authored
      None of these are real bugs.
      The variable name in the reference is not semantically meaningful,
      except that 'go vet' will double check the offset against the name for you.
      
      The stack sizes being corrected really are incorrect but they are also
      in NOSPLIT functions so they typically don't matter.
      
      Found by vet.
      
      GOOS=linux GOARCH=amd64 go vet sync/atomic
      GOOS=linux GOARCH=amd64p32 go vet sync/atomic
      GOOS=linux GOARCH=386 go vet sync/atomic
      GOOS=linux GOARCH=arm go vet sync/atomic
      GOOS=freebsd GOARCH=arm go vet sync/atomic
      GOOS=netbsd GOARCH=arm go vet sync/atomic
      
      LGTM=r
      R=r, bradfitz
      CC=golang-codereviews
      https://golang.org/cl/100500043
      42ea2eda
    • Russ Cox's avatar
      doc/go1.3.html: add note about unsafe.Pointer strictness · 208a1ea5
      Russ Cox authored
      The vet check is in CL 10470044.
      
      LGTM=bradfitz, r
      R=r, bradfitz
      CC=golang-codereviews
      https://golang.org/cl/91480044
      208a1ea5
    • Russ Cox's avatar
      runtime: make scan of pointer-in-interface same as scan of pointer · 68aaf2cc
      Russ Cox authored
      The GC program describing a data structure sometimes trusts the
      pointer base type and other times does not (if not, the garbage collector
      must fall back on per-allocation type information stored in the heap).
      Make the scanning of a pointer in an interface do the same.
      This fixes a crash in a particular use of reflect.SliceHeader.
      
      Fixes #8004.
      
      LGTM=khr
      R=golang-codereviews, khr
      CC=0xe2.0x9a.0x9b, golang-codereviews, iant, r
      https://golang.org/cl/100470045
      68aaf2cc
    • Mikio Hara's avatar
      net/http: fix nits found by go tool vet · 27b98974
      Mikio Hara authored
      LGTM=ruiu
      R=golang-codereviews, ruiu
      CC=golang-codereviews
      https://golang.org/cl/91480043
      27b98974