2012-09-24 18:57:01 -06:00
<!-- {
"Title": "Go 1.1 Release Notes",
2012-09-26 09:49:36 -06:00
"Path": "/doc/go1.1",
2012-09-24 18:57:01 -06:00
"Template": true
}-->
< h2 id = "introduction" > Introduction to Go 1.1< / h2 >
TODO
- overview
- link back to Go 1 and also Go 1 Compatibility docs.
< h2 id = "language" > Changes to the language< / h2 >
TODO
< h2 id = "impl" > Changes to the implementations and tools< / h2 >
TODO: more
cmd/5l, cmd/6l, cmd/8l, cmd/cc, cmd/gc: new flag parsing
This CL adds a flag parser that matches the semantics of Go's
package flag. It also changes the linkers and compilers to use
the new flag parser.
Command lines that used to work, like
8c -FVw
6c -Dfoo
5g -I/foo/bar
now need to be split into separate arguments:
8c -F -V -w
6c -D foo
5g -I /foo/bar
The new spacing will work with both old and new tools.
The new parser also allows = for arguments, as in
6c -D=foo
5g -I=/foo/bar
but that syntax will not work with the old tools.
In addition to matching standard Go binary flag parsing,
the new flag parser generates more detailed usage messages
and opens the door to long flag names.
The recently added gc flag -= has been renamed -complete.
R=remyoudompheng, daniel.morsing, minux.ma, iant
CC=golang-dev
https://golang.org/cl/7035043
2013-01-06 13:24:47 -07:00
< h3 id = "gc-flag" > Command-line flag parsing< / h3 >
< p >
In the gc toolchain, the compilers and linkers now use the
same command-line flag parsing rules as the Go flag package, a departure
from the traditional Unix flag parsing. This may affect scripts that invoke
the tool directly.
For example,
< code > go tool 6c -Fw -Dfoo< / code > must now be written
< code > go tool 6c -F -w -D foo< / code > .
< / p >
2012-09-24 18:57:01 -06:00
< h3 id = "int" > Size of int on 64-bit platforms< / h3 >
< p >
The language allows the implementation to choose whether the < code > int< / code > type and < code > uint< / code > types are 32 or 64 bits. Previous Go implementations made < code > int< / code > and < code > uint< / code > 32 bits on all systems. Both the gc and gccgo implementations (TODO: check that gccgo does) < a href = "http://golang.org/issue/2188" > now make < code > int< / code > and < code > uint< / code > 64 bits on 64-bit platforms such as AMD64/x86-64< / a > .
Among other things, this enables the allocation of slices with
more than 2 billion elements on 64-bit platforms.
< / p >
< p >
< em > Updating< / em > :
Most programs will be unaffected by this change.
Because Go does not allow implicit conversions between distinct
< a href = "/ref/spec#Numeric_types" > numeric types< / a > ,
no programs will stop compiling due to this change.
However, programs that contain implicit assumptions
that < code > int< / code > is only 32 bits may change behavior.
For example, this code prints a positive number on 64-bit systems and
a negative one on 32-bit systems:
< pre >
x := ^uint32(0) // x is 0xffffffff
i := int(x) // i is -1 on 32-bit systems, 0xffffffff on 64-bit
fmt.Println(i)
< / pre >
< p > Portable code intending 32-bit sign extension (yielding -1 on all systems)
would instead say:
< / p >
< pre >
i := int(int32(x))
< / pre >
< h3 id = "asm" > Assembler< / h3 >
< p >
Due to the < a href = "#int" > int< / a > and TODO: OTHER changes,
the placement of function arguments on the stack has changed.
Functions written in assembly will need to be revised at least
to adjust frame pointer offsets.
< / p >
2013-01-09 15:57:01 -07:00
< h3 id = "gotool" > Changes to the go tool< / h3 >
2013-01-02 05:38:47 -07:00
2013-01-09 15:57:01 -07:00
< p > The < code > go< / code > tool has acquired several improvements which are intended to improve the experience for new Go users.< / p >
< p > Firstly, when compiling, testing, or running Go code, the < code > go< / code > tool will now give more detailed errors messages, including a list of paths searched, when a package cannot be located.
2013-01-02 05:38:47 -07:00
< / p >
2013-01-09 15:57:01 -07:00
< pre >
$ go build foo/quxx
can't load package: package foo/quxx: cannot find package "foo/quxx" in any of:
/home/User/go/src/pkg/foo/quxx (from $GOROOT)
/home/User/src/foo/quxx (from $GOPATH)
< / pre >
cmd/ld: use native-endian symbol values in symbol table
The Plan 9 symbol table format defines big-endian symbol values
for portability, but we want to be able to generate an ELF object file
and let the host linker link it, as part of the solution to issue 4069.
The symbol table itself, since it is loaded into memory at run time,
must be filled in by the final host linker, using relocation directives
to set the symbol values. On a little-endian machine, the linker will
only fill in little-endian values during relocation, so we are forced
to use little-endian symbol values.
To preserve most of the original portability of the symbol table
format, we make the table itself say whether it uses big- or
little-endian values. If the table begins with the magic sequence
fe ff ff ff 00 00
then the actual table begins after those six bytes and contains
little-endian symbol values. Otherwise, the table is in the original
format and contains big-endian symbol values. The magic sequence
looks like an "end of table" entry (the fifth byte is zero), so legacy
readers will see a little-endian table as an empty table.
All the gc architectures are little-endian today, so the practical
effect of this CL is to make all the generated tables little-endian,
but if a big-endian system comes along, ld will not generate
the magic sequence, and the various readers will fall back to the
original big-endian interpretation.
R=ken2
CC=golang-dev
https://golang.org/cl/7066043
2013-01-04 15:03:57 -07:00
< p >
2013-01-09 15:57:01 -07:00
Secondly, the < code > go get< / code > command no longer allows < code > $GOROOT< / code > as the default destination when downloading package source. To use < code > go get< / code > command, a valid < code > $GOPATH< / code > is now required.
< / p >
< pre >
$ GOPATH= go get code.google.com/p/foo/quxx
package code.google.com/p/foo/quxx: cannot download, $GOPATH not set. For more details see: go help gopath
< / pre >
< p > Finally, as a result of the previous change, the < code > go get< / code > command will also fail when < code > $GOPATH< / code > and < code > $GOROOT< / code > are set to the same value.
cmd/ld: use native-endian symbol values in symbol table
The Plan 9 symbol table format defines big-endian symbol values
for portability, but we want to be able to generate an ELF object file
and let the host linker link it, as part of the solution to issue 4069.
The symbol table itself, since it is loaded into memory at run time,
must be filled in by the final host linker, using relocation directives
to set the symbol values. On a little-endian machine, the linker will
only fill in little-endian values during relocation, so we are forced
to use little-endian symbol values.
To preserve most of the original portability of the symbol table
format, we make the table itself say whether it uses big- or
little-endian values. If the table begins with the magic sequence
fe ff ff ff 00 00
then the actual table begins after those six bytes and contains
little-endian symbol values. Otherwise, the table is in the original
format and contains big-endian symbol values. The magic sequence
looks like an "end of table" entry (the fifth byte is zero), so legacy
readers will see a little-endian table as an empty table.
All the gc architectures are little-endian today, so the practical
effect of this CL is to make all the generated tables little-endian,
but if a big-endian system comes along, ld will not generate
the magic sequence, and the various readers will fall back to the
original big-endian interpretation.
R=ken2
CC=golang-dev
https://golang.org/cl/7066043
2013-01-04 15:03:57 -07:00
< / p >
2013-01-09 15:57:01 -07:00
< pre >
$ GOPATH=$GOROOT go get code.google.com/p/foo/quxx
warning: GOPATH set to GOROOT (/home/User/go) has no effect
package code.google.com/p/foo/quxx: cannot download, $GOPATH must not be set to $GOROOT. For more details see: go help gopath
< / pre >
2012-09-24 18:57:01 -06:00
< h2 id = "library" > Changes to the standard library< / h2 >
2012-11-14 08:24:14 -07:00
< h3 id = "debug/elf" > debug/elf< / h3 >
< p >
Previous versions of the debug/elf package intentionally skipped over the first
symbol in the ELF symbol table, since it is always an empty symbol. This symbol
is no longer skipped since indexes into the symbol table returned by debug/elf,
will be different to indexes into the original ELF symbol table. Any code that
calls the debug/elf functions Symbols or ImportedSymbols may need to be
adjusted to account for the additional symbol and the change in symbol offsets.
< / p >
2013-01-17 16:30:12 -07:00
< h3 id = "html/template" > html/template< / h3 >
< p >
Templates using the undocumented and only partially implemented
"noescape" feature will break: that feature was removed.
< / p >
2012-12-10 16:08:07 -07:00
< h3 id = "net" > net< / h3 >
< p >
The protocol-specific resolvers were formerly
lax about the network name passed in. For example, although the documentation was clear
that the only valid networks for < code > ResolveTCPAddr< / code > are < code > "tcp"< / code > ,
< code > "tcp4"< / code > , and < code > "tcp6"< / code > , the Go 1.0 implementation silently accepted
any string. The Go 1.1 implementation returns an error if the network is not one of those strings.
The same is true of the other protocol-specific resolvers < code > ResolveIPAddr< / code > , < code > ResolveUDPAddr< / code > , and
< code > ResolveUnixAddr< / code > .
< / p >
2012-12-15 19:51:47 -07:00
< p >
The previous < code > ListenUnixgram< / code > returned < code > UDPConn< / code > as
arepresentation of the connection endpoint. The Go 1.1 implementation
returns < code > UnixConn< / code > to allow reading and writing
with < code > ReadFrom< / code > and < code > WriteTo< / code > methods on
the < code > UnixConn< / code > .
< / p >
2012-12-10 16:08:07 -07:00
2012-12-09 01:59:33 -07:00
< h3 id = "time" > time< / h3 >
< p >
runtime: use clock_gettime to get ns resolution for time.now & runtime.nanotime
For Linux/{386,arm}, FreeBSD/{386,amd64,arm}, NetBSD/{386,amd64}, OpenBSD/{386,amd64}.
Note: our Darwin implementation already has ns resolution.
Linux/386 (Core i7-2600 @ 3.40GHz, kernel 3.5.2-gentoo)
benchmark old ns/op new ns/op delta
BenchmarkNow 110 118 +7.27%
Linux/ARM (ARM Cortex-A8 @ 800MHz, kernel 2.6.32.28 android)
benchmark old ns/op new ns/op delta
BenchmarkNow 625 542 -13.28%
Linux/ARM (ARM Cortex-A9 @ 1GHz, Pandaboard)
benchmark old ns/op new ns/op delta
BenchmarkNow 992 909 -8.37%
FreeBSD 9-REL-p1/amd64 (Dell R610 Server with Xeon X5650 @ 2.67GHz)
benchmark old ns/op new ns/op delta
BenchmarkNow 699 695 -0.57%
FreeBSD 9-REL-p1/amd64 (Atom D525 @ 1.80GHz)
benchmark old ns/op new ns/op delta
BenchmarkNow 1553 1658 +6.76%
OpenBSD/amd64 (Dell E6410 with i5 CPU M 540 @ 2.53GHz)
benchmark old ns/op new ns/op delta
BenchmarkNow 1262 1236 -2.06%
OpenBSD/i386 (Asus eeePC 701 with Intel Celeron M 900MHz - locked to 631MHz)
benchmark old ns/op new ns/op delta
BenchmarkNow 5089 5043 -0.90%
NetBSD/i386 (VMware VM with Core i5 CPU @ 2.7GHz)
benchmark old ns/op new ns/op delta
BenchmarkNow 277 278 +0.36%
NetBSD/amd64 (VMware VM with Core i5 CPU @ 2.7Ghz)
benchmark old ns/op new ns/op delta
BenchmarkNow 103 105 +1.94%
Thanks Maxim Khitrov, Joel Sing, and Dave Cheney for providing benchmark data.
R=jsing, dave, rsc
CC=golang-dev
https://golang.org/cl/6820120
2012-12-18 07:57:25 -07:00
On FreeBSD, Linux, NetBSD, OS X and OpenBSD, previous versions of the time package
returned times with microsecond precision. The Go 1.1 implementation of time on these
systems now returns times with nanosecond precision. Code may exist that expects to be
able to store such a time in an external format with only microsecond precision,
2012-12-09 01:59:33 -07:00
read it back, and recover exactly the same time instant.
In Go 1.1 the same time will not be recovered, since the external storage
will have discarded nanoseconds.
To address this case, there are two new methods of time.Time, Round and Truncate,
that can be used to remove precision from a time before passing it to
external storage.
< / p >
2012-09-24 18:57:01 -06:00
TODO