| Commit message (Expand) | Author | Age | Files | Lines |
| * | runtime: avoid repeated findmoduledatap calls | Austin Clements | 2017-03-06 | 1 | -1/+1 |
| * | runtime: remove unused gcstats | Austin Clements | 2017-03-04 | 1 | -1/+1 |
| * | time: optimize Now on darwin, windows | Russ Cox | 2017-02-09 | 1 | -1/+1 |
| * | runtime, cmd/compile: rename memclr -> memclrNoHeapPointers | Austin Clements | 2016-10-28 | 1 | -1/+1 |
| * | runtime: eliminate mheap.nspan and use range loops | Austin Clements | 2016-10-25 | 1 | -10/+4 |
| * | runtime: consolidate h_allspans and mheap_.allspans | Austin Clements | 2016-10-25 | 1 | -4/+4 |
| * | runtime: make mspan.isFree do what's on the tin | Austin Clements | 2016-10-24 | 1 | -1/+1 |
| * | runtime: reclaim scan/dead bit in first word | Austin Clements | 2016-04-30 | 1 | -1/+1 |
| * | [dev.garbage] runtime: use s.base() everywhere it makes sense | Austin Clements | 2016-04-29 | 1 | -3/+3 |
| * | [dev.garbage] Merge remote-tracking branch 'origin/master' into HEAD | Rick Hudson | 2016-04-27 | 1 | -4/+5 |
| |\ |
|
| | * | cmd/compile, etc: use nameOff in uncommonType | David Crawshaw | 2016-04-22 | 1 | -2/+2 |
| | * | cmd/compile, etc: use nameOff for rtype string | David Crawshaw | 2016-04-22 | 1 | -1/+1 |
| | * | cmd/compile, etc: use name for type pkgPath | David Crawshaw | 2016-04-13 | 1 | -2/+3 |
| | * | runtime: remove remaining references to TheChar | Jeremy Jackins | 2016-04-11 | 1 | -1/+1 |
| * | | [dev.garbage] runtime: allocate directly from GC mark bits | Rick Hudson | 2016-04-27 | 1 | -3/+7 |
| |/ |
|
| * | runtime: update link to WriteHeapDump format | Michael Matloob | 2016-03-15 | 1 | -1/+1 |
| * | cmd/compile: remove rtype *uncommonType field | David Crawshaw | 2016-03-08 | 1 | -2/+2 |
| * | runtime: eliminate unnecessary type conversions | Matthew Dempsky | 2016-03-07 | 1 | -1/+1 |
| * | all: single space after period. | Brad Fitzpatrick | 2016-03-02 | 1 | -6/+6 |
| * | cmd/compile: remove uncommonType.name | David Crawshaw | 2016-02-26 | 1 | -2/+3 |
| * | cmd/compile: remove rtype.ptrToThis | David Crawshaw | 2016-02-25 | 1 | -23/+5 |
| * | cmd/compile: embed type string header in rtype | David Crawshaw | 2016-02-24 | 1 | -1/+1 |
| * | runtime: update heap dumper header to 1.6. | Keith Randall | 2016-01-25 | 1 | -1/+1 |
| * | runtime: break out system-specific constants into package sys | Michael Matloob | 2015-11-12 | 1 | -11/+14 |
| * | runtime: rewrite lots of foo_Bar(f, ...) into f.bar(...) | Matthew Dempsky | 2015-11-12 | 1 | -1/+1 |
| * | runtime: add pcvalue cache to improve stack scan speed | Austin Clements | 2015-10-22 | 1 | -1/+1 |
| * | runtime: make iface/eface handling more type safe | Matthew Dempsky | 2015-10-21 | 1 | -1/+1 |
| * | runtime: add stringStructOf helper function | Matthew Dempsky | 2015-10-20 | 1 | -3/+3 |
| * | runtime: use unsafe.Pointer(x) instead of (unsafe.Pointer)(x) | Matthew Dempsky | 2015-10-15 | 1 | -2/+2 |
| * | all: link to https instead of http | Brad Fitzpatrick | 2015-07-11 | 1 | -1/+1 |
| * | runtime: disallow preemption during startTheWorld | Austin Clements | 2015-05-18 | 1 | -2/+0 |
| * | runtime: factor stoptheworld/starttheworld pattern | Austin Clements | 2015-05-18 | 1 | -9/+4 |
| * | runtime: use 2-bit heap bitmap (in place of 4-bit) | Russ Cox | 2015-05-11 | 1 | -4/+3 |
| * | cmd/internal/gc, runtime: use 1-bit bitmap for stack frames, data, bss | Russ Cox | 2015-05-01 | 1 | -20/+16 |
| * | runtime, cmd/internal/ld: rename themoduledata to firstmoduledata | Michael Hudson-Doyle | 2015-04-10 | 1 | -8/+8 |
| * | runtime, reflect: support multiple moduledata objects | Michael Hudson-Doyle | 2015-04-10 | 1 | -4/+5 |
| * | runtime, cmd/internal/ld: change runtime to use a single linker symbol | Michael Hudson-Doyle | 2015-03-31 | 1 | -6/+6 |
| * | runtime: reorganize memory code | Russ Cox | 2015-02-19 | 1 | -0/+18 |
| * | runtime: never show system goroutines in traceback | Dmitry Vyukov | 2015-02-11 | 1 | -1/+1 |
| * | runtime: factor out bitmap, finalizer code from malloc/mgc | Russ Cox | 2015-01-19 | 1 | -23/+22 |
| * | runtime: remove go prefix from a few routines | Keith Randall | 2014-12-29 | 1 | -2/+2 |
| * | runtime: rename gothrow to throw | Keith Randall | 2014-12-28 | 1 | -4/+4 |
| * | runtime: make stack frames fixed size by modifying goproc/deferproc. | Keith Randall | 2014-12-23 | 1 | -1/+1 |
| * | [dev.garbage] all: merge dev.cc (493ad916c3b1) into dev.garbage | Russ Cox | 2014-11-24 | 1 | -1/+1 |
| |\ |
|
| | * | [dev.cc] all: merge default (e4ab8f908aac) into dev.cc | Russ Cox | 2014-11-20 | 1 | -1/+1 |
| * | | [dev.garbage] runtime: Turn concurrent GC on by default. Avoid write barriers... | Rick Hudson | 2014-11-20 | 1 | -2/+2 |
| |/ |
|
| * | [dev.cc] runtime: delete scalararg, ptrarg; rename onM to systemstack | Russ Cox | 2014-11-12 | 1 | -6/+2 |
| * | [dev.cc] runtime: convert memory allocator and garbage collector to Go | Russ Cox | 2014-11-11 | 1 | -0/+733 |