]> Cypherpunks repositories - gostls13.git/log
gostls13.git
10 years agocmd/ld: don't add line number info for the final address of an FDE
Ian Lance Taylor [Wed, 8 Oct 2014 23:17:34 +0000 (16:17 -0700)]
cmd/ld: don't add line number info for the final address of an FDE

This makes dwardump --verify happy.

Update #8846

LGTM=r
R=golang-codereviews, r
CC=golang-codereviews
https://golang.org/cl/150370043

10 years agoreflect: add direct call tests to TestMakeFuncVariadic
Michael Hudson-Doyle [Wed, 8 Oct 2014 22:58:56 +0000 (15:58 -0700)]
reflect: add direct call tests to TestMakeFuncVariadic

TestMakeFuncVariadic only called the variadic function via Call and
CallSlice, not via a direct function call.

I thought these tests would fail under gccgo tip, but they don't.  Still seems worth having though.

LGTM=iant
R=golang-codereviews, gobot, iant
CC=golang-codereviews
https://golang.org/cl/152060043

10 years agoruntime: delay freeing of shrunk stacks until gc is done.
Keith Randall [Wed, 8 Oct 2014 22:57:20 +0000 (15:57 -0700)]
runtime: delay freeing of shrunk stacks until gc is done.

This change prevents confusion in the garbage collector.
The collector wants to make sure that every pointer it finds
isn't junk.  Its criteria for junk is (among others) points
to a "free" span.

Because the stack shrinker modifies pointers in the heap,
there is a race condition between the GC scanner and the
shrinker.  The GC scanner can see old pointers (pointers to
freed stacks).  In particular this happens with SudoG.elem
pointers.

Normally this is not a problem, as pointers into stack spans
are ok.  But if the freed stack is the last one in its span,
the span is marked as "free" instead of "contains stacks".

This change makes sure that even if the GC scanner sees
an old pointer, the span into which it points is still
marked as "contains stacks", and thus the GC doesn't
complain about it.

This change will make the GC pause a tiny bit slower, as
the stack freeing now happens in serial with the mark pause.
We could delay the freeing until the mutators start back up,
but this is the simplest change for now.

TBR=dvyukov
CC=golang-codereviews
https://golang.org/cl/158750043

10 years agoreflect: add tests for variadic method calls
Ian Lance Taylor [Wed, 8 Oct 2014 22:48:46 +0000 (15:48 -0700)]
reflect: add tests for variadic method calls

These tests fail when using gccgo.  In gccgo using Interface
on the value of a method function is implemented using a
variant of MakeFunc.  That approach did not correctly handle
variadic functions.

LGTM=r
R=golang-codereviews, r
CC=golang-codereviews
https://golang.org/cl/151280043

10 years agoA+C: Ron Hashimoto (individual CLA)
Ian Lance Taylor [Wed, 8 Oct 2014 14:10:04 +0000 (07:10 -0700)]
A+C: Ron Hashimoto (individual CLA)

Generated by a+c.

R=gobot
CC=golang-codereviews
https://golang.org/cl/153240043

10 years agoruntime: faster GC scan
Dmitriy Vyukov [Wed, 8 Oct 2014 09:51:12 +0000 (13:51 +0400)]
runtime: faster GC scan
The change contains 3 spot optimizations to scan loop:
1. Don't use byte vars, use uintptr's instead.
This seems to alleviate some codegen issue,
and alone accounts to a half of speedup.
2. Remove bitmap cache. Currently we cache only 1 byte,
so caching is not particularly effective anyway.
Removal of the cache simplifies code and positively affects regalloc.
3. Replace BitsMultiword switch with if and
do debug checks only in Debug mode.
I've benchmarked changes separately and ensured that
each of them provides speedup on top of the previous one.
This change as a whole fixes the unintentional regressions
of scan loop that were introduced during development cycle.
Fixes #8625.
Fixes #8565.

On go.benchmarks/garbage benchmark:
GOMAXPROCS=1
time: -3.13%
cputime: -3.22%
gc-pause-one: -15.71%
gc-pause-total: -15.71%

GOMAXPROCS=32
time: -1.96%
cputime: -4.43%
gc-pause-one: -6.22%
gc-pause-total: -6.22%

LGTM=khr, rsc
R=golang-codereviews, khr
CC=golang-codereviews, rlh, rsc
https://golang.org/cl/153990043

10 years agoruntime: clear Defer.fn before removing from the G.defer list
Russ Cox [Wed, 8 Oct 2014 04:03:50 +0000 (00:03 -0400)]
runtime: clear Defer.fn before removing from the G.defer list

Should fix the remaining 'invalid heap pointer' build failures.

TBR=khr
CC=golang-codereviews
https://golang.org/cl/152360043

10 years agoruntime: fix windows/amd64 build
Russ Cox [Wed, 8 Oct 2014 03:39:00 +0000 (23:39 -0400)]
runtime: fix windows/amd64 build

Out of stack space due to new 2-word call in freedefer.
Go back to smaller function calls.

TBR=brainman
CC=golang-codereviews
https://golang.org/cl/152340043

10 years agoruntime: change Windows M.thread from void* to uintptr
Russ Cox [Wed, 8 Oct 2014 03:27:25 +0000 (23:27 -0400)]
runtime: change Windows M.thread from void* to uintptr

It appears to be an opaque bit pattern more than a pointer.
The Go garbage collector has discovered that for m0
it is set to 0x4c.

Should fix Windows build.

TBR=brainman
CC=golang-codereviews
https://golang.org/cl/149640043

10 years agoruntime: clear Defer.panic before removing from G.defer list
Russ Cox [Wed, 8 Oct 2014 03:17:31 +0000 (23:17 -0400)]
runtime: clear Defer.panic before removing from G.defer list

Another dangling stack pointer in a cached structure.
Same as SudoG.elem and SudoG.selectdone.

Definitely a fix, and the new test in freedefer makes the
crash reproducible, but probably not a complete fix.
I have seen one dangling pointer in a Defer.panic even
after this fix; I cannot see where it could be coming from.

