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

Issue 12613044: code review 12613044: runtime: convert .s textflags from numbers to symbolic ... (Closed)

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

Description

runtime: convert .s textflags from numbers to symbolic constants. Remove NOPROF/DUPOK from everything. Edits done with a script, except pclinetest.asm which depended on the DUPOK flag on main().

Patch Set 1 #

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

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

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

Unified diffs Side-by-side diffs Delta from patch set Stats (+575 lines, -514 lines) Patch
M src/pkg/debug/gosym/pclinetest.asm View 1 3 chunks +7 lines, -9 lines 0 comments Download
M src/pkg/runtime/memclr_arm.s View 1 1 chunk +3 lines, -1 line 0 comments Download
M src/pkg/runtime/memmove_386.s View 1 1 chunk +3 lines, -1 line 0 comments Download
M src/pkg/runtime/memmove_amd64.s View 1 1 chunk +3 lines, -1 line 0 comments Download
M src/pkg/runtime/memmove_arm.s View 1 2 chunks +3 lines, -1 line 0 comments Download
M src/pkg/runtime/race_amd64.s View 1 1 chunk +3 lines, -1 line 0 comments Download
M src/pkg/runtime/rt0_darwin_386.s View 1 2 chunks +4 lines, -2 lines 0 comments Download
M src/pkg/runtime/rt0_darwin_amd64.s View 1 1 chunk +4 lines, -2 lines 0 comments Download
M src/pkg/runtime/rt0_freebsd_386.s View 1 2 chunks +4 lines, -2 lines 0 comments Download
M src/pkg/runtime/rt0_freebsd_amd64.s View 1 1 chunk +4 lines, -2 lines 0 comments Download
M src/pkg/runtime/rt0_freebsd_arm.s View 1 1 chunk +3 lines, -1 line 0 comments Download
M src/pkg/runtime/rt0_linux_386.s View 1 2 chunks +5 lines, -3 lines 0 comments Download
M src/pkg/runtime/rt0_linux_amd64.s View 1 1 chunk +4 lines, -2 lines 0 comments Download
M src/pkg/runtime/rt0_linux_arm.s View 1 3 chunks +5 lines, -3 lines 0 comments Download
M src/pkg/runtime/rt0_netbsd_386.s View 1 2 chunks +4 lines, -2 lines 0 comments Download
M src/pkg/runtime/rt0_netbsd_amd64.s View 1 1 chunk +4 lines, -2 lines 0 comments Download
M src/pkg/runtime/rt0_netbsd_arm.s View 1 1 chunk +3 lines, -1 line 0 comments Download
M src/pkg/runtime/rt0_openbsd_386.s View 1 2 chunks +4 lines, -2 lines 0 comments Download
M src/pkg/runtime/rt0_openbsd_amd64.s View 1 1 chunk +4 lines, -2 lines 0 comments Download
M src/pkg/runtime/rt0_plan9_386.s View 1 1 chunk +3 lines, -1 line 0 comments Download
M src/pkg/runtime/rt0_plan9_amd64.s View 1 1 chunk +3 lines, -1 line 0 comments Download
M src/pkg/runtime/rt0_windows_386.s View 1 2 chunks +4 lines, -2 lines 0 comments Download
M src/pkg/runtime/rt0_windows_amd64.s View 1 1 chunk +3 lines, -2 lines 0 comments Download
M src/pkg/runtime/sys_darwin_386.s View 1 17 chunks +36 lines, -35 lines 0 comments Download
M src/pkg/runtime/sys_darwin_amd64.s View 1 27 chunks +35 lines, -34 lines 0 comments Download
M src/pkg/runtime/sys_freebsd_386.s View 1 14 chunks +30 lines, -29 lines 0 comments Download
M src/pkg/runtime/sys_freebsd_amd64.s View 1 22 chunks +29 lines, -28 lines 0 comments Download
M src/pkg/runtime/sys_freebsd_arm.s View 1 17 chunks +27 lines, -26 lines 0 comments Download
M src/pkg/runtime/sys_linux_386.s View 1 24 chunks +32 lines, -31 lines 0 comments Download
M src/pkg/runtime/sys_linux_amd64.s View 1 23 chunks +32 lines, -31 lines 0 comments Download
M src/pkg/runtime/sys_linux_arm.s View 1 26 chunks +34 lines, -33 lines 0 comments Download
M src/pkg/runtime/sys_netbsd_386.s View 1 13 chunks +30 lines, -29 lines 0 comments Download
M src/pkg/runtime/sys_netbsd_amd64.s View 1 22 chunks +29 lines, -28 lines 0 comments Download
M src/pkg/runtime/sys_netbsd_arm.s View 1 18 chunks +30 lines, -29 lines 0 comments Download
M src/pkg/runtime/sys_openbsd_386.s View 1 15 chunks +29 lines, -28 lines 0 comments Download
M src/pkg/runtime/sys_openbsd_amd64.s View 1 23 chunks +28 lines, -27 lines 0 comments Download
M src/pkg/runtime/sys_plan9_386.s View 1 5 chunks +19 lines, -18 lines 0 comments Download
M src/pkg/runtime/sys_plan9_amd64.s View 1 5 chunks +22 lines, -21 lines 0 comments Download
M src/pkg/runtime/sys_windows_386.s View 1 11 chunks +17 lines, -16 lines 0 comments Download
M src/pkg/runtime/sys_windows_amd64.s View 1 9 chunks +17 lines, -16 lines 0 comments Download
M src/pkg/runtime/vlop_386.s View 1 2 chunks +4 lines, -2 lines 0 comments Download
M src/pkg/runtime/vlop_arm.s View 1 7 chunks +8 lines, -7 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, 7 months ago (2013-08-07 18:23:21 UTC) #1
bradfitz
LGTM Builds on Mac and Linux too. On Wed, Aug 7, 2013 at 11:23 AM, ...
11 years, 7 months ago (2013-08-07 18:43:17 UTC) #2
khr
11 years, 7 months ago (2013-08-07 19:20:08 UTC) #3
*** Submitted as https://code.google.com/p/go/source/detail?r=6058f523a441 ***

runtime: convert .s textflags from numbers to symbolic constants.
Remove NOPROF/DUPOK from everything.

Edits done with a script, except pclinetest.asm which depended
on the DUPOK flag on main().

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

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