|
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.
|
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
|
|