| Commit message (Expand) | Author | Age | Files | Lines |
| * | runtime: reset stack poison flag accidentally set | David Chase | 2021-02-23 | 1 | -1/+1 |
| * | cmd/compile: add AMD64 parameter register defs, Arg ops, plumb to ssa.Config | David Chase | 2021-02-23 | 1 | -1/+1 |
| * | runtime: delete gosave (dead code) | Russ Cox | 2021-02-19 | 1 | -1/+1 |
| * | runtime: document, clean up internal/sys | Russ Cox | 2021-02-19 | 1 | -2/+2 |
| * | runtime: make the span allocation purpose more explicit | Michael Anthony Knyszek | 2020-10-26 | 1 | -6/+6 |
| * | runtime: use sigaltstack on macOS/ARM64 | Cherry Zhang | 2020-10-06 | 1 | -1/+1 |
| * | all: add GOOS=ios | Cherry Zhang | 2020-09-23 | 1 | -1/+1 |
| * | runtime: disable stack shrinking in activeStackChans race window | Michael Anthony Knyszek | 2020-09-21 | 1 | -1/+12 |
| * | runtime: improve error messages after allocating a stack that is too big | Paschalis Tsilias | 2020-09-20 | 1 | -2/+8 |
| * | runtime: remove darwin/arm specifc code | Cherry Zhang | 2020-09-11 | 1 | -1/+1 |
| * | runtime: framepointers are no longer an experiment - hard code them | Keith Randall | 2020-08-27 | 1 | -5/+1 |
| * | reflect: zero stack slots before writing to them with write barriers | Keith Randall | 2020-06-19 | 1 | -0/+1 |
| * | runtime: incorporate Gscan acquire/release into lock ranking order | Dan Scales | 2020-05-07 | 1 | -1/+10 |
| * | runtime: grow stack more than 2x if the new frame is large | Keith Randall | 2020-05-07 | 1 | -0/+11 |
| * | runtime: use conservative scanning for debug calls | Austin Clements | 2020-04-29 | 1 | -22/+1 |
| * | runtime: static lock ranking for the runtime (enabled by GOEXPERIMENT) | Dan Scales | 2020-04-07 | 1 | -1/+6 |
| * | runtime: remove mcache field from m | Ian Lance Taylor | 2020-02-24 | 1 | -6/+6 |
| * | runtime: print more information on stack overflow | Cherry Zhang | 2019-11-27 | 1 | -0/+1 |
| * | all: fix a bunch of misspellings | Ville Skyttä | 2019-11-15 | 1 | -1/+1 |
| * | runtime: clean up power-of-two rounding code with align functions | Michael Anthony Knyszek | 2019-11-04 | 1 | -1/+1 |
| * | runtime: use signals to preempt Gs for suspendG | Austin Clements | 2019-11-02 | 1 | -1/+5 |
| * | runtime: atomically set span state and use as publication barrier | Austin Clements | 2019-10-31 | 1 | -2/+2 |
| * | runtime: abstract M preemption check into a function | Austin Clements | 2019-10-25 | 1 | -1/+1 |
| * | runtime: only shrink stacks at synchronous safe points | Austin Clements | 2019-10-25 | 1 | -11/+32 |
| * | runtime: make copystack/sudog synchronization more explicit | Austin Clements | 2019-10-25 | 1 | -19/+11 |
| * | runtime: remove old stack scanning code | Austin Clements | 2019-10-25 | 1 | -28/+1 |
| * | runtime: add general suspendG/resumeG | Austin Clements | 2019-10-25 | 1 | -0/+5 |
| * | runtime: make m.libcallsp check in shrinkstack panic | Austin Clements | 2019-10-25 | 1 | -3/+6 |
| * | cmd/compile, cmd/link, runtime: make defers low-cost through inline code and ... | Dan Scales | 2019-10-24 | 1 | -1/+3 |
| * | Revert "cmd/compile, cmd/link, runtime: make defers low-cost through inline c... | Bryan C. Mills | 2019-10-16 | 1 | -3/+1 |
| * | cmd/compile, cmd/link, runtime: make defers low-cost through inline code and ... | Dan Scales | 2019-10-16 | 1 | -1/+3 |
| * | runtime: one lock per order | Changkun Ou | 2019-09-03 | 1 | -23/+30 |
| * | Revert "Revert "cmd/compile,runtime: allocate defer records on the stack"" | Keith Randall | 2019-06-10 | 1 | -4/+9 |
| * | runtime: mark all Go symbols called from assembly in other packages | Austin Clements | 2019-06-06 | 1 | -0/+3 |
| * | Revert "cmd/compile,runtime: allocate defer records on the stack" | Keith Randall | 2019-06-05 | 1 | -9/+4 |
| * | cmd/compile,runtime: allocate defer records on the stack | Keith Randall | 2019-06-04 | 1 | -4/+9 |
| * | runtime: separate stack freeing from stack shrinking | Austin Clements | 2019-04-05 | 1 | -10/+0 |
| * | runtime: when using explicit argmap, also use arglen | Keith Randall | 2018-11-13 | 1 | -0/+7 |
| * | all: fix a bunch of misspellings | Igor Zhilianin | 2018-10-06 | 1 | -1/+1 |
| * | cmd/compile,runtime: implement stack objects | Keith Randall | 2018-10-03 | 1 | -4/+64 |
| * | runtime: eliminate gchelper mechanism | Austin Clements | 2018-10-02 | 1 | -2/+2 |
| * | runtime: eliminate gcBlackenPromptly mode | Austin Clements | 2018-10-02 | 1 | -3/+0 |
| * | runtime: rename _MSpan* constants to mSpan* | Austin Clements | 2018-09-26 | 1 | -2/+2 |
| * | runtime: remap stack spans with MAP_STACK on OpenBSD | Austin Clements | 2018-06-29 | 1 | -0/+6 |
| * | runtime/internal/sys: rename Wasm to WASM | Richard Musiol | 2018-06-12 | 1 | -1/+1 |
| * | runtime: use libc for signal functions on iOS | Elias Naur | 2018-06-12 | 1 | -2/+2 |
| * | runtime: support for debugger function calls | Austin Clements | 2018-05-22 | 1 | -7/+29 |
| * | runtime: unify fetching of locals and arguments maps | Austin Clements | 2018-05-14 | 1 | -61/+88 |
| * | runtime: add js/wasm architecture | Richard Musiol | 2018-05-08 | 1 | -1/+1 |
| * | runtime: iterate over set bits in adjustpointers | Josh Bleecher Snyder | 2018-04-29 | 1 | -41/+37 |