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

Issue 6245069: code review 6245069: cmd/gc: contiguous loop layout (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
12 years, 10 months ago by rsc
Modified:
12 years, 10 months ago
Reviewers:
ken3
CC:
ken2, golang-dev
Visibility:
Public.

Description

cmd/gc: contiguous loop layout Drop expecttaken function in favor of extra argument to gbranch and bgen. Mark loop condition as likely to be true, so that loops are generated inline. The main benefit here is contiguous code when trying to read the generated assembly. It has only minor effects on the timing, and they mostly cancel the minor effects that aligning function entry points had. One exception: both changes made Fannkuch faster. Compared to before CL 6244066 (before aligned functions) benchmark old ns/op new ns/op delta BenchmarkBinaryTree17 4222117400 4201958800 -0.48% BenchmarkFannkuch11 3462631800 3215908600 -7.13% BenchmarkGobDecode 20887622 20899164 +0.06% BenchmarkGobEncode 9548772 9439083 -1.15% BenchmarkGzip 151687 152060 +0.25% BenchmarkGunzip 8742 8711 -0.35% BenchmarkJSONEncode 62730560 62686700 -0.07% BenchmarkJSONDecode 252569180 252368960 -0.08% BenchmarkMandelbrot200 5267599 5252531 -0.29% BenchmarkRevcomp25M 980813500 985248400 +0.45% BenchmarkTemplate 361259100 357414680 -1.06% Compared to tip (aligned functions): benchmark old ns/op new ns/op delta BenchmarkBinaryTree17 4140739800 4201958800 +1.48% BenchmarkFannkuch11 3259914400 3215908600 -1.35% BenchmarkGobDecode 20620222 20899164 +1.35% BenchmarkGobEncode 9384886 9439083 +0.58% BenchmarkGzip 150333 152060 +1.15% BenchmarkGunzip 8741 8711 -0.34% BenchmarkJSONEncode 65210990 62686700 -3.87% BenchmarkJSONDecode 249394860 252368960 +1.19% BenchmarkMandelbrot200 5273394 5252531 -0.40% BenchmarkRevcomp25M 996013800 985248400 -1.08% BenchmarkTemplate 360620840 357414680 -0.89%

Patch Set 1 #

Patch Set 2 : diff -r 9d81d605ff59 https://go.googlecode.com/hg/ #

Patch Set 3 : diff -r 1a7ca75f2648 https://go.googlecode.com/hg/ #

Patch Set 4 : diff -r 9bec1eb0e1c1 https://go.googlecode.com/hg/ #

Patch Set 5 : diff -r ad32776915c8 https://go.googlecode.com/hg/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+247 lines, -254 lines) Patch
M src/cmd/5g/cgen.c View 1 2 3 4 23 chunks +43 lines, -40 lines 0 comments Download
M src/cmd/5g/cgen64.c View 1 2 3 14 chunks +18 lines, -18 lines 0 comments Download
M src/cmd/5g/gg.h View 1 2 3 3 chunks +2 lines, -3 lines 0 comments Download
M src/cmd/5g/ggen.c View 1 2 3 4 chunks +5 lines, -5 lines 0 comments Download
M src/cmd/5g/gsubr.c View 1 2 3 5 chunks +10 lines, -5 lines 0 comments Download
M src/cmd/6g/cgen.c View 1 2 3 4 16 chunks +35 lines, -37 lines 0 comments Download
M src/cmd/6g/gg.h View 1 2 3 4 3 chunks +1 line, -4 lines 0 comments Download
M src/cmd/6g/ggen.c View 1 2 3 7 chunks +11 lines, -13 lines 0 comments Download
M src/cmd/6g/gsubr.c View 1 2 8 chunks +20 lines, -24 lines 0 comments Download
M src/cmd/6g/reg.c View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M src/cmd/8g/cgen.c View 1 2 3 4 19 chunks +38 lines, -40 lines 0 comments Download
M src/cmd/8g/cgen64.c View 1 2 3 13 chunks +18 lines, -18 lines 0 comments Download
M src/cmd/8g/gg.h View 1 2 3 4 4 chunks +2 lines, -5 lines 0 comments Download
M src/cmd/8g/ggen.c View 1 2 3 5 chunks +13 lines, -12 lines 0 comments Download
M src/cmd/8g/gsubr.c View 1 2 3 9 chunks +23 lines, -22 lines 0 comments Download
M src/cmd/8g/reg.c View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M src/cmd/gc/cplx.c View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M src/cmd/gc/gen.c View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M src/cmd/gc/go.h View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download

Messages

Total messages: 3
rsc
Hello ken2 (cc: golang-dev@googlegroups.com), I'd like you to review this change to https://go.googlecode.com/hg/
12 years, 10 months ago (2012-05-30 22:07:36 UTC) #1
rsc
*** Submitted as http://code.google.com/p/go/source/detail?r=31c459151a78 *** cmd/gc: contiguous loop layout Drop expecttaken function in favor of ...
12 years, 10 months ago (2012-05-30 22:07:47 UTC) #2
ken3
12 years, 10 months ago (2012-05-31 04:16:22 UTC) #3
lgtm
Sign in to reply to this message.

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