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

Issue 1987042: code review 1987042: Dwarf output for 6l. (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
14 years, 11 months ago by lvd
Modified:
14 years, 11 months ago
Reviewers:
CC:
rsc, r, ken2, golang-dev
Visibility:
Public.

Description

Dwarf output for 6l. Part 1, general scaffolding and pc/lc sections.

Patch Set 1 #

Patch Set 2 : code review 1987042: Dwarf output for 6l. #

Patch Set 3 : code review 1987042: Dwarf output for 6l. #

Patch Set 4 : code review 1987042: Dwarf output for 6l. #

Patch Set 5 : code review 1987042: Dwarf output for 6l. #

Total comments: 23

Patch Set 6 : code review 1987042: Dwarf output for 6l. #

Total comments: 166

Patch Set 7 : code review 1987042: Dwarf output for 6l. #

Total comments: 22

Patch Set 8 : code review 1987042: Dwarf output for 6l. #

Patch Set 9 : code review 1987042: Dwarf output for 6l. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1337 lines, -25 lines) Patch
M src/cmd/6l/Makefile View 1 2 3 4 5 2 chunks +2 lines, -0 lines 0 comments Download
M src/cmd/6l/asm.c View 1 2 3 4 5 6 8 chunks +35 lines, -24 lines 0 comments Download
M src/cmd/6l/l.h View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M src/cmd/6l/obj.c View 1 2 3 4 5 6 3 chunks +2 lines, -1 line 0 comments Download
A src/cmd/ld/dwarf.h View 1 2 3 4 5 1 chunk +28 lines, -0 lines 0 comments Download
A src/cmd/ld/dwarf.c View 1 2 3 4 5 6 7 8 1 chunk +815 lines, -0 lines 0 comments Download
A src/cmd/ld/dwarf_defs.h View 2 3 4 5 6 7 8 1 chunk +454 lines, -0 lines 0 comments Download

Messages

Total messages: 18
lvd
Hello rsc, r2, ken2 (cc: golang-dev@googlegroups.com), I'd like you to review this change.
14 years, 11 months ago (2010-08-16 21:20:59 UTC) #1
lvd
sorry i expected hg mail to let me write some lines to comment. this is ...
14 years, 11 months ago (2010-08-16 21:25:39 UTC) #2
rsc1
syntactic stuff http://codereview.appspot.com/1987042/diff/13001/3008 File src/cmd/6l/Makefile (right): http://codereview.appspot.com/1987042/diff/13001/3008#newcode22 src/cmd/6l/Makefile:22: dwarf.$O\ sort list delete extra blank line ...
14 years, 11 months ago (2010-08-16 21:29:00 UTC) #3
rsc
this is very cool, by the way. i will digest the semantic stuff in a ...
14 years, 11 months ago (2010-08-16 21:30:12 UTC) #4
lvd
mostly done. http://codereview.appspot.com/1987042/diff/13001/3008 File src/cmd/6l/Makefile (right): http://codereview.appspot.com/1987042/diff/13001/3008#newcode22 src/cmd/6l/Makefile:22: dwarf.$O\ On 2010/08/16 21:29:00, rsc1 wrote: > ...
14 years, 11 months ago (2010-08-16 21:49:56 UTC) #5
rsc
> I'll delete everyting marked //TEST before submitting. > this is the easiest way to ...
14 years, 11 months ago (2010-08-16 21:59:27 UTC) #6
rsc1
Another volley of comments. I apologize for all the C style stuff but it will ...
14 years, 11 months ago (2010-08-17 05:56:42 UTC) #7
lvd
i didn't buy the 'distraction by indentation' argument when i joined google and i don't ...
14 years, 11 months ago (2010-08-17 11:05:34 UTC) #8
rsc
On Tue, Aug 17, 2010 at 04:05, <lvd@google.com> wrote: > i didn't buy the 'distraction ...
14 years, 11 months ago (2010-08-17 16:05:48 UTC) #9
lvd
On Tue, Aug 17, 2010 at 18:05, Russ Cox <rsc@golang.org> wrote: > On Tue, Aug ...
14 years, 11 months ago (2010-08-17 16:18:23 UTC) #10
rsc1
LGTM few more style things; fix and submit http://codereview.appspot.com/1987042/diff/28001/29005 File src/cmd/ld/dwarf.c (right): http://codereview.appspot.com/1987042/diff/28001/29005#newcode134 src/cmd/ld/dwarf.c:134: uint8 ...
14 years, 11 months ago (2010-08-17 23:44:06 UTC) #11
lvd
all done, but before i submit, i'll check if this doesn't slow down src/all.bash noticably, ...
14 years, 11 months ago (2010-08-18 07:40:59 UTC) #12
lvd
no noticable tijming differences on make.bash (but i guess 6l's part of that isnt dominating). ...
14 years, 11 months ago (2010-08-18 10:00:33 UTC) #13
lvd
On Wed, Aug 18, 2010 at 12:00, Luuk van Dijk <lvd@google.com> wrote: > no noticable ...
14 years, 11 months ago (2010-08-18 10:11:20 UTC) #14
rsc
> i'd like to try gdb-ing a larger program for sanity checking before > submitting. ...
14 years, 11 months ago (2010-08-18 12:55:57 UTC) #15
lvd
works not unreasonable. stepping into a go statement jumps into closure.c and it would be ...
14 years, 11 months ago (2010-08-18 14:03:22 UTC) #16
rsc
you should submit what you have and continue work in a different CL. On Wed, ...
14 years, 11 months ago (2010-08-18 14:20:23 UTC) #17
lvd
14 years, 11 months ago (2010-08-18 14:53:33 UTC) #18
*** Submitted as http://code.google.com/p/go/source/detail?r=c8c57ec793f3 ***

Dwarf output for 6l.
Part 1, general scaffolding and pc/lc sections.

R=rsc, r, ken2
CC=golang-dev
http://codereview.appspot.com/1987042
Sign in to reply to this message.

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