summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
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
2009-01-06new new &Point{1,2}Russ Cox1-2/+2
R=ken OCL=22168 CL=22168
2009-01-06new new & makeRuss Cox56-209/+209
R=r OCL=22166 CL=22166
2009-01-06make for slice/map/chanKen Thompson5-16/+74
new for pointers R=r OCL=22158 CL=22158
2009-01-06A richer interface for regexps. Simple boolean matcher, a vector of strings ↵Rob Pike2-6/+121
rather than indexes, and a global boolean function for quick action. R=rsc DELTA=152 (127 added, 12 deleted, 13 changed) OCL=22140 CL=22142
2009-01-06make 8a, 8c, 8l build in go environment.Russ Cox22-416/+390
,s/int32/long/g in 8a, 8c, 8l. delete dead code. move enam.c, 8.out.h, mkenam from 8c to 8l. R=r DELTA=1850 (581 added, 983 deleted, 286 changed) OCL=22119 CL=22129
2009-01-06comment sudoaddable;Russ Cox4-9/+21
remove unused second parameter. R=ken OCL=22126 CL=22126
2009-01-06delete blyaccRuss Cox2-2/+2
R=r DELTA=3562 (0 added, 3560 deleted, 2 changed) OCL=22112 CL=22114
2009-01-06make acid build with bison.Russ Cox2-5/+2
ask for bison explicitly in cc, gc to try to avoid problems with other yaccs that might be installed. R=r DELTA=29 (10 added, 2 deleted, 17 changed) OCL=22110 CL=22113
2009-01-068a, 8c, and 8l from inferno distributionRuss Cox25-0/+19781
R=r DELTA=19539 (19539 added, 0 deleted, 0 changed) OCL=22109 CL=22109