summaryrefslogtreecommitdiff
path: root/src/runtime/heapdump.go
Commit message (Expand)AuthorAgeFilesLines
* runtime: avoid repeated findmoduledatap callsAustin Clements2017-03-061-1/+1
* runtime: remove unused gcstatsAustin Clements2017-03-041-1/+1
* time: optimize Now on darwin, windowsRuss Cox2017-02-091-1/+1
* runtime, cmd/compile: rename memclr -> memclrNoHeapPointersAustin Clements2016-10-281-1/+1
* runtime: eliminate mheap.nspan and use range loopsAustin Clements2016-10-251-10/+4
* runtime: consolidate h_allspans and mheap_.allspansAustin Clements2016-10-251-4/+4
* runtime: make mspan.isFree do what's on the tinAustin Clements2016-10-241-1/+1
* runtime: reclaim scan/dead bit in first wordAustin Clements2016-04-301-1/+1
* [dev.garbage] runtime: use s.base() everywhere it makes senseAustin Clements2016-04-291-3/+3
* [dev.garbage] Merge remote-tracking branch 'origin/master' into HEADRick Hudson2016-04-271-4/+5
|\
| * cmd/compile, etc: use nameOff in uncommonTypeDavid Crawshaw2016-04-221-2/+2
| * cmd/compile, etc: use nameOff for rtype stringDavid Crawshaw2016-04-221-1/+1
| * cmd/compile, etc: use name for type pkgPathDavid Crawshaw2016-04-131-2/+3
| * runtime: remove remaining references to TheCharJeremy Jackins2016-04-111-1/+1
* | [dev.garbage] runtime: allocate directly from GC mark bitsRick Hudson2016-04-271-3/+7
|/
* runtime: update link to WriteHeapDump formatMichael Matloob2016-03-151-1/+1
* cmd/compile: remove rtype *uncommonType fieldDavid Crawshaw2016-03-081-2/+2
* runtime: eliminate unnecessary type conversionsMatthew Dempsky2016-03-071-1/+1
* all: single space after period.Brad Fitzpatrick2016-03-021-6/+6
* cmd/compile: remove uncommonType.nameDavid Crawshaw2016-02-261-2/+3
* cmd/compile: remove rtype.ptrToThisDavid Crawshaw2016-02-251-23/+5
* cmd/compile: embed type string header in rtypeDavid Crawshaw2016-02-241-1/+1
* runtime: update heap dumper header to 1.6.Keith Randall2016-01-251-1/+1
* runtime: break out system-specific constants into package sysMichael Matloob2015-11-121-11/+14
* runtime: rewrite lots of foo_Bar(f, ...) into f.bar(...)Matthew Dempsky2015-11-121-1/+1
* runtime: add pcvalue cache to improve stack scan speedAustin Clements2015-10-221-1/+1
* runtime: make iface/eface handling more type safeMatthew Dempsky2015-10-211-1/+1
* runtime: add stringStructOf helper functionMatthew Dempsky2015-10-201-3/+3
* runtime: use unsafe.Pointer(x) instead of (unsafe.Pointer)(x)Matthew Dempsky2015-10-151-2/+2
* all: link to https instead of httpBrad Fitzpatrick2015-07-111-1/+1
* runtime: disallow preemption during startTheWorldAustin Clements2015-05-181-2/+0
* runtime: factor stoptheworld/starttheworld patternAustin Clements2015-05-181-9/+4
* runtime: use 2-bit heap bitmap (in place of 4-bit)Russ Cox2015-05-111-4/+3
* cmd/internal/gc, runtime: use 1-bit bitmap for stack frames, data, bssRuss Cox2015-05-011-20/+16
* runtime, cmd/internal/ld: rename themoduledata to firstmoduledataMichael Hudson-Doyle2015-04-101-8/+8
* runtime, reflect: support multiple moduledata objectsMichael Hudson-Doyle2015-04-101-4/+5
* runtime, cmd/internal/ld: change runtime to use a single linker symbolMichael Hudson-Doyle2015-03-311-6/+6
* runtime: reorganize memory codeRuss Cox2015-02-191-0/+18
* runtime: never show system goroutines in tracebackDmitry Vyukov2015-02-111-1/+1
* runtime: factor out bitmap, finalizer code from malloc/mgcRuss Cox2015-01-191-23/+22
* runtime: remove go prefix from a few routinesKeith Randall2014-12-291-2/+2
* runtime: rename gothrow to throwKeith Randall2014-12-281-4/+4
* runtime: make stack frames fixed size by modifying goproc/deferproc.Keith Randall2014-12-231-1/+1
* [dev.garbage] all: merge dev.cc (493ad916c3b1) into dev.garbageRuss Cox2014-11-241-1/+1
|\
| * [dev.cc] all: merge default (e4ab8f908aac) into dev.ccRuss Cox2014-11-201-1/+1
* | [dev.garbage] runtime: Turn concurrent GC on by default. Avoid write barriers...Rick Hudson2014-11-201-2/+2
|/
* [dev.cc] runtime: delete scalararg, ptrarg; rename onM to systemstackRuss Cox2014-11-121-6/+2
* [dev.cc] runtime: convert memory allocator and garbage collector to GoRuss Cox2014-11-111-0/+733