|
cmd/gc, runtime: treat slices and strings like pointers in garbage collection
Before, a slice with cap=0 or a string with len=0 might have its
base pointer pointing beyond the actual slice/string data into
the next block. The collector had to ignore slices and strings with
cap=0 in order to avoid misinterpreting the base pointer.
Now, a slice with cap=0 or a string with len=0 still has a base
pointer pointing into the actual slice/string data, no matter what.
The collector can now always scan the pointer, which means
strings and slices are no longer special.
Fixes issue 8404.
Total comments: 2
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+249 lines, -163 lines) |
Patch |
 |
M |
src/cmd/5g/cgen.c
|
View
|
1
2
3
|
1 chunk |
+0 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/cmd/5g/gsubr.c
|
View
|
1
2
3
4
|
1 chunk |
+0 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/cmd/6g/cgen.c
|
View
|
1
2
3
|
1 chunk |
+0 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/cmd/6g/gsubr.c
|
View
|
1
2
3
4
5
|
1 chunk |
+0 lines, -2 lines |
0 comments
|
Download
|
 |
M |
src/cmd/8g/cgen.c
|
View
|
1
2
3
4
|
1 chunk |
+0 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/cmd/8g/gsubr.c
|
View
|
1
2
3
4
|
1 chunk |
+0 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/cmd/gc/fmt.c
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
src/cmd/gc/gen.c
|
View
|
1
2
3
|
3 chunks |
+40 lines, -15 lines |
0 comments
|
Download
|
 |
M |
src/cmd/gc/go.h
|
View
|
1
2
3
4
5
|
1 chunk |
+0 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/cmd/gc/plive.c
|
View
|
1
2
3
4
5
|
2 chunks |
+2 lines, -5 lines |
0 comments
|
Download
|
 |
M |
src/cmd/gc/reflect.c
|
View
|
1
2
3
4
5
|
2 chunks |
+4 lines, -4 lines |
0 comments
|
Download
|
 |
M |
src/cmd/gc/subr.c
|
View
|
1
2
3
4
5
|
1 chunk |
+6 lines, -2 lines |
0 comments
|
Download
|
 |
M |
src/cmd/gc/typecheck.c
|
View
|
1
2
3
|
1 chunk |
+0 lines, -13 lines |
0 comments
|
Download
|
 |
M |
src/cmd/gc/walk.c
|
View
|
1
2
3
4
5
|
1 chunk |
+7 lines, -7 lines |
0 comments
|
Download
|
 |
M |
src/pkg/reflect/all_test.go
|
View
|
1
2
3
|
2 chunks |
+18 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/pkg/reflect/value.go
|
View
|
1
2
3
4
5
|
2 chunks |
+12 lines, -2 lines |
0 comments
|
Download
|
 |
M |
src/pkg/runtime/gcinfo_test.go
|
View
|
1
2
3
4
5
|
9 chunks |
+27 lines, -23 lines |
0 comments
|
Download
|
 |
M |
src/pkg/runtime/heapdump.c
|
View
|
1
2
3
4
5
6
|
3 chunks |
+6 lines, -16 lines |
0 comments
|
Download
|
 |
M |
src/pkg/runtime/malloc.h
|
View
|
1
2
3
4
5
|
2 chunks |
+3 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/pkg/runtime/mgc0.h
|
View
|
1
2
3
4
5
|
1 chunk |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
src/pkg/runtime/mgc0.c
|
View
|
1
2
3
4
5
|
11 chunks |
+18 lines, -42 lines |
0 comments
|
Download
|
 |
M |
src/pkg/runtime/runtime.h
|
View
|
1
2
3
4
5
|
1 chunk |
+0 lines, -2 lines |
0 comments
|
Download
|
 |
M |
src/pkg/runtime/stack.c
|
View
|
1
2
3
4
5
|
1 chunk |
+2 lines, -13 lines |
0 comments
|
Download
|
 |
M |
test/slice3.go
|
View
|
1
|
5 chunks |
+11 lines, -7 lines |
0 comments
|
Download
|
 |
A |
test/slicecap.go
|
View
|
1
2
|
1 chunk |
+90 lines, -0 lines |
0 comments
|
Download
|
Total messages: 23
|