Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(94)

Issue 9029047: runtime: contiguous stacks

Can't Edit
Can't Publish+Mail
Start Review
Created:
11 years, 11 months ago by khr
Modified:
11 years, 8 months ago
Reviewers:
Visibility:
Public.

Description

runtime: contiguous stacks Each Go routine gets a single, contiguous stack instead of the current system of chained stacklets. We grow stacks by allocating a new, larger one and copying the stack over. Internal pointers in the stack are adjusted appropriately. (We're guaranteed by the compiler that nothing external points into the stack, at least for Go code.) This implementation is simpler than the chained stacks and won't have pathological stack splits (where calls across a stacklet boundary cause stacklets to be allocated and freed very quickly). A lot of the defer/panic/recover mechanism has been changed because vararg calls need to be done in a different fashion. This implementation will require accurate pointer/notpointer maps of every frame on the stack. We don't have this info yet... Can't handle cgo yet.

Patch Set 1 #

Patch Set 2 : diff -r 0704ea89235b https://khr%40golang.org@code.google.com/p/go/ #

Patch Set 3 : diff -r cf3ee583c568 https://khr%40golang.org@code.google.com/p/go/ #

Patch Set 4 : diff -r a02e1acf92bd https://khr%40golang.org@code.google.com/p/go/ #

Patch Set 5 : diff -r cda3832e9a12 https://khr%40golang.org@code.google.com/p/go/ #

Patch Set 6 : diff -r fd8dcd53e0ec https://khr%40golang.org@code.google.com/p/go/ #

Patch Set 7 : diff -r 479890e74f24 https://khr%40golang.org@code.google.com/p/go/ #

Patch Set 8 : diff -r f6a20261d881 https://khr%40golang.org@code.google.com/p/go/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1192 lines, -877 lines) Patch
M src/cmd/6g/gsubr.c View 1 2 3 4 5 6 7 1 chunk +2 lines, -0 lines 0 comments Download
M src/cmd/6l/pass.c View 1 2 3 4 5 6 7 5 chunks +48 lines, -84 lines 0 comments Download
M src/cmd/gc/go.h View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M src/cmd/gc/pgen.c View 1 2 3 4 5 6 7 2 chunks +3 lines, -0 lines 0 comments Download
M src/cmd/ld/go.c View 1 2 3 4 5 6 7 1 chunk +0 lines, -13 lines 0 comments Download
M src/cmd/ld/lib.c View 1 2 3 4 5 6 7 3 chunks +1 line, -2 lines 0 comments Download
M src/pkg/runtime/asm_amd64.s View 1 2 3 4 5 6 7 5 chunks +193 lines, -157 lines 0 comments Download
M src/pkg/runtime/cgocall.c View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M src/pkg/runtime/malloc.h View 1 2 3 4 5 6 3 chunks +3 lines, -2 lines 0 comments Download
M src/pkg/runtime/mgc0.c View 1 2 3 4 5 6 7 9 chunks +13 lines, -27 lines 0 comments Download
M src/pkg/runtime/mheap.c View 1 2 3 4 5 6 1 chunk +53 lines, -0 lines 0 comments Download
M src/pkg/runtime/msize.c View 1 2 3 4 5 2 chunks +3 lines, -3 lines 0 comments Download
M src/pkg/runtime/panic.c View 1 2 3 4 5 6 7 7 chunks +74 lines, -97 lines 0 comments Download
M src/pkg/runtime/proc.c View 1 2 3 4 5 6 7 18 chunks +69 lines, -72 lines 0 comments Download
M src/pkg/runtime/race.c View 1 2 3 4 5 5 chunks +0 lines, -11 lines 0 comments Download
M src/pkg/runtime/runtime.h View 1 2 3 4 5 6 7 18 chunks +29 lines, -35 lines 0 comments Download
M src/pkg/runtime/stack.h View 1 2 3 4 5 6 7 6 chunks +92 lines, -27 lines 0 comments Download
M src/pkg/runtime/stack.c View 1 2 3 4 5 6 7 1 chunk +589 lines, -288 lines 0 comments Download
M src/pkg/runtime/symtab.c View 1 2 3 4 5 6 7 1 chunk +5 lines, -0 lines 0 comments Download
M src/pkg/runtime/traceback_arm.c View 1 2 3 4 5 6 7 3 chunks +0 lines, -24 lines 0 comments Download
M src/pkg/runtime/traceback_x86.c View 1 2 3 4 5 6 7 6 chunks +11 lines, -32 lines 0 comments Download
M test/fixedbugs/issue5856.go View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b