aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime2.go
AgeCommit message (Expand)Author
2017-08-15runtime: remove bad field from itabKeith Randall
2017-08-15runtime: new itab lookup tableKeith Randall
2017-08-15runtime: remove unused global variable emptystringIan Lance Taylor
2017-06-14runtime: move pdesc into pAustin Clements
2017-06-13runtime: increase MaxGomaxprocs to 1024Austin Clements
2017-06-05runtime: delay exiting while panic is running deferred functionsIan Lance Taylor
2017-05-10runtime: remove unused cpuid_X variablesMartin Möhrmann
2017-05-01runtime: refactor cpu feature detection for 386 & amd64Martin Möhrmann
2017-04-25runtime: simplify detection of preference to use AVX memmoveMartin Möhrmann
2017-04-19runtime: record swept and reclaimed bytes in sweep traceAustin Clements
2017-04-19runtime: make sweep trace events encompass entire sweep loopAustin Clements
2017-03-21bytes: add optimized countByte for amd64Josselin Costanzi
2017-03-06runtime: avoid repeated findmoduledatap callsAustin Clements
2017-03-04runtime: remove unused gcstatsAustin Clements
2017-02-24runtime: do not allocate on every time.SleepRuss Cox
2017-02-23runtime: new profile buffer implementation supporting label pointersRuss Cox
2017-02-16runtime: use balanced tree for addr lookup in semaphore implementationRuss Cox
2017-02-14runtime: remove g.stackAllocAustin Clements
2017-02-14runtime: remove stack barriersAustin Clements
2017-02-14runtime: remove rescan listAustin Clements
2017-02-13cmd/compile: optimize non-empty-interface type conversionsKeith Randall
2017-02-12runtime: use two-level list for semaphore address search in semaRootRuss Cox
2017-02-08runtime: use atomic ops for fwdSig, make sigtable immutableIan Lance Taylor
2017-02-06runtime: add definitions for SetGoroutineLabels and DoMichael Matloob
2017-02-03runtime: handle SIGPIPE in c-archive and c-shared programsElias Naur
2017-01-05crypto: detect BMI usability on AMD64 for sha1 and sha256Lion Yang
2016-12-19cmd/compile, runtime: a different approach to duplicate itabsMichael Hudson-Doyle
2016-12-16runtime: cross-reference _func type betterAustin Clements
2016-10-28runtime: add deletion barriers on gobuf.ctxtAustin Clements
2016-10-28runtime: eliminate write barriers from dropgAustin Clements
2016-10-28runtime: Profile goroutines holding contended mutexes.Peter Weinberger
2016-08-29runtime: insufficient padding in the `p` structureCarlos Eduardo Seo
2016-08-25runtime: remove unused type sigtabttIan Lance Taylor
2016-05-26build: enable framepointer mode by defaultRuss Cox
2016-05-03runtime: per-P contexts for race detectorDmitry Vyukov
2016-04-29cmd/cgo, runtime, runtime/cgo: use cgo context functionIan Lance Taylor
2016-04-26runtime: make stack re-scan O(# dirty stacks)Austin Clements
2016-04-26runtime: split gfree list into with-stacks and without-stacksAustin Clements
2016-04-23runtime: use per-goroutine sequence numbers in tracerDmitry Vyukov
2016-04-14runtime: find a home for orphaned commentsJeremy Jackins
2016-04-01runtime: support symbolic backtrace of C code in a cgo crashIan Lance Taylor
2016-03-31runtime: don't use REP;MOVSB if CPUID doesn't say it is fastKeith Randall
2016-03-29cmd/compile: emit itabs and itablinksMichel Lespinasse
2016-03-17runtime: document sudogAustin Clements
2016-03-17cmd/compile: stop constructing sudog typeMatthew Dempsky
2016-03-16runtime: make shrinkstack concurrent-safeAustin Clements
2016-03-16runtime: protect sudog.elem with hchan.lockAustin Clements
2016-03-16runtime: put g.waiting list in lock orderAustin Clements
2016-03-16runtime: record channel in sudogAustin Clements
2016-03-15sync: new Cond implementationWedson Almeida Filho