summaryrefslogtreecommitdiff
path: root/src/cmd
AgeCommit message (Collapse)AuthorFilesLines
2015-05-02Imported Upstream version 1.4.2upstream/1.4.2upstream-sidTianon Gravi9-10/+39
2015-01-15Imported Upstream version 1.4.1upstream/1.4.1Tianon Gravi5-62/+90
2015-01-15Imported Upstream version 1.4upstream/1.4Tianon Gravi331-32298/+52163
2014-11-25Imported Upstream version 1.3.3upstream/1.3.3Tianon Gravi3-10/+10
2014-08-13Imported Upstream version 1.3.1upstream/1.3.1Michael Stapelberg9-50/+125
2014-06-19Imported Upstream version 1.3upstream/1.3Michael Stapelberg248-33800/+42023
2013-12-03Imported Upstream version 1.2upstream/1.2Michael Stapelberg302-45696/+18515
2013-08-13Imported Upstream version 1.1.2upstream/1.1.2Michael Stapelberg8-9/+84
2013-06-14Imported Upstream version 1.1.1upstream/1.1.1Ingo Oeser4-9/+17
2013-05-14Imported Upstream version 1.1upstream/1.1Michael Stapelberg159-5041/+9586
2013-03-04Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304Michael Stapelberg364-21029/+28996
2012-06-14Imported Upstream version 1.0.2upstream/1.0.2Ondřej Surý32-230/+377
2012-05-02Imported Upstream version 1.0.1upstream/1.0.1Ondřej Surý9-162/+133
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý463-18684/+53670
2011-10-06Imported Upstream version 60.2upstream/60.2Ondřej Surý1-1/+1
2011-09-19Imported Upstream version 60.1upstream/60.1Ondřej Surý4-20/+22
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý369-0/+185191
2011-09-13Imported Upstream version 60Ondřej Surý362-183874/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý144-2025/+2496
2011-07-13Imported Upstream version 58.1upstream/58.1Ondřej Surý1-17/+72
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý102-4142/+3177
2011-06-16Imported Upstream version 57.2upstream/57.2Ondřej Surý6-0/+143
2011-05-04Imported Upstream version 57upstream/57Ondřej Surý5-205/+21
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý80-420/+1153
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý149-1464/+24963
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý72-705/+1207
2011-02-18Imported Upstream version 2011.02.15upstream/2011.02.15Ondřej Surý46-463/+709
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý91-1137/+2639
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý221-12800/+22731
2010-07-01strings and bytes.Split: make count of 0 mean 0, not infinite.Rob Pike6-9/+9
Use a count of -1 for infinity. Ditto for Replace. R=rsc CC=golang-dev http://codereview.appspot.com/1704044 Committer: Rob Pike <r@golang.org>
2010-07-016l: drop confusing commentRuss Cox1-1/+1
R=ken2 CC=golang-dev http://codereview.appspot.com/1693047
2010-07-016a: assemble CMPPD as 6l expectsRuss Cox1-1/+1
libmach: disassemble CMPPD as 6a expects R=ken2 CC=Charlie Dorian, golang-dev http://codereview.appspot.com/1704046
2010-07-016l: implement MOVLQZX as "mov", not "movsxd"Russ Cox1-1/+1
(Here, quoted strings are the official AMD names.) The amd64 "movsxd" instruction, when invoked with a 64-bit REX prefix, moves and sign extends a 32-bit value from register or memory into a 64-bit register. 6.out.h spells this MOVLQSX. 6.out.h also includes MOVLQZX, the zero extending version, which it implements as "movsxd" without the REX prefix. Without the REX prefix it's only sign extending 32 bits to 32 bits (i.e., not doing anything to the bits) and then storing in a 32-bit register. Any write to a 32-bit register zeros the top half of the corresponding 64-bit register, giving the advertised effect. This particular implementation of the functionality is non-standard, because an ordinary 32-bit "mov" would do the same thing. Because it is non-standard, it is often mishandled or not handled by binary translation tools like valgrind. Switching to the standard "mov" makes the binaries work better with those tools. It's probably useful in 6c and 6g to have an explicit instruction, though, so that the intent of the size change is clear. Thus we leave the concept of MOVLQZX and just implement it by the standard "mov" instead of the non-standard 32-bit "movsxd". Fixes issue 896. R=ken2 CC=golang-dev http://codereview.appspot.com/1733046
2010-06-30goinstall: support for Bazaar+LaunchpadGustavo Niemeyer3-43/+88
With these changes, goinstall is now able to use branches maintained with Bazaar located in Launchpad. Project aliases such as /project and /project/series are supported in addition to specific user or team branches such as /~user/project/branch. Temporary branches under the +junk special project are also supported. As a curious side effect, since Launchpad is able to import code from other locations, they can be indirectly accessible too if desired. R=rsc CC=golang-dev http://codereview.appspot.com/1699050 Committer: Russ Cox <rsc@golang.org>
2010-06-30cgo: use slash-free relative paths for .so referencesRuss Cox5-8/+37
The Makefile and cgo now rewrite / to _ when creating the path. The .so for gosqlite.googlecode.com/hg/sqlite is named cgo_gosqlite.googlecode.com_hg_sqlite.so, and then 6l and 8l both include a default rpath of $GOROOT/pkg/$GOOS_$GOARCH. This should make it easier to move binaries from one system to another. Fixes issue 857. R=iant, r CC=golang-dev http://codereview.appspot.com/1700048
2010-06-308g: out of register bug fixRuss Cox1-1/+3
Fixes issue 868. R=ken2 CC=golang-dev http://codereview.appspot.com/1695049
2010-06-30gc: do not crash on bad [...]TRuss Cox1-0/+5
Fixes issue 879. R=ken2 CC=golang-dev http://codereview.appspot.com/1678048
2010-06-30godoc: canonicalize codewalk pathsAndrew Gerrand1-0/+5
R=rsc CC=golang-dev http://codereview.appspot.com/1729046
2010-06-29ld: fix implementation of -uRuss Cox3-19/+57
R=r CC=golang-dev http://codereview.appspot.com/1678046
2010-06-29code gen bug in len(nil) and cap(nil)Ken Thompson3-0/+12
fixes issue 892 R=rsc CC=golang-dev http://codereview.appspot.com/1745042
2010-06-28compiler fatal error in switch.Ken Thompson1-5/+6
fixes issue 867. R=rsc CC=golang-dev http://codereview.appspot.com/1691045
2010-06-288g compiler missing call to splitclean().Ken Thompson1-1/+4
fixes issue 887. R=rsc CC=golang-dev http://codereview.appspot.com/1675050
2010-06-27optimization of static initializationKen Thompson4-128/+202
R=rsc CC=golang-dev http://codereview.appspot.com/1677049
2010-06-23gc: fix crash for nested complex divisionRuss Cox1-1/+1
R=ken2 CC=golang-dev http://codereview.appspot.com/1720043
2010-06-21ld: add -u flag to check safe bits; discard old -u, -x flagsRuss Cox4-31/+28
R=r, r2 CC=golang-dev http://codereview.appspot.com/1707043
2010-06-21gc: include struct field tags in type equalityRuss Cox1-1/+13
R=ken2 CC=golang-dev http://codereview.appspot.com/1667048
2010-06-21goinstall: process dependencies for package mainRoger Peppe3-16/+30
Currently to install a command, you have to manually goinstall each of the remote packages that it depends on. This patch lets goinstall P work where P is contains files in package main. It does not actually build the package, but it installs all of its dependencies and prints a message to that effect. R=rsc CC=golang-dev http://codereview.appspot.com/1301043 Committer: Russ Cox <rsc@golang.org>
2010-06-20undo changes accidentally included in 09c5add99d50Russ Cox1-2/+4
R=ken2 CC=golang-dev http://codereview.appspot.com/1736042
2010-06-20reflect: add Kind, remove Int8Type, Int8Value, etc.Russ Cox1-13/+19
update other code to match. R=r CC=golang-dev http://codereview.appspot.com/1680044
2010-06-20gc: delete debug printRuss Cox1-1/+0
R=ken2 CC=golang-dev http://codereview.appspot.com/1732043