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

Issue 11590043: code review 11590043: runtime: cleanup: use ArgsSizeUnknown to mark all functions (Closed)

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

Description

runtime: cleanup: use ArgsSizeUnknown to mark all functions whose argument size is unknown (C vararg functions, and assembly code without an explicit specification). We used to use 0 to mean "unknown" and 1 to mean "zero". Now we use ArgsSizeUnknown (0x80000000) to mean "unknown".

Patch Set 1 #

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

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

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

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

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

Total comments: 4

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

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

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

Unified diffs Side-by-side diffs Delta from patch set Stats (+2429 lines, -1646 lines) Patch
M src/cmd/5a/a.y View 1 2 3 4 5 6 2 chunks +5 lines, -4 lines 0 comments Download
M src/cmd/5a/y.tab.h View 1 2 3 4 5 6 7 3 chunks +25 lines, -21 lines 0 comments Download
M src/cmd/5a/y.tab.c View 1 2 3 4 5 6 7 89 chunks +703 lines, -444 lines 0 comments Download
M src/cmd/5c/sgen.c View 1 2 3 4 5 6 1 chunk +3 lines, -10 lines 0 comments Download
M src/cmd/6a/a.y View 1 2 3 4 5 6 2 chunks +5 lines, -10 lines 0 comments Download
M src/cmd/6a/y.tab.h View 1 2 3 4 5 6 7 3 chunks +25 lines, -21 lines 0 comments Download
M src/cmd/6a/y.tab.c View 1 2 3 4 5 6 7 112 chunks +882 lines, -600 lines 0 comments Download
M src/cmd/6c/sgen.c View 1 1 chunk +1 line, -10 lines 0 comments Download
M src/cmd/8a/a.y View 1 2 3 4 5 6 2 chunks +3 lines, -10 lines 0 comments Download
M src/cmd/8a/y.tab.h View 1 2 3 4 5 6 7 4 chunks +25 lines, -21 lines 0 comments Download
M src/cmd/8a/y.tab.c View 1 2 3 4 5 6 7 110 chunks +735 lines, -464 lines 0 comments Download
M src/cmd/8c/sgen.c View 1 2 3 4 5 6 1 chunk +2 lines, -9 lines 0 comments Download
M src/cmd/cc/pgen.c View 1 2 3 4 5 6 2 chunks +4 lines, -3 lines 0 comments Download
M src/cmd/ld/lib.h View 1 2 3 4 5 6 7 1 chunk +0 lines, -7 lines 0 comments Download
M src/cmd/ld/lib.c View 1 2 3 4 5 6 2 chunks +3 lines, -6 lines 0 comments Download
M src/pkg/runtime/funcdata.h View 1 2 3 4 5 6 7 1 chunk +6 lines, -0 lines 0 comments Download
M src/pkg/runtime/runtime.h View 1 2 3 4 5 6 1 chunk +0 lines, -6 lines 0 comments Download
M src/pkg/runtime/traceback_arm.c View 1 2 3 4 5 6 7 1 chunk +1 line, -0 lines 0 comments Download
M src/pkg/runtime/traceback_x86.c View 1 2 3 4 5 6 7 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 3
khr
Hello golang-dev@googlegroups.com, I'd like you to review this change to https://khr%40golang.org@code.google.com/p/go/
11 years, 8 months ago (2013-07-19 17:33:59 UTC) #1
rsc
LGTM Thanks very much. https://codereview.appspot.com/11590043/diff/13001/src/cmd/5a/a.h File src/cmd/5a/a.h (right): https://codereview.appspot.com/11590043/diff/13001/src/cmd/5a/a.h#newcode130 src/cmd/5a/a.h:130: // This value is known ...
11 years, 8 months ago (2013-07-19 17:48:50 UTC) #2
khr
11 years, 8 months ago (2013-07-19 18:19:21 UTC) #3
*** Submitted as https://code.google.com/p/go/source/detail?r=522153101e0f ***

runtime: cleanup: use ArgsSizeUnknown to mark all functions
whose argument size is unknown (C vararg functions, and
assembly code without an explicit specification).

We used to use 0 to mean "unknown" and 1 to mean "zero".
Now we use ArgsSizeUnknown (0x80000000) to mean "unknown".

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

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