summaryrefslogtreecommitdiff
path: root/src/cmd/gc
Commit message (Expand)AuthorAgeFilesLines
* all: be more idiomatic when documenting boolean return values.Rob Pike2013-07-232-2/+2
* cmd/gc, cmd/ld: fix build: remove unused var, use correct var in printfIan Lance Taylor2013-07-191-2/+2
* runtime: use funcdata to supply garbage collection informationRuss Cox2013-07-191-22/+34
* cmd/ld, runtime: new in-memory symbol table formatRuss Cox2013-07-161-0/+2
* cmd/gc: do not race instrument syscall.forkAndExecInChildDmitriy Vyukov2013-07-161-1/+13
* cmd/gc: fix incorrect error when using f(g()) form on ... argsDaniel Morsing2013-07-161-2/+2
* cmd/gc: complex types don't contain pointersEvan Shaw2013-07-161-0/+2
* cmd/gc: fix race detector instrumentation of type switches.R?my Oudompheng2013-07-161-4/+1
* cmd/gc: tweak interface satisfaction error messageRuss Cox2013-07-152-2/+2
* cmd/gc: fix error message for import as 'init'Russ Cox2013-07-113-312/+329
* cmd/gc: fix issue with method wrappers not having escape analysis run on them.Daniel Morsing2013-07-021-1/+6
* cmd/gc: fix computation of equality class of types.R?my Oudompheng2013-07-021-9/+9
* cmd/gc: support x[i:j:k]Russ Cox2013-07-019-1088/+1241
* cmd/gc: fix missing export data for inlining in a few other cases.R?my Oudompheng2013-06-281-0/+5
* cmd/gc: fix escape analysis orderingRuss Cox2013-06-251-1/+1
* cmd/gc: fix pointer composite literals in exported if statements.R?my Oudompheng2013-06-231-1/+1
* cmd/gc: fix race detector on tail-call wrappersRuss Cox2013-06-183-6/+3
* cmd/gc: instrument arrays properly in race detector.R?my Oudompheng2013-06-143-30/+11
* cmd/gc: properly race-instrument for loopsDmitriy Vyukov2013-06-131-14/+16
* cmd/gc: save local var list before inliningIan Lance Taylor2013-06-112-2/+4
* cmd/gc: turn race detector off for tail-call method wrapper functionsRuss Cox2013-06-113-1/+4
* cmd/gc: compute initialization order for top-level blank vars too.R?my Oudompheng2013-06-111-4/+2
* cmd/gc: avoid creating circular lists when compiling with race detector.Daniel Morsing2013-06-111-1/+5
* cmd/gc: move genembedtramp into portable codeRuss Cox2013-06-1110-30/+51
* all: fix typosShenghou Ma2013-06-092-2/+2
* cmd/gc: fix missing slice/array types in export data.R?my Oudompheng2013-06-041-0/+1
* cmd/gc: do not corrupt init() with initializers of _ in closures.R?my Oudompheng2013-06-021-3/+7
* cmd/gc: fix overflow in array bounds calculation.Daniel Morsing2013-06-011-4/+4
* cmd/gc: use escape analysis result for make([]T, constantR?my Oudompheng2013-05-301-7/+24
* cmd/ld, runtime: emit pointer maps for nosplits identified by the linkerCarl Shapiro2013-05-291-14/+8
* cmd/gc: remove unused bit vector comparison codeCarl Shapiro2013-05-291-15/+0
* cmd/5l, cmd/6l, cmd/8l, cmd/gc, runtime: generate and use bitmaps of argument...Carl Shapiro2013-05-283-0/+258
* cmd/gc: fix confusing error with broken types and defer/goDaniel Morsing2013-05-211-0/+5
* cmd/gc: clear n->list of OFOR range loop after walk.R?my Oudompheng2013-05-201-0/+3
* cmd/gc: eliminate a useless bounds check in inlined append().R?my Oudompheng2013-05-201-1/+1
* runtime, cmd/gc: clean up function protoypesAnthony Martin2013-05-181-1/+2
* cmd/gc: repair make(T) in export data for inlining.R?my Oudompheng2013-05-161-1/+4
* cmd/gc: fix race instrumentation of selectors T(v).FieldR?my Oudompheng2013-05-151-0/+33
* cmd/gc: improve syntax error for "import testing"Shenghou Ma2013-05-152-0/+6
* cmd/gc: fix some overflows in the compilerRob Pike2013-04-2910-19/+43
* cmd/gc: initialize t->width in dgcsym() if requiredJan Ziak2013-04-251-0/+8
* cmd/gc: disable inlining of method valuesDaniel Morsing2013-04-131-0/+1
* gc: escape unicode BOM in exported string literalsVolker Dobler2013-04-111-0/+3
* cmd/gc: properly set variadic flag on method values.R?my Oudompheng2013-04-081-5/+12
* cmd/gc: fix Offsetof computation.R?my Oudompheng2013-04-051-4/+36
* cmd/gc: fix a typoCarl Shapiro2013-04-041-1/+1
* cmd/gc: be more tolerant with recursive types when checking map types.R?my Oudompheng2013-04-031-2/+11
* cmd/gc: preserve safe annotation of package def.David Symonds2013-04-034-299/+304
* cmd/gc: recognize (a.b[0]<<1 | a.b[0]>>31) as a rotate, not justNigel Tao2013-04-021-8/+23
* runtime: make map reads multithreaded safe.Keith Randall2013-04-011-2/+2