summaryrefslogtreecommitdiff
path: root/src/runtime/mgc0.c
Commit message (Expand)AuthorAgeFilesLines
* [dev.cc] runtime: convert memory allocator and garbage collector to GoRuss Cox2014-11-111-2010/+0
* runtime: fix line number in first stack frame in printed stack traceRuss Cox2014-10-291-2/+2
* runtime: add GODEBUG invalidptr settingRuss Cox2014-10-281-2/+2
* runtime: add PauseEnd array to MemStats and GCStatsJens Frederich2014-10-281-9/+14
* runtime: fix memory profilerDmitriy Vyukov2014-10-161-1/+2
* runtime: a few optimizations of scanblock.Keith Randall2014-10-141-17/+18
* runtime: delay freeing of shrunk stacks until gc is done.Keith Randall2014-10-081-0/+2
* runtime: faster GC scanDmitriy Vyukov2014-10-081-32/+18
* runtime: crash if we see an invalid pointer into GC arenaRuss Cox2014-10-071-5/+94
* runtime: fix scanning of gc work bufferKeith Randall2014-09-301-4/+8
* cmd/cc, cmd/ld, runtime: disallow conservative data/bss objectsRuss Cox2014-09-241-3/+2
* runtime: remove unused function declarationDmitriy Vyukov2014-09-221-1/+0
* runtime: add runtime? prefix to some static variablesRuss Cox2014-09-191-56/+56
* runtime: output number of goroutines in GC traceDmitriy Vyukov2014-09-171-0/+2
* runtime: account for tiny allocs, for testing.AllocsPerRunRuss Cox2014-09-171-0/+1
* runtime: always run semacquire on the G stackKeith Randall2014-09-161-25/+1
* runtime: fix 386 buildRuss Cox2014-09-161-0/+1
* runtime: remove uses of ScanConservativelyRuss Cox2014-09-161-9/+46
* runtime: use traceback to traverse defer structuresRuss Cox2014-09-161-0/+1
* runtime: remove duplicated Go constantsRuss Cox2014-09-161-1/+1
* runtime: fix traceback of trap on ARMRuss Cox2014-09-141-1/+2
* runtime: fix typo in commentIan Lance Taylor2014-09-121-1/+1
* runtime: stop scanning stack frames/args conservativelyRuss Cox2014-09-121-41/+33
* runtime: tell the truth about BitVector typeRuss Cox2014-09-121-10/+10
* runtime: look up arg stackmap for makeFuncStub/methodValueStub during tracebackRuss Cox2014-09-121-2/+4
* runtime: assume precisestack, copystack, StackCopyAlways, ScanStackByFramesRuss Cox2014-09-091-41/+2
* runtime: merge mallocgc, gomallocgcRuss Cox2014-09-091-4/+4
* liblink, runtime: diagnose and fix C code running on Go stackRuss Cox2014-09-081-44/+84
* build: move package sources from src/pkg to srcRuss Cox2014-09-081-0/+1910
* move src/runtime -> src/lib/runtime;Russ Cox2009-06-061-231/+0
* fix 386 malloc tests,Russ Cox2009-06-051-1/+1
* 386 library updatesRuss Cox2009-06-021-1/+1
* add NUL when allocating strings, to make useRuss Cox2009-05-261-4/+8
* more 386 runtime - can run tiny c programs.Russ Cox2009-03-301-2/+2
* Use explicit allspan list instead ofRuss Cox2009-01-281-23/+4
* gc #0. mark and sweep collector.Russ Cox2009-01-261-0/+246