summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2009-01-15redo and clean up math.Russ Cox12-180/+168
R=r DELTA=243 (60 added, 72 deleted, 111 changed) OCL=22909 CL=22912
2009-01-15don't crash on:Russ Cox1-1/+1
package main var x int type x struct { a int } R=ken OCL=22903 CL=22903
2009-01-15convert strconvRuss Cox18-547/+538
R=r DELTA=568 (0 added, 9 deleted, 559 changed) OCL=22898 CL=22901
2009-01-15casify lib/regexpRob Pike2-235/+235
R=rsc DELTA=259 (0 added, 0 deleted, 259 changed) OCL=22897 CL=22900
2009-01-15catch export on func.Russ Cox2-6/+13
print names in message. R=ken OCL=22891 CL=22891
2009-01-15casify fixup for bufioRob Pike2-84/+72
R=rsc DELTA=88 (0 added, 12 deleted, 76 changed) OCL=22884 CL=22890
2009-01-15add warning for export of lowercase too.Russ Cox1-1/+4
R=ken OCL=22887 CL=22887
2009-01-15remove export name-list statement.Russ Cox6-27/+46
make package local the default. warn about name case not matching export keyword. R=ken OCL=22881 CL=22886
2009-01-15make safe for new package local defaultsRuss Cox17-419/+422
R=r DELTA=462 (9 added, 33 deleted, 420 changed) OCL=22879 CL=22885
2009-01-15more casifying fixupsRob Pike2-193/+193
R=rsc DELTA=213 (0 added, 0 deleted, 213 changed) OCL=22878 CL=22882
2009-01-15casify fmt and its dependents.Rob Pike2-155/+153
R=rsc DELTA=224 (0 added, 2 deleted, 222 changed) OCL=22875 CL=22875
2009-01-15diagnose missing symbols instead ofRob Pike3-1/+4
silently miscompiling. R=rsc OCL=22872 CL=22872
2009-01-15- converted tabwriter to new naming schemeRobert Griesemer2-96/+96
R=r OCL=22870 CL=22870
2009-01-15- missed a few identifiersRobert Griesemer1-13/+13
R=r OCL=22864 CL=22864
2009-01-15- lowercase non-exported functions in bignumRobert Griesemer1-96/+97
R=r DELTA=117 (1 added, 0 deleted, 116 changed) OCL=22764 CL=22863
2009-01-15printf->Printf etc.Rob Pike12-52/+52
the raw fmt routines will be another, smaller but subtler pass. R=rsc DELTA=157 (0 added, 0 deleted, 157 changed) OCL=22851 CL=22851
2009-01-14add unicode library stub with justRuss Cox4-0/+754
IsUpper and IsLetter. R=r DELTA=746 (746 added, 0 deleted, 0 changed) OCL=22743 CL=22750
2009-01-14Add cgo2c program to translate mixed Go/C code into C. ThisIan Lance Taylor5-36/+619
lets us use a single source file for both 6c and gcc, handling the incompatible handling of return values. R=rsc DELTA=649 (613 added, 35 deleted, 1 changed) OCL=22682 CL=22730
2009-01-13change another yacc reference to bison.Russ Cox1-1/+1
R=r DELTA=1 (0 added, 0 deleted, 1 changed) OCL=22662 CL=22691
2009-01-13in 6g -r (the rsc flag),Russ Cox3-2/+71
rewrite heap pointer moves as xchg. R=ken OCL=22665 CL=22665
2009-01-13Add USED declarations for SysUnused parameters.Ian Lance Taylor1-0/+2
R=rsc DELTA=2 (2 added, 0 deleted, 0 changed) OCL=22640 CL=22642
2009-01-13Tweak code to make it easier to compile with gcc.Ian Lance Taylor7-49/+90
+ Use macros to name symbols with non-ASCII characters. + Make some variables unsigned, because they are compared against unsigned values. + Fix a few void* pointers to be MLink*. R=rsc DELTA=94 (44 added, 3 deleted, 47 changed) OCL=22303 CL=22638
2009-01-09free(nil)Russ Cox1-0/+3
R=iant DELTA=3 (3 added, 0 deleted, 0 changed) OCL=22467 CL=22471
2009-01-09add sys.callerRuss Cox3-38/+101
R=r DELTA=139 (101 added, 38 deleted, 0 changed) OCL=22462 CL=22466
2009-01-09clean up automatic indirect, delete some dead code.Russ Cox5-204/+71
R=ken OCL=22454 CL=22457
2009-01-09now that TCHAN, TMAP, and TSTRING are real types,Russ Cox1-1/+3
can do methods on them without pointer worries. R=ken OCL=22434 CL=22436
2009-01-09simplify flag interface. no more BVal etc. you just get a pointer.Rob Pike3-201/+162
fixed everything except the tutorial. R=rsc DELTA=404 (94 added, 139 deleted, 171 changed) OCL=22414 CL=22422
2009-01-09typoRuss Cox1-1/+1
R=r DELTA=1 (0 added, 0 deleted, 1 changed) OCL=22411 CL=22411
2009-01-09silence gcc warnings.Russ Cox2-2/+2
not sure if the warning in reg.c was a real bug. R=ken OCL=22408 CL=22410
2009-01-096g cleanup suggested by ken.Russ Cox12-179/+87
remove TPTR wrapper around TMAP, TCHAN, TSTRING. R=ken OCL=22406 CL=22409
2009-01-09update sys.reflect and sys.unreflect to accomodateRuss Cox7-63/+138
the possibility of large objects in interface values. R=r DELTA=171 (97 added, 22 deleted, 52 changed) OCL=22382 CL=22382
2009-01-08second pass on interface fixes and tests.Russ Cox6-139/+234
R=ken OCL=22370 CL=22372
2009-01-08- removed temporary work-arounds from bignum_test, not needed anymoreRobert Griesemer1-89/+28
R=r DELTA=93 (0 added, 61 deleted, 32 changed) OCL=22348 CL=22366
2009-01-08new sort interface - no structs, just slices.Rob Pike2-37/+30
R=rsc DELTA=37 (0 added, 7 deleted, 30 changed) OCL=22330 CL=22342
2009-01-08fix:Russ Cox2-1/+9
type T []int var a []int var t = T(a) R=ken OCL=22341 CL=22341
2009-01-08typoRuss Cox1-1/+1
R=ken OCL=22327 CL=22327
2009-01-08many interface bug fixes.Russ Cox9-97/+323
also, after func g() (int, int) func f(int, int) allow f(g()) and func h() (int, int) { return g() } R=ken DELTA=356 (252 added, 26 deleted, 78 changed) OCL=22319 CL=22325
2009-01-08Remove duplicate typedef declarations.Ian Lance Taylor1-7/+0
R=rsc DELTA=7 (0 added, 7 deleted, 0 changed) OCL=22267 CL=22281
2009-01-07Cache *os.Error values across all users.Rob Pike1-4/+27
R=rsc DELTA=27 (23 added, 0 deleted, 4 changed) OCL=22245 CL=22245
2009-01-07moreKen Thompson1-1/+2
R=r OCL=22240 CL=22240
2009-01-07conversion from closed array to sliceKen Thompson1-51/+30
R=r OCL=22236 CL=22236
2009-01-07correct signature generation decisionRuss Cox1-22/+21
for non-pointer types with methods. R=r DELTA=37 (13 added, 14 deleted, 10 changed) OCL=22217 CL=22219
2009-01-07[...] bugKen Thompson2-21/+23
R=r OCL=22218 CL=22218
2009-01-07iscomposite test in OCONV is unnecessaryRuss Cox1-2/+0
now that OCOMP exists R=ken OCL=22216 CL=22216
2009-01-07clear automatic arrays created with literalsKen Thompson1-57/+71
R=r OCL=22215 CL=22215
2009-01-06closed arrays including [...]Ken Thompson3-10/+27
R=r OCL=22182 CL=22182
2009-01-06- make code in gosrc compile again, check in all pending changesRobert Griesemer1-5/+5
(this code doesn't match the existing language at this point, but it's a large code base which compiles - will eventually go away) - enable compilation of it again in run.bash R=r DELTA=1147 (534 added, 311 deleted, 302 changed) OCL=22176 CL=22176
2009-01-06make the tutorial programs run again.Rob Pike1-0/+4
(the text still needs fixing) add the tutorial programs to the test run. R=rsc DELTA=41 (6 added, 0 deleted, 35 changed) OCL=22174 CL=22174
2009-01-06fix newfnRuss Cox1-1/+2
R=ken OCL=22173 CL=22173
2009-01-06update utf8_test.goRob Pike1-1/+1
R=rsc OCL=22170 CL=22170