summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2009-09-08write-only variable _Russ Cox12-19/+132
R=ken OCL=34465 CL=34470
2009-09-08init context for composit literalsKen Thompson3-1/+48
R=rsc OCL=34462 CL=34462
2009-09-08add -S flag to print size of symbolRuss Cox1-13/+28
R=r DELTA=24 (15 added, 0 deleted, 9 changed) OCL=34447 CL=34458
2009-09-08- clarify vector commentRobert Griesemer2-1/+3
- adjusted a test to check claim R=rsc DELTA=3 (2 added, 0 deleted, 1 changed) OCL=34454 CL=34456
2009-09-08pass Type* to makechan and makemap so thatRuss Cox7-44/+46
they can get the official alignment out of there instead of guessing. R=ken OCL=34450 CL=34450
2009-09-08documentation edits:Russ Cox1-63/+63
add comments showing Go syntax for each token. move doc comments below hidden begin constants R=gri DELTA=66 (3 added, 3 deleted, 60 changed) OCL=34334 CL=34445
2009-09-07maps in static initializationKen Thompson1-3/+124
R=rsc OCL=34434 CL=34434
2009-09-06more static initKen Thompson1-6/+87
almost done R=rsc OCL=34422 CL=34422
2009-09-05composit literalsKen Thompson9-150/+216
plateau - more to come R=rsc OCL=34413 CL=34413
2009-09-04Don't crash in Sym.ReceiverName for symbols like "x.x"Austin Clements1-1/+1
R=rsc APPROVED=rsc DELTA=2 (0 added, 0 deleted, 2 changed) OCL=34404 CL=34406
2009-09-03add ParseDeclListRuss Cox2-0/+34
R=austin DELTA=34 (34 added, 0 deleted, 0 changed) OCL=34280 CL=34352
2009-09-03parse expression statements beginning withRuss Cox1-1/+1
arithmetic unary operators + - ^ R=r DELTA=1 (0 added, 0 deleted, 1 changed) OCL=34338 CL=34350
2009-09-03fix linux 386 buildRuss Cox5-11/+139
R=austin DELTA=140 (128 added, 0 deleted, 12 changed) OCL=34344 CL=34347
2009-09-03nil in DeepEqualRuss Cox2-8/+7
R=r DELTA=13 (5 added, 6 deleted, 2 changed) OCL=34337 CL=34343
2009-09-03stop using filename for disambiguation within a package.Russ Cox5-35/+5
R=ken OCL=34339 CL=34341
2009-09-03fix range on invalid utf8 bugRuss Cox1-1/+2
R=r DELTA=42 (21 added, 20 deleted, 1 changed) OCL=34328 CL=34333
2009-09-03Fix uninstalling of breakpoints when a process exits. ProcessAustin Clements1-0/+3
exit is still handled poorly. R=rsc APPROVED=rsc DELTA=6 (6 added, 0 deleted, 0 changed) OCL=34288 CL=34315
2009-09-03simplify extractEBNF codeRobert Griesemer1-12/+13
R=rsc DELTA=15 (3 added, 2 deleted, 10 changed) OCL=34307 CL=34314
2009-09-03use %L in listings so we see source line number in easy formatRob Pike3-9/+9
R=ken DELTA=9 (0 added, 0 deleted, 9 changed) OCL=34309 CL=34311
2009-09-03linkify EBNF sections in spec when served via godocRobert Griesemer3-1/+217
R=rsc DELTA=217 (216 added, 0 deleted, 1 changed) OCL=34279 CL=34306
2009-09-02fix one bug involving [...] constructors.Russ Cox3-2/+8
added iant's bug202 (in main code) and ken's bug203 (in init function). bug187 remains at large. R=ken OCL=34293 CL=34293
2009-09-02fix initialization of noreturnRob Pike1-3/+3
R=ken DELTA=3 (0 added, 0 deleted, 3 changed) OCL=34283 CL=34283
2009-09-02fix buildRuss Cox3-0/+25
TBR=gri OCL=34264 CL=34264
2009-09-02heap algorithmRobert Griesemer5-2/+196
R=rsc DELTA=196 (194 added, 0 deleted, 2 changed) OCL=34234 CL=34263
2009-09-02add debug/gosym and debug/proc to buildRuss Cox2-0/+5
(was waiting until after release) R=austin DELTA=5 (5 added, 0 deleted, 0 changed) OCL=34222 CL=34261
2009-09-02fix bug introduced in 33293Russ Cox1-1/+1
R=r OCL=34253 CL=34253
2009-09-02the last bug involving type hashesRuss Cox7-58/+358
R=ken OCL=34244 CL=34249
2009-09-02two gob nits found with stricter 6gRuss Cox1-2/+2
(6g had a few pretty major bugs where it was more lax than it should have been when checking when things satisfied interfaces; i fixed them and this turned up.) R=r DELTA=2 (0 added, 0 deleted, 2 changed) OCL=34243 CL=34248
2009-09-01type switch bug involving function parameter namesRuss Cox2-4/+8
R=ken OCL=34232 CL=34232
2009-09-01Don't crash for regexps > 19 characters.Austin Clements1-1/+1
R=r APPROVED=r DELTA=1 (0 added, 0 deleted, 1 changed) OCL=34216 CL=34220
2009-09-01template:Russ Cox2-7/+28
* do full lookup for {.section}, so that it is always allowed to replace {Foo} with {.section Foo}{@}{.end} * treat False as empty so that .section can be used to test bools R=r DELTA=29 (21 added, 0 deleted, 8 changed) OCL=34215 CL=34219
2009-09-01make debug/proc "build" on more architecturesRuss Cox4-17/+1
R=austin DELTA=17 (0 added, 16 deleted, 1 changed) OCL=34213 CL=34218
2009-09-01import debug/gosym from usr/austin/symRuss Cox8-2/+954
R=austin DELTA=958 (956 added, 0 deleted, 2 changed) OCL=34180 CL=34212
2009-09-01catch package net import "net" for releaseRuss Cox1-0/+10
R=ken OCL=34205 CL=34207
2009-09-01casing operations for byte arraysRob Pike3-5/+186
R=rsc DELTA=186 (181 added, 0 deleted, 5 changed) OCL=34203 CL=34203
2009-09-01don't show exported methods of non-exported typesRobert Griesemer1-33/+13
R=rsc DELTA=44 (10 added, 30 deleted, 4 changed) OCL=34195 CL=34200
2009-09-01added "Under construction" to package commentRobert Griesemer1-0/+2
R=rsc DELTA=2 (2 added, 0 deleted, 0 changed) OCL=34196 CL=34199
2009-09-01import debug/proc from usr/austin/ptraceRuss Cox9-0/+1892
R=austin DELTA=1892 (1892 added, 0 deleted, 0 changed) OCL=34183 CL=34197
2009-09-01make ToUpper, ToLower etc. handle unicode properly.Rob Pike5-61/+182
Change their names too. R=rsc DELTA=206 (123 added, 2 deleted, 81 changed) OCL=34170 CL=34194
2009-08-31test that ASCII optimizations agree with the unicode tablesRob Pike2-0/+40
R=rsc DELTA=40 (40 added, 0 deleted, 0 changed) OCL=34168 CL=34176
2009-08-31IsSpaceRob Pike2-0/+39
R=rsc DELTA=39 (39 added, 0 deleted, 0 changed) OCL=34153 CL=34167
2009-08-31add newprocreadylocked for debuggerRuss Cox1-1/+10
R=austin DELTA=10 (9 added, 0 deleted, 1 changed) OCL=34163 CL=34166
2009-08-31fix 386 buildRuss Cox1-1/+4
R=ken OCL=34164 CL=34164
2009-08-31submitter's regret. rename Props to PropertiesRob Pike3-9/+9
R=rsc DELTA=9 (0 added, 0 deleted, 9 changed) OCL=34148 CL=34151
2009-08-31elf file parserRuss Cox5-1/+454
R=austin DELTA=448 (447 added, 0 deleted, 1 changed) OCL=34139 CL=34150
2009-08-31add property tablesRob Pike3-59/+982
R=rsc DELTA=1087 (1001 added, 78 deleted, 8 changed) OCL=34137 CL=34147
2009-08-31convert C runtime to 32-bit runes;Russ Cox4-11/+12
rune now unsigned. R=r DELTA=10 (1 added, 0 deleted, 9 changed) OCL=34140 CL=34146
2009-08-31fmt: add verbs:Russ Cox4-75/+266
%E - upper case %e %G - upper case %g %#v - Go syntax R=r DELTA=332 (238 added, 47 deleted, 47 changed) OCL=34091 CL=34145
2009-08-31add SectionReader, ReaderAt.Russ Cox1-0/+85
R=r DELTA=85 (85 added, 0 deleted, 0 changed) OCL=34141 CL=34144
2009-08-31package debug/binaryRuss Cox5-0/+320
R=austin DELTA=320 (320 added, 0 deleted, 0 changed) OCL=33983 CL=34143