I think this will fix the solaris build.
I do not think this will fix the occasional failure on the darwin build.

TBR=khr
R=khr
CC=golang-codereviews
https://golang.org/cl/155080043

10 years agonet/rpc: listen on localhost, let kernel pick port
Russ Cox [Wed, 8 Oct 2014 03:08:07 +0000 (23:08 -0400)]
net/rpc: listen on localhost, let kernel pick port

This avoids a pop-up box on OS X and it avoids
a test failure if something is using 5555.
I apologize for not noticing this during the review.

TBR=r
CC=golang-codereviews
https://golang.org/cl/152320044

10 years agodoc: use "keyed" instead of "tagged" in Go 1 compatibility doc
Andrew Gerrand [Wed, 8 Oct 2014 02:23:05 +0000 (13:23 +1100)]
doc: use "keyed" instead of "tagged" in Go 1 compatibility doc

LGTM=bradfitz, r
R=r, bradfitz
CC=golang-codereviews
https://golang.org/cl/156730043

10 years agocmd/go: add ImportComment to Package struct
Andrew Gerrand [Wed, 8 Oct 2014 02:22:31 +0000 (13:22 +1100)]
cmd/go: add ImportComment to Package struct

It seems reasonable that people might want to look up the
ImportComment with "go list".

LGTM=r
R=golang-codereviews, r
CC=golang-codereviews
https://golang.org/cl/143600043

10 years agoruntime: zero pointer-looking scalararg values
Keith Randall [Tue, 7 Oct 2014 22:21:00 +0000 (15:21 -0700)]
runtime: zero pointer-looking scalararg values

I have a CL which at every gc looks through data and bss
sections for nonpointer data (according to gc maps) that
looks like a pointer.  These are potential missing roots.

The only thing it finds are begnign, storing stack pointers
into m0.scalararg[1] and never cleaning them up.  Let's
clean them up now so the test CL passes all.bash cleanly.

The test CL can't be checked in because we might store
pointer-looking things in nonpointer data by accident.

LGTM=iant
R=golang-codereviews, iant, khr
CC=golang-codereviews
https://golang.org/cl/153210043

10 years agoruntime: update heap dump format for 1.4
Keith Randall [Tue, 7 Oct 2014 20:36:16 +0000 (13:36 -0700)]
runtime: update heap dump format for 1.4

We no longer have full type information in the heap, so
we can't dump that any more.  Instead we dump ptr/noptr
maps so at least we can compute graph connectivity.

In addition, we still dump Iface/Eface types so together
with dwarf type info we might be able to reconstruct
types of most things in the heap.

LGTM=dvyukov
R=golang-codereviews, dvyukov, rsc, khr
CC=golang-codereviews
https://golang.org/cl/155940043

10 years agoruntime: fix _cgo_allocate(0)
Russ Cox [Tue, 7 Oct 2014 20:27:40 +0000 (16:27 -0400)]
runtime: fix _cgo_allocate(0)

Fixes a SWIG bug reported off-list.

LGTM=iant
R=iant
CC=golang-codereviews
https://golang.org/cl/155990043

10 years agomath/big: fix doc comments
Robert Griesemer [Tue, 7 Oct 2014 17:56:58 +0000 (10:56 -0700)]
math/big: fix doc comments

Fixes #8904.

TBR=iant
R=iant
CC=golang-codereviews
https://golang.org/cl/148650043

10 years agonet/rpc: add test for issue 7689 (gob error should cause EOF)
Rob Pike [Tue, 7 Oct 2014 17:52:16 +0000 (10:52 -0700)]
net/rpc: add test for issue 7689 (gob error should cause EOF)
Helpfully supplied by tommi.virtanen in issue 8173.

LGTM=rsc
R=golang-codereviews, rsc
CC=golang-codereviews
https://golang.org/cl/151370043

10 years agocmd/5c, cmd/6c, cmd/8c: make failure to optimize fatal
Russ Cox [Tue, 7 Oct 2014 16:07:40 +0000 (12:07 -0400)]
cmd/5c, cmd/6c, cmd/8c: make failure to optimize fatal

LGTM=bradfitz, dave, r
R=r, bradfitz, dave
CC=golang-codereviews
https://golang.org/cl/152250044

10 years agocmd/gc: fix print format
Russ Cox [Tue, 7 Oct 2014 16:03:48 +0000 (12:03 -0400)]
cmd/gc: fix print format

Fixes 386 build.

TBR=r
CC=golang-codereviews
https://golang.org/cl/149620043

10 years agoruntime: crash if we see an invalid pointer into GC arena
Russ Cox [Tue, 7 Oct 2014 15:07:18 +0000 (11:07 -0400)]
runtime: crash if we see an invalid pointer into GC arena

This will help find bugs during the release freeze.
It's not clear it should be kept for the release itself.
That's issue 8861.

The most likely thing that would trigger this is stale
pointers that previously were ignored or caused memory
leaks. These were allowed due to the use of conservative
collection. Now that everything is precise, we should not
see them anymore.

The small number check reinforces what the stack copier
is already doing, catching the storage of integers in pointers.
It caught issue 8864.

The check is disabled if _cgo_allocate is linked into the binary,
which is to say if the binary is using SWIG to allocate untyped
Go memory. In that case, there are invalid pointers and there's
nothing we can do about it.

LGTM=rlh
R=golang-codereviews, dvyukov, rlh
CC=golang-codereviews, iant, khr, r
https://golang.org/cl/148470043

10 years agoencoding/json: fix handling of null with ,string fields
Russ Cox [Tue, 7 Oct 2014 15:07:04 +0000 (11:07 -0400)]
encoding/json: fix handling of null with ,string fields

Fixes #8587.

LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews, iant, r
https://golang.org/cl/152270044

10 years agoruntime: remove type-punning for Type.gc[0], gc[1]
Russ Cox [Tue, 7 Oct 2014 15:06:51 +0000 (11:06 -0400)]
runtime: remove type-punning for Type.gc[0], gc[1]

