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

Issue 11406044: code review 11406044: runtime: use funcdata to supply garbage collection info... (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
11 years, 8 months ago by rsc
Modified:
11 years, 8 months ago
Reviewers:
dvyukov, cshapiro1
CC:
golang-dev, dvyukov, cshapiro1
Visibility:
Public.

Description

runtime: use funcdata to supply garbage collection information This CL introduces a FUNCDATA number for runtime-specific garbage collection metadata, changes the C and Go compilers to emit that metadata, and changes the runtime to expect it. The old pseudo-instructions that carried this information are gone, as is the linker code to process them.

Patch Set 1 #

Patch Set 2 : diff -r 1203e3d32534 https://code.google.com/p/go/ #

Patch Set 3 : diff -r 1203e3d32534 https://code.google.com/p/go/ #

Patch Set 4 : diff -r 1203e3d32534 https://code.google.com/p/go/ #

Patch Set 5 : diff -r dfd68fd535b8 https://code.google.com/p/go/ #

Patch Set 6 : diff -r 64b4f1c2e1d3 https://code.google.com/p/go/ #

Total comments: 8

Patch Set 7 : diff -r beabb2116694 https://code.google.com/p/go/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+126 lines, -275 lines) Patch
M src/cmd/5c/reg.c View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M src/cmd/5g/peep.c View 1 2 chunks +1 line, -6 lines 0 comments Download
M src/cmd/5g/reg.c View 1 1 chunk +0 lines, -3 lines 0 comments Download
M src/cmd/5l/5.out.h View 1 1 chunk +0 lines, -5 lines 0 comments Download
M src/cmd/5l/l.h View 1 2 chunks +0 lines, -3 lines 0 comments Download
M src/cmd/5l/obj.c View 1 2 chunks +0 lines, -40 lines 0 comments Download
M src/cmd/5l/span.c View 1 1 chunk +0 lines, -1 line 0 comments Download
M src/cmd/6c/reg.c View 1 2 3 2 chunks +2 lines, -0 lines 0 comments Download
M src/cmd/6g/peep.c View 1 1 chunk +0 lines, -3 lines 0 comments Download
M src/cmd/6g/reg.c View 1 1 chunk +0 lines, -3 lines 0 comments Download
M src/cmd/6l/6.out.h View 1 1 chunk +0 lines, -5 lines 0 comments Download
M src/cmd/6l/l.h View 1 1 chunk +0 lines, -3 lines 0 comments Download
M src/cmd/6l/obj.c View 1 2 chunks +0 lines, -40 lines 0 comments Download
M src/cmd/8c/reg.c View 1 2 3 2 chunks +2 lines, -0 lines 0 comments Download
M src/cmd/8g/peep.c View 1 1 chunk +0 lines, -3 lines 0 comments Download
M src/cmd/8g/reg.c View 1 1 chunk +0 lines, -3 lines 0 comments Download
M src/cmd/8l/8.out.h View 1 1 chunk +0 lines, -5 lines 0 comments Download
M src/cmd/8l/l.h View 1 1 chunk +0 lines, -3 lines 0 comments Download
M src/cmd/8l/obj.c View 1 2 chunks +0 lines, -40 lines 0 comments Download
M src/cmd/cc/pgen.c View 1 2 3 4 5 6 3 chunks +33 lines, -2 lines 0 comments Download
M src/cmd/gc/pgen.c View 1 2 3 4 5 6 7 chunks +34 lines, -22 lines 0 comments Download
M src/cmd/ld/lib.c View 1 2 3 4 5 6 4 chunks +7 lines, -24 lines 0 comments Download
M src/pkg/runtime/funcdata.h View 1 1 chunk +3 lines, -1 line 0 comments Download
M src/pkg/runtime/mgc0.c View 1 2 3 4 5 6 5 chunks +28 lines, -8 lines 0 comments Download
M src/pkg/runtime/runtime.h View 1 2 3 4 5 6 3 chunks +5 lines, -5 lines 0 comments Download
M src/pkg/runtime/symtab.c View 1 1 chunk +4 lines, -4 lines 0 comments Download
M src/pkg/runtime/traceback_arm.c View 1 2 3 4 5 6 3 chunks +4 lines, -23 lines 0 comments Download
M src/pkg/runtime/traceback_x86.c View 1 2 3 4 5 6 2 chunks +2 lines, -20 lines 0 comments Download

Messages

Total messages: 10
rsc
Hello golang-dev@googlegroups.com, I'd like you to review this change to https://code.google.com/p/go/
11 years, 8 months ago (2013-07-18 19:20:35 UTC) #1
rsc
I updated the CL to bring the C compiler back to where it was, emitting ...
11 years, 8 months ago (2013-07-18 19:37:40 UTC) #2
dvyukov
LGTM for runtime part
11 years, 8 months ago (2013-07-19 12:15:02 UTC) #3
rsc
Carl, do you want to look at this? Russ
11 years, 8 months ago (2013-07-19 15:22:03 UTC) #4
cshapiro1
I'll take a look at it shortly. On Fri, Jul 19, 2013 at 8:22 AM, ...
11 years, 8 months ago (2013-07-19 17:00:39 UTC) #5
cshapiro1
lgtm to me, just a few minor questions and comments
11 years, 8 months ago (2013-07-19 17:42:04 UTC) #6
cshapiro1
https://codereview.appspot.com/11406044/diff/14001/src/cmd/gc/pgen.c File src/cmd/gc/pgen.c (right): https://codereview.appspot.com/11406044/diff/14001/src/cmd/gc/pgen.c#newcode96 src/cmd/gc/pgen.c:96: snprint(namebuf, sizeof namebuf, "gc·%d", ngcsym++); I am not familiar ...
11 years, 8 months ago (2013-07-19 17:43:51 UTC) #7
rsc
https://codereview.appspot.com/11406044/diff/14001/src/cmd/gc/pgen.c File src/cmd/gc/pgen.c (right): https://codereview.appspot.com/11406044/diff/14001/src/cmd/gc/pgen.c#newcode96 src/cmd/gc/pgen.c:96: snprint(namebuf, sizeof namebuf, "gc·%d", ngcsym++); On 2013/07/19 17:43:52, cshapiro1 ...
11 years, 8 months ago (2013-07-19 17:54:34 UTC) #8
cshapiro1
sgtm
11 years, 8 months ago (2013-07-19 18:39:10 UTC) #9
rsc
11 years, 8 months ago (2013-07-19 20:04:12 UTC) #10
*** Submitted as https://code.google.com/p/go/source/detail?r=ea5c70726372 ***

runtime: use funcdata to supply garbage collection information

This CL introduces a FUNCDATA number for runtime-specific
garbage collection metadata, changes the C and Go compilers
to emit that metadata, and changes the runtime to expect it.

The old pseudo-instructions that carried this information
are gone, as is the linker code to process them.

R=golang-dev, dvyukov, cshapiro
CC=golang-dev
https://codereview.appspot.com/11406044
Sign in to reply to this message.

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