Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(751)

Issue 1308013002: Addressed review comments from previous CLs; adding more Symbols::FromConcat (Closed)

Created:
5 years, 4 months ago by srdjan
Modified:
5 years, 4 months ago
CC:
reviews_dartlang.org, vm-dev_dartlang.org
Base URL:
https://github.com/dart-lang/sdk.git@master
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Addressed review comments from previous CLs; adding more Symbols::FromConcat BUG= R=hausner@google.com Committed: https://github.com/dart-lang/sdk/commit/2b6219fd5a8a7bdfeaf29efbcbf3cf045665411c

Patch Set 1 #

Total comments: 4

Patch Set 2 : Using zone() when allocating Zone objects #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+38 lines, -34 lines) Patch
M runtime/vm/flow_graph_compiler.h View 2 chunks +11 lines, -4 lines 2 comments Download
M runtime/vm/flow_graph_compiler.cc View 1 7 chunks +19 lines, -19 lines 0 comments Download
M runtime/vm/object.cc View 3 chunks +3 lines, -6 lines 0 comments Download
M runtime/vm/parser.cc View 3 chunks +5 lines, -5 lines 0 comments Download

Messages

Total messages: 11 (3 generated)
srdjan
5 years, 4 months ago (2015-08-21 17:05:39 UTC) #2
koda
https://codereview.chromium.org/1308013002/diff/1/runtime/vm/flow_graph_compiler.cc File runtime/vm/flow_graph_compiler.cc (right): https://codereview.chromium.org/1308013002/diff/1/runtime/vm/flow_graph_compiler.cc#newcode721 runtime/vm/flow_graph_compiler.cc:721: new StaticCallsStruct(assembler()->CodeSize(), &func, NULL)); Now we need to fetch ...
5 years, 4 months ago (2015-08-21 17:21:14 UTC) #4
srdjan
https://codereview.chromium.org/1308013002/diff/1/runtime/vm/flow_graph_compiler.cc File runtime/vm/flow_graph_compiler.cc (right): https://codereview.chromium.org/1308013002/diff/1/runtime/vm/flow_graph_compiler.cc#newcode721 runtime/vm/flow_graph_compiler.cc:721: new StaticCallsStruct(assembler()->CodeSize(), &func, NULL)); On 2015/08/21 17:21:14, koda wrote: ...
5 years, 4 months ago (2015-08-21 17:33:41 UTC) #5
hausner
lgtm https://codereview.chromium.org/1308013002/diff/1/runtime/vm/flow_graph_compiler.cc File runtime/vm/flow_graph_compiler.cc (right): https://codereview.chromium.org/1308013002/diff/1/runtime/vm/flow_graph_compiler.cc#newcode721 runtime/vm/flow_graph_compiler.cc:721: new StaticCallsStruct(assembler()->CodeSize(), &func, NULL)); On 2015/08/21 17:33:41, srdjan ...
5 years, 4 months ago (2015-08-21 17:41:20 UTC) #6
srdjan
https://codereview.chromium.org/1308013002/diff/1/runtime/vm/flow_graph_compiler.cc File runtime/vm/flow_graph_compiler.cc (right): https://codereview.chromium.org/1308013002/diff/1/runtime/vm/flow_graph_compiler.cc#newcode721 runtime/vm/flow_graph_compiler.cc:721: new StaticCallsStruct(assembler()->CodeSize(), &func, NULL)); On 2015/08/21 17:41:20, hausner wrote: ...
5 years, 4 months ago (2015-08-21 18:12:14 UTC) #7
srdjan
Committed patchset #2 (id:20001) manually as 2b6219fd5a8a7bdfeaf29efbcbf3cf045665411c (presubmit successful).
5 years, 4 months ago (2015-08-21 18:17:26 UTC) #8
Florian Schneider
style dbc: https://codereview.chromium.org/1308013002/diff/20001/runtime/vm/flow_graph_compiler.h File runtime/vm/flow_graph_compiler.h (right): https://codereview.chromium.org/1308013002/diff/20001/runtime/vm/flow_graph_compiler.h#newcode666 runtime/vm/flow_graph_compiler.h:666: class StaticCallsStruct : public ZoneAllocated { We ...
5 years, 4 months ago (2015-08-24 07:04:07 UTC) #10
srdjan
5 years, 4 months ago (2015-08-24 18:02:07 UTC) #11
Message was sent while issue was closed.
https://codereview.chromium.org/1308013002/diff/20001/runtime/vm/flow_graph_c...
File runtime/vm/flow_graph_compiler.h (right):

https://codereview.chromium.org/1308013002/diff/20001/runtime/vm/flow_graph_c...
runtime/vm/flow_graph_compiler.h:666: class StaticCallsStruct : public
ZoneAllocated {
On 2015/08/24 07:04:06, Florian Schneider wrote:
> We usually make classes with public member variables structs. This way you
also
> don't need to make members public explicitly and you can remove 'public:'
below.

There is quite a bit of different opinion about when to use struct when not. It
seems that most people here agree on:

Use struct if all members are public and no methods/constructors are defined. It
is OK to have a class with all public members.

Powered by Google App Engine
This is Rietveld 408576698