Depending on flags&KindGCProg,
gc[0] and gc[1] are either pointers or inlined bitmap bits.
That's not compatible with a precise garbage collector:
it needs to be always pointers or never pointers.

Change the inlined bitmap case to store a pointer to an
out-of-line bitmap in gc[0]. The out-of-line bitmaps are
dedup'ed, so that for example all pointer types share the
same out-of-line bitmap.

Fixes #8864.

LGTM=r
R=golang-codereviews, dvyukov, r
CC=golang-codereviews, iant, khr, rlh
https://golang.org/cl/155820043

10 years agonet/http: fix authentication info leakage in Referer header (potential security risk)
Jens Frederich [Tue, 7 Oct 2014 14:13:42 +0000 (07:13 -0700)]
net/http: fix authentication info leakage in Referer header (potential security risk)

http.Client calls URL.String() to fill in the Referer header, which may
contain authentication info. This patch removes authentication info from
the Referer header without introducing any API changes.

A new test for net/http is also provided.

This is the polished version of Alberto GarcĂ­a Hierro's
https://golang.org/cl/9766046/

It should handle https Referer right.

Fixes #8417

LGTM=bradfitz
R=golang-codereviews, gobot, bradfitz, mikioh.mikioh
CC=golang-codereviews
https://golang.org/cl/151430043

10 years agodoc/go1.4.txt: useless change to tickle builders
Brad Fitzpatrick [Tue, 7 Oct 2014 05:22:47 +0000 (22:22 -0700)]
doc/go1.4.txt: useless change to tickle builders

Debugging the builders and need a commit to make them run.

R=adg
CC=golang-codereviews
https://golang.org/cl/149600043

10 years agocmd/ld: ignore .Linfo_stringNN variables in clang .o files
Russ Cox [Tue, 7 Oct 2014 00:51:05 +0000 (20:51 -0400)]
cmd/ld: ignore .Linfo_stringNN variables in clang .o files

http://build.golang.org/log/c7a91b6eac8f8daa2bd17801be273e58403a15f2

# cmd/pprof
/linux-386-clang-9115aad1dc4a/go/pkg/linux_386/net.a(_all.o): sym#16: ignoring .Linfo_string0 in section 16 (type 0)
/linux-386-clang-9115aad1dc4a/go/pkg/linux_386/net.a(_all.o): sym#17: ignoring .Linfo_string1 in section 16 (type 0)
/linux-386-clang-9115aad1dc4a/go/pkg/linux_386/net.a(_all.o): sym#18: ignoring .Linfo_string2 in section 16 (type 0)
/linux-386-clang-9115aad1dc4a/go/pkg/linux_386/net.a(_all.o): sym#20: ignoring .Linfo_string0 in section 16 (type 0)
/linux-386-clang-9115aad1dc4a/go/pkg/linux_386/net.a(_all.o): sym#21: ignoring .Linfo_string1 in section 16 (type 0)
...

I don't know what these are. Let's ignore them and see if we get any further.

TBR=iant
CC=golang-codereviews
https://golang.org/cl/155030043

10 years agoos, syscall: test Chtimes on directories, fix on Windows
Russ Cox [Mon, 6 Oct 2014 23:22:48 +0000 (19:22 -0400)]
os, syscall: test Chtimes on directories, fix on Windows

Fixes #8090.

LGTM=alex.brainman
R=alex.brainman
CC=golang-codereviews
https://golang.org/cl/154020043

10 years agostrings: use fast path for IndexRune
Brad Fitzpatrick [Mon, 6 Oct 2014 22:10:51 +0000 (15:10 -0700)]
strings: use fast path for IndexRune

Noticed while reviewing https://golang.org/cl/147690043/

I'd never seen anybody use IndexRune before, and
unsurprisingly it doesn't use the other fast paths in the
strings/bytes packages. IndexByte uses assembly.

Also, less code this way.

LGTM=r
R=r
CC=golang-codereviews
https://golang.org/cl/147700043

10 years agogo/build: update docs for GOOS.go change
Brad Fitzpatrick [Mon, 6 Oct 2014 22:08:31 +0000 (15:08 -0700)]
go/build: update docs for GOOS.go change

Forgotten in https://golang.org/cl/147690043/

Update #8838

LGTM=r
R=r
CC=golang-codereviews, rsc
https://golang.org/cl/152220045

10 years agodoc/go1.4.txt: GOOS suffixes require underscores to act as build tags
Rob Pike [Mon, 6 Oct 2014 21:58:59 +0000 (14:58 -0700)]
doc/go1.4.txt: GOOS suffixes require underscores to act as build tags

CC=golang-codereviews
https://golang.org/cl/151490043

10 years agogo/build: do not consider "android.go" to be android-specific
Rob Pike [Mon, 6 Oct 2014 21:50:58 +0000 (14:50 -0700)]
go/build: do not consider "android.go" to be android-specific
A file name must have a non-empty underscore-separated
prefix before its suffix matches GOOS. This is what the
documentation already said but is not what the code did.

Fixes #8838.

This needs to be called out in the release notes.
The he single affected file
        code.google.com/p/go.text/collate/tools/colcmp/darwin.go
could use a renaming but works because it has a build tag inside.

LGTM=adg, rsc
R=golang-codereviews, adg, rsc
CC=golang-codereviews
https://golang.org/cl/147690043

10 years agocmd/gc: prohibit short variable declarations containing duplicate symbols
Evan Kroske [Mon, 6 Oct 2014 21:16:39 +0000 (17:16 -0400)]
cmd/gc: prohibit short variable declarations containing duplicate symbols

Fixes #6764.
Fixes #8435.

LGTM=rsc
R=golang-codereviews, r, gobot, rsc
CC=golang-codereviews
https://golang.org/cl/116440046

10 years agoos: recomment MkdirAll
Russ Cox [Mon, 6 Oct 2014 19:49:33 +0000 (15:49 -0400)]
os: recomment MkdirAll

The internal comments are not completely precise about
what is going on, and they are causing confusion.

Fixes #8283.

LGTM=r
R=r
CC=golang-codereviews
https://golang.org/cl/151460043

