summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-02-188a/8l: Added FCMOVcc instructionsEvan Shaw4-0/+40
Thanks to Charles Dorian for the help. R=rsc CC=Charlie Dorian, golang-dev http://codereview.appspot.com/207049 Committer: Russ Cox <rsc@golang.org>
2010-02-18xml: allow unquoted attribute values in non-Strict modeAmrut Joshi2-8/+55
HTML4 standard supports unquoted attibute values in certain cases (http://www.w3.org/TR/REC-html40/intro/sgmltut.html#h-3.2.2). R=rsc CC=golang-dev http://codereview.appspot.com/207095 Committer: Russ Cox <rsc@golang.org>
2010-02-18A+C: add Amrut Joshi (individual CLA)Russ Cox2-0/+2
R=r CC=golang-dev http://codereview.appspot.com/216047
2010-02-18http: avoid server crash on malformed client requestFumitoshi Ukai2-8/+37
R=r, rsc CC=golang-dev http://codereview.appspot.com/206079 Committer: Russ Cox <rsc@golang.org>
2010-02-18exec: add dir argument to Run.Russ Cox3-15/+52
fix, test MergeWithStdout R=r CC=golang-dev http://codereview.appspot.com/214046
2010-02-18gc: fix this morning's bug fixRuss Cox5-5/+7
R=ken2 CC=golang-dev http://codereview.appspot.com/216043
2010-02-18complex constant multiply and divideKen Thompson5-10/+92
R=rsc CC=golang-dev http://codereview.appspot.com/217041
2010-02-18godoc: path cleanups, fixed a race condition, initial support for a menu on ↵Robert Griesemer5-36/+40
pages R=rsc CC=adg, golang-dev http://codereview.appspot.com/215050
2010-02-18sync: allow to work on armv5Dean Prichard3-1/+55
asm_arm.s was using ldrex which does not work on armv5. Tested on Sheevaplug. R=rsc, kaib CC=golang-dev http://codereview.appspot.com/214049 Committer: Kai Backman <kaib@golang.org>
2010-02-18more complex - constantsKen Thompson6-3/+41
import and export R=rsc CC=golang-dev http://codereview.appspot.com/214050
2010-02-18gc: recursive interface embeddingRuss Cox7-40/+76
Fixes issue 287. R=ken2 CC=golang-dev http://codereview.appspot.com/215048
2010-02-175g/8g: fix buildRuss Cox2-0/+2
R=ken2 CC=golang-dev http://codereview.appspot.com/215042
2010-02-17new types complex, complex64 and complex128Ken Thompson9-56/+285
only front-end compiler work. best to do thin in 3 steps 1. frontend 2. backend 3. lib R=rsc CC=golang-dev http://codereview.appspot.com/214042
2010-02-17release.2010-02-17 part twoAndrew Gerrand0-0/+0
R=rsc CC=golang-dev http://codereview.appspot.com/213042
2010-02-17release 2010-02-17 part oneAndrew Gerrand1-0/+31
R=rsc CC=golang-dev http://codereview.appspot.com/212047
2010-02-17language spec: make NUL byte rule an implementation restrictionRobert Griesemer1-1/+2
R=rsc, r, iant, ken2 CC=golang-dev http://codereview.appspot.com/211041
2010-02-17apply gofmt to src and miscRobert Griesemer1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/213041
2010-02-17gofmt: make sure certain 2-line comments are stableRobert Griesemer3-10/+205
under repeated application of gofmt R=agl, agl1 CC=golang-dev http://codereview.appspot.com/212046
2010-02-178g: respect ullman numbers in float comparisonRuss Cox2-8/+47
Fixes issue 602. R=ken2 CC=golang-dev http://codereview.appspot.com/212045
2010-02-18time.Ticker: fix bug arising when all tickers are dead.Rob Pike2-6/+24
thanks to yglgogo for analysis. Fixes issue 593. R=rsc CC=golang-dev http://codereview.appspot.com/210044
2010-02-17Add Src and Over draw operators.Nigel Tao3-63/+95
R=r, rsc CC=golang-dev http://codereview.appspot.com/207096
2010-02-16install: Added gcc, build-essential to apt-get command line.Andrew Gerrand1-1/+1
Mercury now requires build tools to install. R=rsc CC=golang-dev http://codereview.appspot.com/210042
2010-02-16gc: undo attempt at fixing recursive interface embeddingRuss Cox6-20/+33
Fixes issue 582. Update issue 287 Status: Accepted Bug fix was too intrusive; undo and reopen issue. R=ken2 CC=golang-dev http://codereview.appspot.com/209044
2010-02-16go/scanner: comply with spec changes (do not allow NUL chars)Robert Griesemer2-16/+24
and complain about illegal UTF-8 code sequences R=rsc CC=golang-dev http://codereview.appspot.com/209043
2010-02-16gc: fix build (signed char bug)Russ Cox1-1/+1
R=ken2 CC=golang-dev http://codereview.appspot.com/210043
2010-02-16gc: disallow NUL byte, catch more invalid UTF-8, testRuss Cox3-31/+89
R=ken2, ken3 CC=golang-dev http://codereview.appspot.com/209041
2010-02-16spec: disallow NUL in source filesRuss Cox1-0/+3
R=r CC=golang-dev http://codereview.appspot.com/209042
2010-02-17specification of []int(string) and []byte(string).Rob Pike1-12/+40
also clarify other string conversions. R=rsc, iant, gri, ken2 CC=golang-dev http://codereview.appspot.com/207103
2010-02-16runtime: fix bug in Caller documentationRuss Cox1-1/+1
R=r CC=golang-dev http://codereview.appspot.com/207110
2010-02-16godoc: updated documentationRobert Griesemer2-8/+24
R=r CC=golang-dev http://codereview.appspot.com/207112
2010-02-17The prefix optimization applies only to the first iteration.Rob Pike2-6/+17
Fixes issue 596. R=rsc CC=golang-dev http://codereview.appspot.com/206101 Committer: Rob Pike <r@golang.org>
2010-02-16godoc: initialize vars depending on flags after parsing the flags.Robert Griesemer2-1/+4
R=rsc CC=golang-dev http://codereview.appspot.com/206109
2010-02-16godoc: fix initialization issueRobert Griesemer2-2/+1
R=rsc CC=golang-dev http://codereview.appspot.com/207111
2010-02-16syscall: make signature of Umask on OS X, FreeBSD match Linux.Giles Lean6-14/+14
R=rsc CC=golang-dev http://codereview.appspot.com/207071 Committer: Russ Cox <rsc@golang.org>
2010-02-16cc: use "cpp" anywhere in path, not "/bin/cpp"Giles Lean1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/206077 Committer: Russ Cox <rsc@golang.org>
2010-02-16A+C: Giles Lean (individual CLA)Russ Cox2-0/+2
R=adg CC=golang-dev http://codereview.appspot.com/206107
2010-02-16godoc support for directories outside $GOROOTRobert Griesemer8-270/+326
Example use: godoc -path=/home/user1:/home/build/foo -http=:6666 will start a local godoc that maps urls starting with /pkg/user1 or /pkg/foo to the respective roots specified in the path. Missing: Handling of overlapping package directories, multiple packages per directory. R=rsc CC=golang-dev http://codereview.appspot.com/206078
2010-02-16remove assumption that all files belonging to a package are in the same ↵Robert Griesemer4-26/+46
directory: - adjust ast.Package node and doc.PackageDoc correspondingly - introduce parser.ParseFiles R=rsc CC=golang-dev http://codereview.appspot.com/207087
2010-02-16Don't print ()'s around a range clause's expression.Robert Griesemer3-1/+6
Fixes issue 605. R=rsc CC=golang-dev http://codereview.appspot.com/207108
2010-02-16gc: test & fix handling of very long string constantsRuss Cox3-12/+20103
R=ken2 CC=golang-dev http://codereview.appspot.com/207106
2010-02-15Fix printing of named floating point types.Ian Lance Taylor2-4/+65
Try to avoid infinite recursion if String fails due to printing a bad type. Add test for String method with named basic types. R=r CC=golang-dev http://codereview.appspot.com/207102
2010-02-12update gofmt test scriptRobert Griesemer1-4/+9
R=adg CC=golang-dev http://codereview.appspot.com/207088
2010-02-12http: clarify ServeHTTP returnRuss Cox1-0/+5
Fixes issue 580. R=adg CC=golang-dev http://codereview.appspot.com/207086
2010-02-12gc: diagnose invalid array boundsRuss Cox5-23/+54
Fixes issue 587. R=ken2 CC=golang-dev http://codereview.appspot.com/207085
2010-02-12runtime: dummy gettime for mingw/386.Russ Cox1-0/+9
Fixes issue 598. R=adg CC=golang-dev http://codereview.appspot.com/206089
2010-02-11correct meaning of "absolute" and "relative"Robert Griesemer1-15/+15
(implementation was swapped) R=adg CC=golang-dev, rsc http://codereview.appspot.com/207069
2010-02-11Steps towards more flexible godoc:Robert Griesemer1-0/+176
The Mapping object implements a flexible mapping of relative to absolute paths and vice versa. R=rsc CC=golang-dev http://codereview.appspot.com/206067
2010-02-10stop the 5c optimizer from clobbering extern static registers.Kai Backman1-2/+6
R=rsc, ken2 CC=golang-dev http://codereview.appspot.com/204064
2010-02-10runtime: delete MHeapMapCache, which is uselessRuss Cox7-133/+33
because free needs to mark the block as freed to coordinate with the garbage collector. (in C++ free can blindly put the block on the free list, no questions asked, so the cache saves some work.) R=iant CC=golang-dev http://codereview.appspot.com/206069
2010-02-11exp/draw test.Nigel Tao2-1/+89
R=rsc CC=golang-dev http://codereview.appspot.com/203062