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

Issue 6337058: code review 6337058: cmd/gc: cache itab lookup in convT2I. (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
12 years, 9 months ago by nigeltao
Modified:
12 years, 9 months ago
Reviewers:
cw
CC:
rsc, bradfitz, peterGo, DMorsing, dave_cheney.net, luriel, golang-dev
Visibility:
Public.

Description

cmd/gc: cache itab lookup in convT2I. There may be further savings if convT2I can avoid the function call if the cache is good and T is uintptr-shaped, a la convT2E, but that will be a follow-up CL. src/pkg/runtime: benchmark old ns/op new ns/op delta BenchmarkConvT2ISmall 43 15 -64.01% BenchmarkConvT2IUintptr 45 14 -67.48% BenchmarkConvT2ILarge 130 101 -22.31% test/bench/go1: benchmark old ns/op new ns/op delta BenchmarkBinaryTree17 8588997000 8499058000 -1.05% BenchmarkFannkuch11 5300392000 5358093000 +1.09% BenchmarkGobDecode 30295580 31040190 +2.46% BenchmarkGobEncode 18102070 17675650 -2.36% BenchmarkGzip 774191400 771591400 -0.34% BenchmarkGunzip 245915100 247464100 +0.63% BenchmarkJSONEncode 123577000 121423050 -1.74% BenchmarkJSONDecode 451969800 596256200 +31.92% BenchmarkMandelbrot200 10060050 10072880 +0.13% BenchmarkParse 10989840 11037710 +0.44% BenchmarkRevcomp 1782666000 1716864000 -3.69% BenchmarkTemplate 798286600 723234400 -9.40%

Patch Set 1 #

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

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

Total comments: 4

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

Total comments: 2

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

Unified diffs Side-by-side diffs Delta from patch set Stats (+240 lines, -92 lines) Patch
M src/cmd/5g/gsubr.c View 1 2 chunks +4 lines, -3 lines 0 comments Download
M src/cmd/6g/gsubr.c View 1 2 chunks +4 lines, -3 lines 0 comments Download
M src/cmd/8g/gsubr.c View 1 2 chunks +4 lines, -3 lines 0 comments Download
M src/cmd/gc/builtin.c View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M src/cmd/gc/go.h View 1 2 chunks +2 lines, -1 line 0 comments Download
M src/cmd/gc/lex.c View 1 1 chunk +4 lines, -0 lines 0 comments Download
M src/cmd/gc/obj.c View 1 1 chunk +1 line, -1 line 0 comments Download
M src/cmd/gc/reflect.c View 1 3 chunks +3 lines, -3 lines 0 comments Download
M src/cmd/gc/runtime.go View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M src/cmd/gc/walk.c View 1 2 3 2 chunks +17 lines, -0 lines 0 comments Download
M src/pkg/runtime/iface.c View 1 2 3 4 1 chunk +10 lines, -4 lines 0 comments Download
M src/pkg/runtime/iface_test.go View 1 1 chunk +64 lines, -28 lines 0 comments Download
M test/convT2X.go View 1 3 chunks +125 lines, -44 lines 0 comments Download

Messages

Total messages: 19
nigeltao
Hello rsc@golang.org (cc: daniel.morsing@gmail.com, dave@cheney.net, golang-dev@googlegroups.com), I'd like you to review this change to https://go.googlecode.com/hg/
12 years, 9 months ago (2012-06-26 17:58:38 UTC) #1
nigeltao
On 26 June 2012 10:58, <nigeltao@golang.org> wrote: > BenchmarkJSONDecode 451969800 596256200 +31.92% I'm not sure ...
12 years, 9 months ago (2012-06-26 18:01:35 UTC) #2
bradfitz
I assume BenchmarkJSONDecode isn't actually 32% slower, and this is just because code (stacks?) moved ...
12 years, 9 months ago (2012-06-26 18:01:53 UTC) #3
nigeltao
On 26 June 2012 11:01, Brad Fitzpatrick <bradfitz@golang.org> wrote: > Is BenchmarkTemplate actually faster or ...
12 years, 9 months ago (2012-06-26 18:25:36 UTC) #4
DMorsing
On Tue, 2012-06-26 at 11:01 -0700, Nigel Tao wrote: > On 26 June 2012 10:58, ...
12 years, 9 months ago (2012-06-26 19:39:59 UTC) #5
peterGo
On 2012/06/26 18:01:35, nigeltao wrote: > On 26 June 2012 10:58, <mailto:nigeltao@golang.org> wrote: > > ...
12 years, 9 months ago (2012-06-26 19:50:19 UTC) #6
nigeltao
On 26 June 2012 11:01, Brad Fitzpatrick <bradfitz@golang.org> wrote: > I assume BenchmarkJSONDecode isn't actually ...
12 years, 9 months ago (2012-06-26 20:00:32 UTC) #7
nigeltao
On 26 June 2012 12:38, Daniel Morsing <daniel.morsing@gmail.com> wrote: > It might be better to ...
12 years, 9 months ago (2012-06-26 20:19:58 UTC) #8
DMorsing
Had a closer look. http://codereview.appspot.com/6337058/diff/3/src/cmd/gc/builtin.c File src/cmd/gc/builtin.c (right): http://codereview.appspot.com/6337058/diff/3/src/cmd/gc/builtin.c#newcode44 src/cmd/gc/builtin.c:44: "func @\"\".convT2I(@\"\".typ *byte, @\"\".typ2 *byte, ...
12 years, 9 months ago (2012-06-26 20:32:59 UTC) #9
DMorsing
On Tue, 2012-06-26 at 13:19 -0700, Nigel Tao wrote: > On 26 June 2012 12:38, ...
12 years, 9 months ago (2012-06-26 20:45:42 UTC) #10
nigeltao
http://codereview.appspot.com/6337058/diff/3/src/cmd/gc/builtin.c File src/cmd/gc/builtin.c (right): http://codereview.appspot.com/6337058/diff/3/src/cmd/gc/builtin.c#newcode44 src/cmd/gc/builtin.c:44: "func @\"\".convT2I(@\"\".typ *byte, @\"\".typ2 *byte, @\"\".cache *uintptr, @\"\".elem any) ...
12 years, 9 months ago (2012-06-26 21:43:13 UTC) #11
dave_cheney.net
linux/arm: benchmark old ns/op new ns/op delta BenchmarkBinaryTree17 37654663000 36924836000 -1.94% BenchmarkFannkuch11 34433411000 34773925000 +0.99% ...
12 years, 9 months ago (2012-06-26 23:37:03 UTC) #12
DMorsing
I'd really like to know what's up with the JSON performance regression. Dave's numbers seem ...
12 years, 9 months ago (2012-06-29 13:56:57 UTC) #13
rsc
LGTM http://codereview.appspot.com/6337058/diff/11003/src/pkg/runtime/iface.c File src/pkg/runtime/iface.c (right): http://codereview.appspot.com/6337058/diff/11003/src/pkg/runtime/iface.c#newcode198 src/pkg/runtime/iface.c:198: if(!*cache) On 2012/06/29 13:56:57, DMorsing wrote: > The ...
12 years, 9 months ago (2012-06-29 14:07:17 UTC) #14
luriel
On Fri, Jun 29, 2012 at 3:56 PM, <daniel.morsing@gmail.com> wrote: > I'd really like to ...
12 years, 9 months ago (2012-06-29 21:53:02 UTC) #15
rsc
The JSON numbers are troubling but not a reason to hold up this CL. Since ...
12 years, 9 months ago (2012-06-29 22:07:08 UTC) #16
nigeltao
*** Submitted as http://code.google.com/p/go/source/detail?r=ef432c94ce9c *** cmd/gc: cache itab lookup in convT2I. There may be further ...
12 years, 9 months ago (2012-07-02 23:08:37 UTC) #17
cw
> BenchmarkJSONDecode 451969800 596256200 +31.92% Any idea why this got so much slower?
12 years, 9 months ago (2012-07-03 05:07:04 UTC) #18
bradfitz
12 years, 9 months ago (2012-07-03 05:10:10 UTC) #19
On Mon, Jul 2, 2012 at 10:07 PM, Chris Wedgwood <cw@f00f.org> wrote:

> > BenchmarkJSONDecode       451969800    596256200  +31.92%
>
> Any idea why this got so much slower?
>

See http://code.google.com/p/go/issues/detail?id=3787
Sign in to reply to this message.

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