10 years agoos: make Process.Signal 'process finished' error consistent on Unix
Russ Cox [Mon, 6 Oct 2014 19:49:19 +0000 (15:49 -0400)]
os: make Process.Signal 'process finished' error consistent on Unix

While we're here, fix the implementation of Release on both
Unix and Windows: Release is supposed to make Signal an error.

While we're here, make sure we never Signal pid 0.
(Don't try this at home.)

Fixes #7658.

LGTM=r
R=golang-codereviews, r
CC=golang-codereviews, iant
https://golang.org/cl/152240043

10 years agonet/url: document result of String
Russ Cox [Mon, 6 Oct 2014 19:49:07 +0000 (15:49 -0400)]
net/url: document result of String

Fixes #8742.

LGTM=bradfitz
R=golang-codereviews
CC=adg, bradfitz, golang-codereviews, iant
https://golang.org/cl/155910043

10 years agoencoding/json: document that embedded interfaces look like non-embedded ones
Russ Cox [Mon, 6 Oct 2014 19:48:17 +0000 (15:48 -0400)]
encoding/json: document that embedded interfaces look like non-embedded ones

Fixes #8386.

LGTM=r
R=golang-codereviews, r
CC=golang-codereviews, iant
https://golang.org/cl/149570043

10 years agoregexp/syntax: regenerate doc.go from re2 syntax
Russ Cox [Mon, 6 Oct 2014 19:32:11 +0000 (15:32 -0400)]
regexp/syntax: regenerate doc.go from re2 syntax

Generated using re2/doc/mksyntaxgo.

Fixes #8505.

LGTM=iant
R=r, iant
CC=golang-codereviews
https://golang.org/cl/155890043

10 years agocmd/go: fix 'go vet' of package with external tests
Russ Cox [Mon, 6 Oct 2014 18:49:22 +0000 (14:49 -0400)]
cmd/go: fix 'go vet' of package with external tests

For example, fixes 'go vet syscall', which has source
files in package syscall_test.

Fixes #8511.

LGTM=r
R=golang-codereviews, r
CC=golang-codereviews, iant
https://golang.org/cl/152220044

10 years agoruntime: update docs, code for SetFinalizer
Russ Cox [Mon, 6 Oct 2014 18:18:09 +0000 (14:18 -0400)]
runtime: update docs, code for SetFinalizer

At last minute before 1.3 we relaxed SetFinalizer to avoid
crashes when you pass the result of a global alloc to it.
This avoids the crash but makes SetFinalizer a bit too relaxed.

Document that the finalizer of a global allocation may not run.

Tighten the SetFinalizer check to ignore a global allocation but
not ignore everything else.

Fixes #7656.

LGTM=r, iant
R=golang-codereviews, iant, r
CC=dvyukov, golang-codereviews, khr, rlh
https://golang.org/cl/145930043

10 years agocmd/8l: accept R_386_GOT32 in push instruction
Russ Cox [Mon, 6 Oct 2014 18:17:48 +0000 (14:17 -0400)]
cmd/8l: accept R_386_GOT32 in push instruction

Fixes #8382.

LGTM=iant
R=iant
CC=golang-codereviews
https://golang.org/cl/149540045

10 years agoA+C: Jens Frederich (individual CLA)
Brad Fitzpatrick [Mon, 6 Oct 2014 17:41:24 +0000 (10:41 -0700)]
A+C: Jens Frederich (individual CLA)

Generated by a+c.

R=gobot
CC=golang-codereviews
https://golang.org/cl/151450043

10 years agonet: disable TestDualStackUDPListener in short mode
Russ Cox [Mon, 6 Oct 2014 17:09:14 +0000 (13:09 -0400)]
net: disable TestDualStackUDPListener in short mode

This test is flaky, just like TestDualStackTCPListener.
That one was disabled. Disable this one too.

Update #5001

LGTM=bradfitz
R=rlh, bradfitz
CC=golang-codereviews
https://golang.org/cl/154950043

10 years agosyscall: another attempt to keep windows syscall pointers live
Alex Brainman [Sun, 5 Oct 2014 02:15:13 +0000 (13:15 +1100)]
syscall: another attempt to keep windows syscall pointers live

This approach was suggested in
https://golang.org/cl/138250043/#msg15.
Unlike current version of mksyscall_windows.go,
new code could be used in go.sys and other external
repos without help from asm.

LGTM=iant
R=golang-codereviews, iant, r
CC=golang-codereviews
https://golang.org/cl/143160046

10 years agodoc/go1.4: document memory consumption reduction
Dmitriy Vyukov [Sat, 4 Oct 2014 08:02:04 +0000 (12:02 +0400)]
doc/go1.4: document memory consumption reduction

R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/149370043

10 years agodoc/go1.4.txt: fmt: document printing of &map rather than just pointer
Rob Pike [Sat, 4 Oct 2014 03:30:06 +0000 (20:30 -0700)]
doc/go1.4.txt: fmt: document printing of &map rather than just pointer

CC=golang-codereviews
https://golang.org/cl/152160043

10 years agofmt: print &map like &slice and &struct
Rob Pike [Sat, 4 Oct 2014 03:27:08 +0000 (20:27 -0700)]
fmt: print &map like &slice and &struct
It was inconsistent.
Also test these better.
Also document the default format for types.
This wasn't written down.

Fixes #8470.

LGTM=iant
R=golang-codereviews, iant
CC=golang-codereviews
https://golang.org/cl/154870043

10 years agodoc/go1.4: mention that we are going to need a new version of SWIG
Ian Lance Taylor [Sat, 4 Oct 2014 01:12:05 +0000 (18:12 -0700)]
doc/go1.4: mention that we are going to need a new version of SWIG

Update #8750

CC=golang-codereviews
https://golang.org/cl/153950044

10 years agocrypto/x509: add OpenELEC system root location.
Dave Cheney [Fri, 3 Oct 2014 22:09:39 +0000 (08:09 +1000)]
crypto/x509: add OpenELEC system root location.

Fixes #8349.

LGTM=rsc
R=rsc
CC=golang-codereviews
https://golang.org/cl/147320043

10 years agomisc/cgo/test: fail issue 7978 with clearer error when GOTRACEBACK != 2
Russ Cox [Fri, 3 Oct 2014 20:42:18 +0000 (16:42 -0400)]
misc/cgo/test: fail issue 7978 with clearer error when GOTRACEBACK != 2

The test doesn't work with GOTRACEBACK != 2.
Diagnose that failure mode.

LGTM=iant
R=golang-codereviews, iant
CC=golang-codereviews, r
https://golang.org/cl/152970043

10 years agofmt: part 2 of the great flag rebuild: make %+v work in formatters
Rob Pike [Fri, 3 Oct 2014 20:23:35 +0000 (13:23 -0700)]
fmt: part 2 of the great flag rebuild: make %+v work in formatters
Apply a similar transformation to %+v that we did to %#v, making it
a top-level setting separate from the + flag itself. This fixes the
appearance of flags in Formatters and cleans up the code too,
probably making it a little faster.

Fixes #8835.

LGTM=iant
R=golang-codereviews, iant
CC=golang-codereviews
https://golang.org/cl/154820043

10 years agoruntime: clear sg.selectdone before saving in SudoG cache
Russ Cox [Fri, 3 Oct 2014 19:33:29 +0000 (15:33 -0400)]
runtime: clear sg.selectdone before saving in SudoG cache

Removes another dangling pointer that might
cause a memory leak in 1.4 or crash the GC in 1.5.

LGTM=rlh
R=golang-codereviews
CC=golang-codereviews, iant, khr, r, rlh
https://golang.org/cl/150520043

10 years agoruntime: clear stale values from G.param and SudoG.elem
Russ Cox [Fri, 3 Oct 2014 17:36:48 +0000 (13:36 -0400)]
runtime: clear stale values from G.param and SudoG.elem

This change was necessary on the dev.garbage branch
to keep the garbage collector from seeing pointers into
invalid heap areas.

On this default (Go 1.4) branch, the change removes
some possibility for memory leaks.

LGTM=khr
R=golang-codereviews, khr
CC=golang-codereviews, iant, r, rlh
https://golang.org/cl/155760043

10 years agocmd/cc, runtime: disallow structs without tags
Russ Cox [Fri, 3 Oct 2014 16:44:20 +0000 (12:44 -0400)]
cmd/cc, runtime: disallow structs without tags

Structs without tags have no unique name to use in the
Go definitions generated from the C types.
This caused issue 8812, fixed by CL 149260043.
Avoid future problems by requiring struct tags.

Update runtime as needed.
(There is no other C code in the tree.)

LGTM=bradfitz, iant
R=golang-codereviews, bradfitz, dave, iant
CC=golang-codereviews, khr, r
https://golang.org/cl/150360043

10 years agoundo CL 138250043 / 4eda5e4001fd
Alex Brainman [Fri, 3 Oct 2014 00:36:54 +0000 (10:36 +1000)]
undo CL 138250043 / 4eda5e4001fd

I will use different approach to solve this problem.
See CL 143160046 for details.

««« original CL description
syscall: keep Windows syscall pointers live too

Like https://golang.org/cl/139360044

LGTM=rsc, alex.brainman
R=alex.brainman, rsc
CC=golang-codereviews
https://golang.org/cl/138250043
»»»

LGTM=r
R=golang-codereviews, bradfitz, r
CC=golang-codereviews
https://golang.org/cl/147440043

10 years agofmt: make the %#v verb a special flag
Rob Pike [Thu, 2 Oct 2014 21:16:58 +0000 (14:16 -0700)]
fmt: make the %#v verb a special flag
The %#v verb is special: it says all values below need to print as %#v.
However, for some situations the # flag has other meanings and this
causes some issues, particularly in how Formatters work. Since %#v
dominates all formatting, translate it into actual state of the formatter
and decouple it from the # flag itself within the calculations (although
it must be restored when methods are doing the work.)
The result is cleaner code and correct handling of # for Formatters.
TODO: Apply the same thinking to the + flag in a followup CL.

