Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-05-02 | Imported Upstream version 1.4.2upstream/1.4.2upstream-sid | Tianon Gravi | 9 | -10/+39 | |
2015-01-15 | Imported Upstream version 1.4.1upstream/1.4.1 | Tianon Gravi | 5 | -62/+90 | |
2015-01-15 | Imported Upstream version 1.4upstream/1.4 | Tianon Gravi | 331 | -32298/+52163 | |
2014-11-25 | Imported Upstream version 1.3.3upstream/1.3.3 | Tianon Gravi | 3 | -10/+10 | |
2014-08-13 | Imported Upstream version 1.3.1upstream/1.3.1 | Michael Stapelberg | 9 | -50/+125 | |
2014-06-19 | Imported Upstream version 1.3upstream/1.3 | Michael Stapelberg | 248 | -33800/+42023 | |
2013-12-03 | Imported Upstream version 1.2upstream/1.2 | Michael Stapelberg | 302 | -45696/+18515 | |
2013-08-13 | Imported Upstream version 1.1.2upstream/1.1.2 | Michael Stapelberg | 8 | -9/+84 | |
2013-06-14 | Imported Upstream version 1.1.1upstream/1.1.1 | Ingo Oeser | 4 | -9/+17 | |
2013-05-14 | Imported Upstream version 1.1upstream/1.1 | Michael Stapelberg | 159 | -5041/+9586 | |
2013-03-04 | Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304 | Michael Stapelberg | 364 | -21029/+28996 | |
2012-06-14 | Imported Upstream version 1.0.2upstream/1.0.2 | Ondřej Surý | 32 | -230/+377 | |
2012-05-02 | Imported Upstream version 1.0.1upstream/1.0.1 | Ondřej Surý | 9 | -162/+133 | |
2012-04-06 | Imported Upstream version 1upstream/1 | Ondřej Surý | 463 | -18684/+53670 | |
2011-10-06 | Imported Upstream version 60.2upstream/60.2 | Ondřej Surý | 1 | -1/+1 | |
2011-09-19 | Imported Upstream version 60.1upstream/60.1 | Ondřej Surý | 4 | -20/+22 | |
2011-09-13 | Imported Upstream version 60upstream/60 | Ondřej Surý | 369 | -0/+185191 | |
2011-09-13 | Imported Upstream version 60 | Ondřej Surý | 362 | -183874/+0 | |
2011-08-03 | Imported Upstream version 59upstream/59 | Ondřej Surý | 144 | -2025/+2496 | |
2011-07-13 | Imported Upstream version 58.1upstream/58.1 | Ondřej Surý | 1 | -17/+72 | |
2011-06-30 | Imported Upstream version 58upstream/58 | Ondřej Surý | 102 | -4142/+3177 | |
2011-06-16 | Imported Upstream version 57.2upstream/57.2 | Ondřej Surý | 6 | -0/+143 | |
2011-05-04 | Imported Upstream version 57upstream/57 | Ondřej Surý | 5 | -205/+21 | |
2011-04-28 | Imported Upstream version 2011.04.27upstream/2011.04.27 | Ondřej Surý | 80 | -420/+1153 | |
2011-04-26 | Imported Upstream version 2011.04.13upstream/2011.04.13 | Ondřej Surý | 149 | -1464/+24963 | |
2011-04-20 | Imported Upstream version 2011.03.07.1upstream/2011.03.07.1 | Ondřej Surý | 72 | -705/+1207 | |
2011-02-18 | Imported Upstream version 2011.02.15upstream/2011.02.15 | Ondřej Surý | 46 | -463/+709 | |
2011-02-14 | Imported Upstream version 2011-02-01.1upstream/2011-02-01.1 | Ondřej Surý | 91 | -1137/+2639 | |
2011-01-17 | Imported Upstream version 2011.01.12upstream/2011.01.12 | Ondřej Surý | 221 | -12800/+22731 | |
2010-07-01 | strings and bytes.Split: make count of 0 mean 0, not infinite. | Rob Pike | 6 | -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-01 | 6l: drop confusing comment | Russ Cox | 1 | -1/+1 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1693047 | |||||
2010-07-01 | 6a: assemble CMPPD as 6l expects | Russ Cox | 1 | -1/+1 | |
libmach: disassemble CMPPD as 6a expects R=ken2 CC=Charlie Dorian, golang-dev http://codereview.appspot.com/1704046 | |||||
2010-07-01 | 6l: implement MOVLQZX as "mov", not "movsxd" | Russ Cox | 1 | -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-30 | goinstall: support for Bazaar+Launchpad | Gustavo Niemeyer | 3 | -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-30 | cgo: use slash-free relative paths for .so references | Russ Cox | 5 | -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-30 | 8g: out of register bug fix | Russ Cox | 1 | -1/+3 | |
Fixes issue 868. R=ken2 CC=golang-dev http://codereview.appspot.com/1695049 | |||||
2010-06-30 | gc: do not crash on bad [...]T | Russ Cox | 1 | -0/+5 | |
Fixes issue 879. R=ken2 CC=golang-dev http://codereview.appspot.com/1678048 | |||||
2010-06-30 | godoc: canonicalize codewalk paths | Andrew Gerrand | 1 | -0/+5 | |
R=rsc CC=golang-dev http://codereview.appspot.com/1729046 | |||||
2010-06-29 | ld: fix implementation of -u | Russ Cox | 3 | -19/+57 | |
R=r CC=golang-dev http://codereview.appspot.com/1678046 | |||||
2010-06-29 | code gen bug in len(nil) and cap(nil) | Ken Thompson | 3 | -0/+12 | |
fixes issue 892 R=rsc CC=golang-dev http://codereview.appspot.com/1745042 | |||||
2010-06-28 | compiler fatal error in switch. | Ken Thompson | 1 | -5/+6 | |
fixes issue 867. R=rsc CC=golang-dev http://codereview.appspot.com/1691045 | |||||
2010-06-28 | 8g compiler missing call to splitclean(). | Ken Thompson | 1 | -1/+4 | |
fixes issue 887. R=rsc CC=golang-dev http://codereview.appspot.com/1675050 | |||||
2010-06-27 | optimization of static initialization | Ken Thompson | 4 | -128/+202 | |
R=rsc CC=golang-dev http://codereview.appspot.com/1677049 | |||||
2010-06-23 | gc: fix crash for nested complex division | Russ Cox | 1 | -1/+1 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1720043 | |||||
2010-06-21 | ld: add -u flag to check safe bits; discard old -u, -x flags | Russ Cox | 4 | -31/+28 | |
R=r, r2 CC=golang-dev http://codereview.appspot.com/1707043 | |||||
2010-06-21 | gc: include struct field tags in type equality | Russ Cox | 1 | -1/+13 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1667048 | |||||
2010-06-21 | goinstall: process dependencies for package main | Roger Peppe | 3 | -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-20 | undo changes accidentally included in 09c5add99d50 | Russ Cox | 1 | -2/+4 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1736042 | |||||
2010-06-20 | reflect: add Kind, remove Int8Type, Int8Value, etc. | Russ Cox | 1 | -13/+19 | |
update other code to match. R=r CC=golang-dev http://codereview.appspot.com/1680044 | |||||
2010-06-20 | gc: delete debug print | Russ Cox | 1 | -1/+0 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/1732043 |