summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* 6l, 8l: make string buffer big enough for 8 chars (and then some)weekly.2009-12-07Russ Cox2009-12-072-2/+2
* test/bench: faster fasta (mostly due to bufio fix)Russ Cox2009-12-071-18/+16
* runtime: don't touch pages of memory unnecessarily.Russ Cox2009-12-078-45/+15
* runtime: introduce unsafe.New and unsafe.NewArrayRuss Cox2009-12-077-38/+79
* use a bootstrap array to avoid allocation for short vectorsRobert Griesemer2009-12-072-16/+30
* Remove copyBytes completely in favor of copy.Christopher Wedgwood2009-12-071-11/+2
* pick off special one-byte case in copy. worth 2x in benchmarks (38ns->16ns).Rob Pike2009-12-071-1/+5
* the AST walker currently provides no way to find out how theRoger Peppe2009-12-072-57/+61
* changes necessary to get the new chameneosredux onto shootout.alioth.debian.o...Roger Peppe2009-12-072-3/+4
* save a few ns by inlining (which mostly simplifies things anyway).Rob Pike2009-12-062-114/+100
* unexport Fmt. it's not needed outside this package any moreRob Pike2009-12-062-205/+179
* Make printing faster by avoiding mallocs and some other advances.Rob Pike2009-12-064-415/+423
* runtime: disable pointer scan optimizationRuss Cox2009-12-061-1/+3
* Fix syscall.Statfs and syscall.Fstatfs for 386 GNU/Linux.Ian Lance Taylor2009-12-042-14/+12
* test/bench: use range in reverse-complementRuss Cox2009-12-041-2/+2
* gc/runtime: pass type structure to makeslice.Russ Cox2009-12-047-17/+201
* gc: walk pointer in range on slice/arrayRuss Cox2009-12-041-4/+21
* 6g/8g optimizer fix: throw functions now in runtimeRuss Cox2009-12-042-8/+8
* test/bench: dead code in reverse-complementRuss Cox2009-12-041-30/+3
* gotest: stop if the // gotest commands failRuss Cox2009-12-041-1/+1
* net: more fiddling with the udp test.Russ Cox2009-12-041-1/+1
* libmach: fix disassembly of MOVLQSXRuss Cox2009-12-041-1/+1
* gotest: ignore *_test.pb.goRuss Cox2009-12-041-1/+1
* Add syscall.Rename for NaCl. Fixes NaCl build.Ian Lance Taylor2009-12-041-0/+4
* runtime: shift the index for the sort by one.Adam Langley2009-12-041-6/+2
* Add os.Rename.Ian Lance Taylor2009-12-042-1/+31
* Remove global chanlock.Adam Langley2009-12-041-33/+75
* bytes: asm for bytes.IndexByteRuss Cox2009-12-047-1/+96
* spec: document that built-ins cannot be used as func valuesRuss Cox2009-12-041-0/+6
* make Native Client support build again,Russ Cox2009-12-0417-20/+158
* testing: compute MB/s in benchmarksRuss Cox2009-12-041-1/+11
* avoid an allocation inside bytes.Buffer by providing a static array.Rob Pike2009-12-041-8/+4
* 8l: fix print line number format, buffer overflowRuss Cox2009-12-031-4/+4
* net: turn off empty packet test by defaultRuss Cox2009-12-031-2/+9
* gc: check for assignment to private fields during initializationRuss Cox2009-12-035-2/+61
* 6g code gen bugKen Thompson2009-12-032-11/+6
* Add Count, Cycle, ZipWith, GroupBy, Repeat, RepeatTimes, Unique to exp/iterable.Michael Elkins2009-12-032-25/+363
* crypto/rsa: fix shadowing error.Adam Langley2009-12-031-2/+2
* runtime: fix Caller crash on 386.Russ Cox2009-12-031-2/+2
* faq: add question about translationRuss Cox2009-12-031-0/+11
* codereview: do not gofmt deleted filesRuss Cox2009-12-031-0/+1
* Make.conf: fix if $HOME has spacesRuss Cox2009-12-031-1/+4
* runtime: malloc fixesRuss Cox2009-12-038-110/+40
* The String() method requires global state that makes it not work outside of t...Rob Pike2009-12-033-17/+17
* error propagation in gob/encoder.Rob Pike2009-12-031-11/+27
* Add ReadFrom and WriteTo methods to bytes.Buffer, to enable i/o without buffe...Rob Pike2009-12-035-5/+194
* gc: Allow allow data types up to 1GBChristopher Wedgwood2009-12-033-3/+4
* - include type-associated consts and vars when filtering a PackageDocRobert Griesemer2009-12-031-7/+9
* gc: handle _ = <-c in select.Russ Cox2009-12-034-5/+23
* gc: recursive type errorRuss Cox2009-12-033-0/+15