Also, the wasString return value in handleMethods is always false,
so eliminate it.

Update #8835

LGTM=iant
R=golang-codereviews, iant
CC=golang-codereviews
https://golang.org/cl/146650043

10 years agomath/big: math.Exp should return result >= 0 for |m| > 0
Robert Griesemer [Thu, 2 Oct 2014 20:02:25 +0000 (13:02 -0700)]
math/big: math.Exp should return result >= 0 for |m| > 0

The documentation states that Exp(x, y, m)
computes x**y mod |m| for m != nil && m > 0.
In math.big, Mod is the Euclidean modulus,
which is always >= 0.

Fixes #8822.

LGTM=agl, r, rsc
R=agl, r, rsc
CC=golang-codereviews
https://golang.org/cl/145650043

10 years agoencoding/binary: fix error message
Robert Griesemer [Thu, 2 Oct 2014 19:53:51 +0000 (12:53 -0700)]
encoding/binary: fix error message

In the process, simplified internal sizeOf and
dataSize functions. Minor positive impact on
performance. Added test case.

benchmark                         old ns/op     new ns/op     delta
BenchmarkReadSlice1000Int32s      14006         14122         +0.83%
BenchmarkReadStruct               2508          2447          -2.43%
BenchmarkReadInts                 921           928           +0.76%
BenchmarkWriteInts                2086          2081          -0.24%
BenchmarkWriteSlice1000Int32s     13440         13497         +0.42%
BenchmarkPutUvarint32             28.5          26.3          -7.72%
BenchmarkPutUvarint64             81.3          76.7          -5.66%

benchmark                         old MB/s     new MB/s     speedup
BenchmarkReadSlice1000Int32s      285.58       283.24       0.99x
BenchmarkReadStruct               27.90        28.60        1.03x
BenchmarkReadInts                 32.57        32.31        0.99x
BenchmarkWriteInts                14.38        14.41        1.00x
BenchmarkWriteSlice1000Int32s     297.60       296.36       1.00x
BenchmarkPutUvarint32             140.55       151.92       1.08x
BenchmarkPutUvarint64             98.36        104.33       1.06x

