summaryrefslogtreecommitdiff
path: root/src/cmd/gc
Commit message (Expand)AuthorAgeFilesLines
...
* cmd/gc: use appropriate verb to print array type length.R?my Oudompheng2013-04-021-1/+1
* cmd/gc: do not reuse bool temporaries for composite equality.R?my Oudompheng2013-04-011-5/+13
* cmd/gc, cmd/ld: fix warnings on Plan 9David du Colombier2013-03-302-4/+3
* cmd/gc: update runtime.go for new map implementation.R?my Oudompheng2013-03-273-0/+8
* cmd/gc: fix race instrumentation of append and type switches.R?my Oudompheng2013-03-271-13/+12
* cmd/gc: enable racewalk of HMUL nodes.R?my Oudompheng2013-03-261-9/+9
* reflect: add garbage collection info in ChanOf, MapOf, PtrTo, SliceOfRuss Cox2013-03-261-0/+7
* cmd/gc: more race instrumentation.R?my Oudompheng2013-03-261-10/+14
* cmd/gc: fix nil pointer dereferences.R?my Oudompheng2013-03-262-5/+11
* cmd/gc: instrument logical && and ||.R?my Oudompheng2013-03-252-5/+43
* cmd/gc: fix line number for 'missing return' in closureRuss Cox2013-03-222-1/+3
* cmd/gc: accept ideal float as indices.R?my Oudompheng2013-03-221-5/+28
* cmd/gc: implement more cases in racewalk.R?my Oudompheng2013-03-211-34/+31
* cmd/gc: fix escape analysis of method valuesRuss Cox2013-03-203-2/+16
* cmd/gc: add OCHECKNOTNIL to race walker (fix build)Russ Cox2013-03-201-0/+1
* cmd/gc: reject methods on non-locals, even if symbol existsDaniel Morsing2013-03-201-6/+6
* cmd/gc: implement method valuesRuss Cox2013-03-207-34/+211
* runtime: faster hashmap implementation.Keith Randall2013-03-203-5/+77
* cmd/gc: implement revised rule for shifts in equality.R?my Oudompheng2013-03-201-3/+6
* cmd/gc: support channel types in the garbage collectorJan Ziak2013-03-191-1/+10
* cmd/gc: steal escape analysis info when inliningDaniel Morsing2013-03-181-0/+6
* cmd/gc: missing type inference for untyped complex() calls.R?my Oudompheng2013-03-162-2/+30
* cmd/gc: ensure unique parameter and result names in function typesRuss Cox2013-03-152-12/+25
* cmd/gc: fix escape analysis bug.R?my Oudompheng2013-03-151-1/+1
* cmd/gc: unroll small array typesJan Ziak2013-03-151-3/+17
* cmd/gc: disallow fallthrough in final case of switchTyler Bunnell2013-03-151-0/+4
* cmd/gc: silence valgrind errorDave Cheney2013-03-131-4/+4
* cmd/gc: reject complex calls with mismatched argument types.R?my Oudompheng2013-03-111-2/+2
* cmd/gc: enable inlining in generated method wrappers.R?my Oudompheng2013-03-113-8/+30
* cmd/gc: implement new return requirementsRuss Cox2013-03-046-289/+406
* cmd/gc: disallow selectors to the blank identifierDaniel Morsing2013-03-041-0/+4
* cmd/gc: simplify and fix defaultlit.R?my Oudompheng2013-03-041-70/+79
* cmd/gc: unbreak exporting of composite literals.R?my Oudompheng2013-03-044-19/+46
* cmd/gc: don't emit type instructions for nonexisting localsDaniel Morsing2013-02-271-0/+2
* cmd/gc: accept cases with same value but different types in switch.R?my Oudompheng2013-02-261-4/+8
* cmd/gc: fix corruption in export of &T{} literals.R?my Oudompheng2013-02-262-4/+10
* cmd/gc: apply escape analysis results to closures.R?my Oudompheng2013-02-261-1/+5
* cmd/gc: can stop tracking gotype in regoptRuss Cox2013-02-251-1/+0
* cmd/gc: fix mkbuiltin (gc -A always write all symbols to export section)Shenghou Ma2013-02-262-110/+110
* cmd/gc: emit explicit type information for local variablesRuss Cox2013-02-259-24/+41
* cmd/gc: mark LOCALS argument as a constant to print correctlyCarl Shapiro2013-02-221-0/+1
* cmd/gc: avoid runtime code generation for closuresRuss Cox2013-02-226-64/+96
* cmd/gc: fix FreeBSD buildDave Cheney2013-02-221-1/+0
* cmd/gc, reflect, runtime: switch to indirect func value representationRuss Cox2013-02-216-4/+29
* cmd/5g, cmd/5l, cmd/6l, cmd/8l, cmd/gc, cmd/ld, runtime: accurate args and lo...Carl Shapiro2013-02-211-1/+6
* cmd/godoc: use go/build to determine package and example filesRobert Griesemer2013-02-191-1/+3
* src/cmd/gc: fix some typos in the escape analysis commentsCarl Shapiro2013-02-141-2/+2
* cmd/gc: remove node printing in redeclare errorsDaniel Morsing2013-02-141-2/+2
* cmd/gc: replace x*8 by x<<3 etcRuss Cox2013-02-141-1/+71
* cmd/gc: add way to specify 'noescape' for extern funcsRuss Cox2013-02-056-145/+205