summaryrefslogtreecommitdiff
path: root/src/cmd
AgeCommit message (Collapse)AuthorFilesLines
2009-11-07- avoid division-by-zero crash in tabwriterRobert Griesemer1-0/+4
- correct tabwidth argument for some tabwriter test cases - catch negative tabwidth flag in gofmt w/o crashing R=rsc http://go/go-review/1026022
2009-11-07- added link to sourcesRobert Griesemer1-5/+5
- renamed listing.html -> dirList.html (there is a dirs.html already, it should probably have a better name, too) R=rsc http://go/go-review/1025020
2009-11-07nice directory listingsRobert Griesemer1-9/+46
R=rsc http://go/go-review/1026020
2009-11-07- support to extract one-line package synopsis for package listingsRobert Griesemer1-2/+25
- formatting in dirs.html is crude, needs better html (open to suggestions), but shows the synopsis - many package comments should probably be adjusted such that the first sentence is more concise R=rsc, iant http://go/go-review/1025014
2009-11-068g optimizerKen Thompson9-14/+2499
R=rsc http://go/go-review/1025011
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer6-99/+33
- enabled for function declarations (not just function literals) - applied gofmt -w $GOROOT/src (look for instance at src/pkg/debug/elf/elf.go) R=r, rsc CC=go-dev http://go/go-review/1026006
2009-11-06updated godoc documentationRobert Griesemer1-3/+17
R=r http://go/go-review/1026007
2009-11-06fix argument order bug for floatKai Backman1-2/+1
R=rsc http://go/go-review/1025006
2009-11-06with rsc: argsize rounding to 8 smashes stack data on 32bit machines.Kai Backman1-1/+5
R=rsc http://go/go-review/1024011
2009-11-05 make 5g executables run on android/arm hardware. change OABIKai Backman1-1/+1
usage to EABI. go/test: passes 85% (296/347) on random android phone. R=rsc http://go/go-review/1024003
2009-11-05gofmt src/cmd/goyaccRobert Griesemer1-583/+445
(with this change: gofmt -l src/cmd/ | wc is 0 0 0) R=ken, rsc http://go/go-review/1024005
2009-11-05gofmt'ed src/cmdRobert Griesemer4-32/+32
R=rsc http://go/go-review/1024004
2009-11-05gofmt'ed godefsRobert Griesemer1-11/+11
R=rsc http://go/go-review/1020001
2009-11-05gofmt'ed 6l 8l cgoRobert Griesemer3-27/+29
R=r http://go/go-review/1020002
2009-11-05codereview: new commandsRuss Cox1-15/+18
* clpatch * download * submit, on behalf of clpatch stir hgpatch to fix a few bugs R=r CC=go-dev http://go/go-review/1016051
2009-11-05forgot a piece of debuggingKen Thompson1-18/+2
in previous change R=rsc http://go/go-review/1017052
2009-11-05same speedup as 6lKen Thompson5-71/+170
R=rsc http://go/go-review/1016050
2009-11-05new command hgpatch, for use by codereview extensionRuss Cox4-1/+425
R=r http://go/go-review/1018059
2009-11-04speed up 6lKen Thompson5-46/+126
hopefully no change R=rsc http://go/go-review/1017035
2009-11-04doc doc docRuss Cox4-1/+168
R=r http://go/go-review/1016039
2009-11-04stylistic issues in a couple of cmd docsRob Pike2-2/+2
R=rsc http://go/go-review/1017028
2009-11-04document godoc and gofmtRob Pike2-0/+84
R=rsc http://go/go-review/1018036
2009-11-04remove reference to /home/rRobert Griesemer1-1/+1
R=rsc http://go/go-review/1018039
2009-11-03document gotestRob Pike1-0/+49
R=rsc CC=go-dev http://go/go-review/1017026
2009-11-03add goyacc to the buildRob Pike1-1/+1
R=rsc CC=go-dev http://go/go-review/1018034
2009-11-03make goyacc and units.y work again (minor tweaks).Rob Pike4-5/+24
document goyacc a little. R=rsc CC=go-dev http://go/go-review/1017024
2009-11-03document gopack.Rob Pike2-39/+60
change string in usage message. R=rsc http://go/go-review/1017023
2009-11-03document ebnflintRob Pike1-0/+22
R=gri http://go/go-review/1016034
2009-11-03document the gc go compilers.Rob Pike8-1/+96
fix the usage message. R=rsc CC=go-dev http://go/go-review/1016033
2009-11-03support for command documentation:Robert Griesemer2-43/+95
- made package tree handler generic so it can work on any fs tree - cleanups along the way R=rsc CC=r http://go/go-review/1017020
2009-11-03more command documentation, including nm and profRob Pike7-3/+86
R=rsc http://go/go-review/1017022
2009-11-03document the assemblers.Rob Pike5-0/+53
add details about -d and -e flags in the loaders. R=rsc CC=go-dev http://go/go-review/1018031
2009-11-03First steps at command documentation: C compilers and linkers.Rob Pike6-0/+132
Each command gets a doc.go file for godoc to analyze. Its main element is a package comment. R=rsc CC=go-dev http://go/go-review/1018029
2009-11-036l -e: emit external ELF symbol table.Russ Cox4-16/+140
enough to make nm and oprofile work. R=r http://go/go-review/1017016
2009-11-03use default styler when there is no other givenRobert Griesemer1-2/+6
(No visual change yet since the comments for exported code snippets - as shown on the pkg page - are not yet formatted using the standard comment intersperse mechanism in the printer. This is a TODO in the printer.) R=rsc http://go/go-review/1016031
2009-11-02- show recursive package directory structure in package pagesRobert Griesemer2-85/+106
- removed some underbars in section headings for better looks - various minor tweaks R=rsc http://go/go-review/1018026
2009-11-02forgot to count newlines when scanning white space.Rob Pike1-2/+2
also fix a error-printing bug in godoc. R=gri http://go/go-review/1016030
2009-11-02fix divide by zero in old glibc dynamic loaderRuss Cox1-4/+11
R=r CC=iant http://go/go-review/1018024
2009-11-02Fix cgo for GCC 4.4Adam Langley1-6/+6
Firstly, with -Werror, GCC switched to printing warnings starting with "error:". Widening the string matches solves this as the messages are otherwise unchanged. Secondly, GCC 4.4 outputs DWARF sections with with NUL bytes in all the offsets and requires the relocation section for .debug_info to be processed in order to result in valid DWARF data. Thus we add minimal handling for relocation sections, which is sufficient for our needs. BUG=1 Fixes issue 1. R=rsc, iant CC=go-dev http://go/go-review/1017003
2009-11-02do not emit USED for global x when compiling "_ = x;"Russ Cox1-1/+1
R=ken@golang.org CC=r http://go/go-review/1018019
2009-11-02- initial steps towards showing directory tree instead ofRobert Griesemer2-15/+102
just a single directory - all pieces present but not well integrated - directory tree served at the moment under /tree R=rsc http://go/go-review/1018016
2009-11-01nil pointer checks in 8g.Russ Cox5-21/+91
fix nil pointer check in 6g. was dereferencing after the ADD; dereference before instead. R=ken@golang.org CC=iant http://go/go-review/1016022
2009-11-01reverse the arguments to io.Copy so the destination is on theRob Pike1-1/+1
left, like an assignment, like strcpy, etc. R=rsc CC=go-dev http://go/go-review/1016011
2009-11-01enable all (but one) test cases in test.sh thatRobert Griesemer1-15/+11
were excluded before because of incorrect comment formatting (comment formatting is mostly idempotent at this point) R=rsc http://go/go-review/1018014
2009-11-01syscall cleanup.Russ Cox1-1/+3
* rename PORT.sh -> mkall.sh (hopefully more obvious), change behavior: run commands by default. * pull more constants out of #defines automatically, instead of editing large lists by hand. * add Recvfrom, Sendto add os.O_EXCL. R=r http://go/go-review/1017009
2009-11-01don't update sync time if no files have changedRobert Griesemer1-12/+18
(and thus avoid re-indexing after every sync attempt) R=rsc http://go/go-review/1016010
2009-11-01misc cleanupRuss Cox1-1/+1
R=r http://go/go-review/1016017
2009-10-30fix buildRobert Griesemer1-4/+4
R=agl CC=rsc http://go/go-review/1016008
2009-10-30split godoc/godoc.go into godoc/godoc.goRuss Cox3-204/+236
and godoc/main.go. R=gri CC=r http://go/go-review/1017005
2009-10-30added missing sgen reverse character copy code.Kai Backman1-1/+24
R=rsc http://go/go-review/1018006