Fixes #6818.

LGTM=r
R=r
CC=golang-codereviews
https://golang.org/cl/149290045

10 years agosyscall: support UID/GID map files for Linux user namespaces
Mrunal Patel [Thu, 2 Oct 2014 18:37:06 +0000 (11:37 -0700)]
syscall: support UID/GID map files for Linux user namespaces

Fixes #8447.

LGTM=iant
R=golang-codereviews, bradfitz, iant
CC=golang-codereviews
https://golang.org/cl/126190043

10 years agoA+C: add Mrunal Patel (Red Hat corporate CLA)
Ian Lance Taylor [Thu, 2 Oct 2014 18:36:39 +0000 (11:36 -0700)]
A+C: add Mrunal Patel (Red Hat corporate CLA)

LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/152010043

10 years agosyscall: fix Setenv for plan 9
Nicolas Owens [Thu, 2 Oct 2014 08:25:56 +0000 (10:25 +0200)]
syscall: fix Setenv for plan 9

envi needs to be updated during Setenv so the key can be correctly deleted later with Unsetenv.

Update #8849.

LGTM=0intro
R=bradfitz, 0intro
CC=golang-codereviews
https://golang.org/cl/149300046

10 years agorun.bat: comment text properly
Alex Brainman [Thu, 2 Oct 2014 06:15:36 +0000 (16:15 +1000)]
run.bat: comment text properly

LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/153830044

10 years agotime: A Timer must be properly created before use (documentation).
Robert Griesemer [Wed, 1 Oct 2014 23:44:52 +0000 (16:44 -0700)]
time: A Timer must be properly created before use (documentation).

Fixes #8776.

LGTM=bradfitz
R=rsc, bradfitz
CC=golang-codereviews
https://golang.org/cl/145710043

10 years agoencoding/json: don't panic on incorrect map argument
Robert Griesemer [Wed, 1 Oct 2014 23:24:17 +0000 (16:24 -0700)]
encoding/json: don't panic on incorrect map argument

Fixes #8305.

LGTM=rsc
R=rsc
CC=golang-codereviews
https://golang.org/cl/145680044

10 years agoencoding/binary: slightly better documentation
Robert Griesemer [Wed, 1 Oct 2014 23:09:55 +0000 (16:09 -0700)]
encoding/binary: slightly better documentation

Fixes #7306.

LGTM=r
R=r
CC=golang-codereviews
https://golang.org/cl/153820044

10 years agodoc/go_faq.html: explain the policy about unused imports a little better
Rob Pike [Wed, 1 Oct 2014 22:25:56 +0000 (15:25 -0700)]
doc/go_faq.html: explain the policy about unused imports a little better
This new text won't stop the whining but it might focus the whining a little more.

LGTM=adg
R=golang-codereviews, adg
CC=golang-codereviews
https://golang.org/cl/146680044

10 years agofmt: fix internal unknownType function
Rob Pike [Wed, 1 Oct 2014 21:35:12 +0000 (21:35 +0000)]
fmt: fix internal unknownType function
This thing should never be called, but before
151960044 it was being called, incorrectly.
This is now just a precaution but let's pretend it
Fixes #8843
even though that was fixed by 151960044.
The test case was already there and ran, another mystery.

LGTM=rsc
R=rsc
CC=golang-codereviews
https://golang.org/cl/151970043

10 years agoreflect: fix IsValid vs Kind mismatch after Elem of nil interface
Russ Cox [Wed, 1 Oct 2014 20:51:32 +0000 (16:51 -0400)]
reflect: fix IsValid vs Kind mismatch after Elem of nil interface

LGTM=r
R=r
CC=golang-codereviews
https://golang.org/cl/151960044

10 years agotesting: clearer comment
Robert Griesemer [Wed, 1 Oct 2014 20:19:40 +0000 (13:19 -0700)]
testing: clearer comment

Fixes #8797.

LGTM=r
R=r
CC=golang-codereviews
https://golang.org/cl/146680043

10 years agonet/rpc: shut down connection if gob has error
Rob Pike [Wed, 1 Oct 2014 20:18:44 +0000 (13:18 -0700)]
net/rpc: shut down connection if gob has error
The nicest solution would be to buffer the message and only write
it if it encodes correctly, but that adds considerable memory and
CPU overhead for a very rare condition. Instead, we just shut
down the connection if this happens.
Fixes #7689.

LGTM=rsc
R=rsc
CC=golang-codereviews
https://golang.org/cl/146670043

10 years agoos, syscall: add Unsetenv
Brad Fitzpatrick [Wed, 1 Oct 2014 18:17:15 +0000 (11:17 -0700)]
os, syscall: add Unsetenv

Also address a TODO, making Clearenv pass through to cgo.

Based largely on Minux's earlier https://golang.org/cl/82040044

Fixes #6423

LGTM=iant, alex.brainman, r, rsc
R=rsc, iant, r, alex.brainman
CC=golang-codereviews
https://golang.org/cl/148370043

10 years agotag go1.3.3
Andrew Gerrand [Wed, 1 Oct 2014 03:38:00 +0000 (13:38 +1000)]
tag go1.3.3

LGTM=crawshaw
R=golang-codereviews, crawshaw
CC=golang-codereviews
https://golang.org/cl/146610043

10 years agomisc/nacl/README: fix typo
Mikio Hara [Wed, 1 Oct 2014 00:16:55 +0000 (09:16 +0900)]
misc/nacl/README: fix typo

LGTM=dave
R=golang-codereviews, dave
CC=golang-codereviews
https://golang.org/cl/151870043

10 years agodoc: document go1.3.3
Andrew Gerrand [Tue, 30 Sep 2014 22:30:51 +0000 (08:30 +1000)]
doc: document go1.3.3

LGTM=r
R=r
CC=golang-codereviews
https://golang.org/cl/149280044

10 years agox509: Fixed ASN.1 encoding in CRL Distribution Points extension
Paul van Brouwershaven [Tue, 30 Sep 2014 20:38:48 +0000 (13:38 -0700)]
x509: Fixed ASN.1 encoding in CRL Distribution Points extension

