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

Issue 1174041: code review 1174041: re2: memory diet (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
14 years, 11 months ago by rsc
Modified:
14 years, 11 months ago
Reviewers:
CC:
r, re2-dev_googlegroups.com
Visibility:
Public.

Description

re2: memory diet Cut unnecessary fields from Regexp and order to align better. Combine smallsub and sub into one field. Changes sizeof(Regexp) - a single node - from 104 to 40 bytes. Use sorted array as permanent representation of character class, avoiding the bloat of STL set<>. Combined with CL 1129043, cuts storage used by a typical RE2 object by about 60%.

Patch Set 1 #

Patch Set 2 : code review 1174041: re2: memory diet #

Total comments: 6

Patch Set 3 : code review 1174041: re2: memory diet #

Patch Set 4 : code review 1174041: re2: memory diet #

Patch Set 5 : code review 1174041: re2: memory diet #

Unified diffs Side-by-side diffs Delta from patch set Stats (+572 lines, -238 lines) Patch
M re2/parse.cc View 1 2 29 chunks +87 lines, -48 lines 0 comments Download
M re2/re2.h View 1 chunk +1 line, -0 lines 0 comments Download
M re2/re2.cc View 2 chunks +6 lines, -1 line 0 comments Download
M re2/regexp.h View 1 2 7 chunks +124 lines, -49 lines 0 comments Download
M re2/regexp.cc View 1 2 19 chunks +207 lines, -80 lines 0 comments Download
M re2/simplify.cc View 1 13 chunks +36 lines, -25 lines 0 comments Download
M re2/testing/charclass_test.cc View 1 2 3 chunks +62 lines, -27 lines 0 comments Download
A re2/testing/regexp_test.cc View 1 chunk +43 lines, -0 lines 0 comments Download
M re2/tostring.cc View 1 3 chunks +3 lines, -6 lines 0 comments Download
M re2/walker-inl.h View 1 chunk +3 lines, -2 lines 0 comments Download

Messages

Total messages: 5
rsc
Hello r (cc: re2-dev@googlegroups.com), I'd like you to review this change.
14 years, 11 months ago (2010-05-10 00:33:18 UTC) #1
r
http://codereview.appspot.com/1174041/diff/2001/3004 File re2/regexp.cc (right): http://codereview.appspot.com/1174041/diff/2001/3004#newcode656 re2/regexp.cc:656: else { inconsistent braces. http://codereview.appspot.com/1174041/diff/2001/3004#newcode677 re2/regexp.cc:677: else // rr[m].lo ...
14 years, 11 months ago (2010-05-10 16:26:30 UTC) #2
rsc
All done. On Mon, May 10, 2010 at 09:26, <r@golang.org> wrote: > > http://codereview.appspot.com/1174041/diff/2001/3004 > ...
14 years, 11 months ago (2010-05-10 22:37:12 UTC) #3
r2
LGTM On May 10, 2010, at 3:37 PM, Russ Cox wrote: > All done. > ...
14 years, 11 months ago (2010-05-10 22:56:39 UTC) #4
rsc
14 years, 11 months ago (2010-05-10 23:03:42 UTC) #5
*** Submitted as http://code.google.com/p/re2/source/detail?r=8671a31359c3 ***

re2: memory diet

Cut unnecessary fields from Regexp and order to align better.
Combine smallsub and sub into one field.
Changes sizeof(Regexp) - a single node - from 104 to 40 bytes.

Use sorted array as permanent representation
of character class, avoiding the bloat of STL set<>.

Combined with CL 1129043, cuts storage used
by a typical RE2 object by about 60%.

R=r
CC=re2-dev
http://codereview.appspot.com/1174041
Sign in to reply to this message.

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