The ASN.1 encoding of the CRL Distribution Points extension showed an invalid false 'IsCompound' which caused a display problem in the Windows certificate viewer.

LGTM=agl
R=agl
CC=golang-codereviews
https://golang.org/cl/143320043

10 years agocmd/cgo: add missing ast.SliceExpr.Max case to AST traversal.
Alan Donovan [Tue, 30 Sep 2014 20:08:04 +0000 (16:08 -0400)]
cmd/cgo: add missing ast.SliceExpr.Max case to AST traversal.

+ static test

NB: there's a preexisting (dynamic) failure of test issue7978.go.

LGTM=iant
R=rsc, iant
CC=golang-codereviews
https://golang.org/cl/144650045

10 years agogo/format, cmd/gofmt: added missing comments, minor internal cleanup
Robert Griesemer [Tue, 30 Sep 2014 19:26:38 +0000 (12:26 -0700)]
go/format, cmd/gofmt: added missing comments, minor internal cleanup

This is a minor cleanup following CL 142360043:

The internal parse and format functions in both packages
were almost identical - made them identical by adding an
extra parameter, and documented them as identical.

Eventually we should find a nice way to factor these functions
out, but we cannot do this now while in prep for 1.4.

No functionality change.

LGTM=adonovan
R=adonovan
CC=golang-codereviews
https://golang.org/cl/146520043

10 years agonet/http/httputil: ensure DumpRequestOut dumps all of Body
Brad Fitzpatrick [Tue, 30 Sep 2014 19:09:34 +0000 (12:09 -0700)]
net/http/httputil: ensure DumpRequestOut dumps all of Body

Bodies larger than 8KB (the default bufio reader size) weren't
being dumped.  Force a read of the body so they're teed into
the response buffer.

Thanks to Steven Hartland for identifying the problem.

Fixes #8089

LGTM=r
R=golang-codereviews, r
CC=adg, golang-codereviews
https://golang.org/cl/144650044

10 years agoencoding/asn1: fix unmarshaling of implicitly tagged UTF-8 strings.
Adam Langley [Tue, 30 Sep 2014 18:49:15 +0000 (11:49 -0700)]
encoding/asn1: fix unmarshaling of implicitly tagged UTF-8 strings.

Fixes #8541.

LGTM=rsc
R=rsc
CC=golang-codereviews
https://golang.org/cl/153770043

10 years agospec: clarify variable declaration type rules
Robert Griesemer [Tue, 30 Sep 2014 18:44:29 +0000 (11:44 -0700)]
spec: clarify variable declaration type rules

Not a language change.

Several inaccuracies were fixed:

1) A variable declaration may declare more than just one
variable.

2) Variable initialization follows the rules of assignments,
including n:1 assignments. The existing wording implied a 1:1
or n:n rule and generally was somewhat unspecific.

3) The rules for variable declarations with no types and
untyped initialization expressions had minor holes (issue 8088).

4) Clarified the special cases of assignments of untyped values
(we don't just have untyped constants, but also untyped bools,
e.g. from comparisons). The new wording is more direct.

To that end, introduced the notion of an untyped constant's
"default type" so that the same concept doesn't have to be
repeatedly introduced.

Fixes #8088.

LGTM=iant, r, rsc
R=r, rsc, iant, ken
CC=golang-codereviews
https://golang.org/cl/142320043

10 years agocmd/go: sometimes name tmp test binary test.test.exe on Windows
Russ Cox [Tue, 30 Sep 2014 18:30:40 +0000 (14:30 -0400)]
cmd/go: sometimes name tmp test binary test.test.exe on Windows

Right now it is always pkgname.test.exe, but if pkgname is
patch or install or setup or update, Windows thinks that
running it will install new software, so it pops up a dialog
box asking for more permission.
Renaming the binary avoids the Windows security check.

This only applies to the binary that the Go command writes
to its temporary work directory. If the user runs 'go test -c'
or any of the other ways to generate a test binary, it will
continue to use pkgname.test.exe.

Fixes #8711.

LGTM=bradfitz
R=golang-codereviews, r
CC=alex.brainman, bradfitz, golang-codereviews, iant
https://golang.org/cl/146580043

10 years agocmd/pprof: add Go implementation
Russ Cox [Tue, 30 Sep 2014 17:41:54 +0000 (13:41 -0400)]
cmd/pprof: add Go implementation

Update #8798

This is a new implementation of pprof,
written in Go instead of in Perl.
It was written primarily by Raul Silvera and
is in use for profiling programs of all languages
inside Google.

The internal structure is a bit package-heavy,
but it matches the copy used inside Google, and
since it is in an internal directory, we can make
changes to it later if we need to.

The only "new" file here is src/cmd/pprof/pprof.go,
which stitches together the Google pprof and the
Go command libraries for object file access.

I am explicitly NOT interested in style or review
comments on the rest of the files
(that is, src/cmd/pprof/internal/...).
Those are intended to stay as close to the Google
copies as possible, like we did with the pprof Perl script.

Still to do:

- Basic tests.
- Real command documentation.
- Hook up disassemblers.

LGTM=r
R=r, bradfitz, alex.brainman, dave
CC=golang-codereviews
https://golang.org/cl/153750043

10 years agocmd/gc: fix call order in array literal of slice literal of make chan
Russ Cox [Tue, 30 Sep 2014 16:48:47 +0000 (12:48 -0400)]
cmd/gc: fix call order in array literal of slice literal of make chan

Fixes #8761.

LGTM=iant
R=golang-codereviews, iant
CC=golang-codereviews, r
https://golang.org/cl/144530045

10 years agocompress/*: note that NewReader may introduce buffering
Russ Cox [Tue, 30 Sep 2014 16:31:18 +0000 (12:31 -0400)]
compress/*: note that NewReader may introduce buffering

Fixes #8309.

LGTM=r
R=golang-codereviews, r
CC=golang-codereviews, iant
https://golang.org/cl/147380043

10 years agocompress/zlib: mention that NewReaderDict can return ErrDictionary
Russ Cox [Tue, 30 Sep 2014 16:30:31 +0000 (12:30 -0400)]
compress/zlib: mention that NewReaderDict can return ErrDictionary

Fixes #7935.

LGTM=iant
R=golang-codereviews, iant
CC=golang-codereviews, ruiu
https://golang.org/cl/147390043

10 years agolog/syslog: try /var/run/log, for FreeBSD
Russ Cox [Tue, 30 Sep 2014 16:30:16 +0000 (12:30 -0400)]
log/syslog: try /var/run/log, for FreeBSD

Fixes #8449.

LGTM=iant
R=golang-codereviews, iant
CC=bradfitz, golang-codereviews
https://golang.org/cl/145600044

10 years agocmd/objdump: move armasm, x86asm into internal packages
Russ Cox [Tue, 30 Sep 2014 16:28:24 +0000 (12:28 -0400)]
cmd/objdump: move armasm, x86asm into internal packages

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

10 years agoCONTRIBUTORS: add Raul Silvera (Google CLA)
Russ Cox [Tue, 30 Sep 2014 16:08:22 +0000 (12:08 -0400)]
CONTRIBUTORS: add Raul Silvera (Google CLA)

Raul wrote the pprof code in CL 153750043.

LGTM=bradfitz, r
R=r, bradfitz
CC=golang-codereviews
https://golang.org/cl/146450043

10 years agoregexp/syntax: reject large repetitions created by nesting small ones
Russ Cox [Tue, 30 Sep 2014 16:08:09 +0000 (12:08 -0400)]
regexp/syntax: reject large repetitions created by nesting small ones

Fixes #7609.

LGTM=r
R=r
CC=golang-codereviews
https://golang.org/cl/150270043

10 years agoruntime: fix scanning of gc work buffer
Keith Randall [Tue, 30 Sep 2014 15:51:02 +0000 (08:51 -0700)]
runtime: fix scanning of gc work buffer

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

10 years agoruntime: fix throwsplit check
Dmitriy Vyukov [Tue, 30 Sep 2014 15:34:33 +0000 (19:34 +0400)]
runtime: fix throwsplit check
Newstack runs on g0, g0->throwsplit is never set.

LGTM=rsc
R=rsc
CC=golang-codereviews, khr
https://golang.org/cl/147370043

10 years agoruntime: initialize traceback variables earlier
Keith Randall [Tue, 30 Sep 2014 04:21:36 +0000 (21:21 -0700)]
runtime: initialize traceback variables earlier

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

10 years agonet/http: make Transport.CloseIdleConnections also close pending dials
Brad Fitzpatrick [Tue, 30 Sep 2014 01:16:15 +0000 (18:16 -0700)]
net/http: make Transport.CloseIdleConnections also close pending dials

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

10 years agogo/format, cmd/gofmt: fix issues with partial Go code with indent
Dmitri Shuralyov [Tue, 30 Sep 2014 00:04:48 +0000 (17:04 -0700)]
go/format, cmd/gofmt: fix issues with partial Go code with indent

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

10 years agoliblink: generate MRC replacement in liblink, not tls_arm
Dave Cheney [Tue, 30 Sep 2014 00:03:10 +0000 (10:03 +1000)]
liblink: generate MRC replacement in liblink, not tls_arm

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

10 years agox509: add root certs for android.
Tom Linford [Mon, 29 Sep 2014 23:51:49 +0000 (09:51 +1000)]
x509: add root certs for android.

On android, root certificates appear to be stored in the folder
/system/etc/security/cacerts, which has many certs in several
different files. This change adds a new array of directories in
which certs can be found.

To test this, I simply tried making a request with the http
library to an HTTPS URL on an android emulator and manually
verified that it worked.

LGTM=crawshaw
R=golang-codereviews, gobot, crawshaw
CC=golang-codereviews
https://golang.org/cl/151800043

10 years agoA+C: Tom Linford (individual CLA)
Brad Fitzpatrick [Mon, 29 Sep 2014 22:57:03 +0000 (15:57 -0700)]
A+C: Tom Linford (individual CLA)

Generated by a+c.

R=gobot
CC=golang-codereviews
https://golang.org/cl/149260044

10 years agoruntime: delete unused variables.
Keith Randall [Mon, 29 Sep 2014 21:05:33 +0000 (14:05 -0700)]
runtime: delete unused variables.

We're not comparing with code addresses any more.  Instead,
we use nil algorithm functions to mark uncomparable types.

LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/151040044

10 years agonet/http: enable Transfer-Encoding: identity without Content-Length for HTTP 1.1.
James Tucker [Mon, 29 Sep 2014 20:53:42 +0000 (13:53 -0700)]
net/http: enable Transfer-Encoding: identity without Content-Length for HTTP 1.1.

Use case is SSE recommended configuration: http://www.w3.org/TR/eventsource/#notes
Removes a TODO.

LGTM=bradfitz
R=golang-codereviews, bradfitz, tommi.virtanen
CC=golang-codereviews
https://golang.org/cl/100000044

10 years agonet/http: clarify Request.FormValue docs
Brad Fitzpatrick [Mon, 29 Sep 2014 20:42:33 +0000 (13:42 -0700)]
net/http: clarify Request.FormValue docs

Fixes #8067

LGTM=r
R=r
CC=golang-codereviews
https://golang.org/cl/146480043

10 years agocmd/yacc: fix handling of tokens that don't start with letters
Ian Lance Taylor [Mon, 29 Sep 2014 20:32:14 +0000 (13:32 -0700)]
cmd/yacc: fix handling of tokens that don't start with letters

CL 149110043 changed yacc to no longer keep a leading space
for quoted tokens.  That is OK by itself but unfortunately
yacc was relying on that leading space to notice which tokens
it should not output as const declarations.

Add a few such tokens to expr.y, although it won't make any
immediate difference as we seem to have no tests for yacc.

LGTM=rsc
R=golang-codereviews, rsc
CC=golang-codereviews
https://golang.org/cl/152720043