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

Issue 1723733002: Simplify various name flavors in VM. (Closed)

Created:
4 years, 10 months ago by regis
Modified:
4 years, 10 months ago
Reviewers:
Cutch, rmacnak, siva, Ivan Posva
CC:
reviews_dartlang.org, turnidge, rmacnak, vm-dev_dartlang.org
Base URL:
git@github.com:dart-lang/sdk.git@master
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Patch Set 1 #

Total comments: 1

Patch Set 2 : address what was discussed in meeting #

Total comments: 14

Patch Set 3 : address comments #

Total comments: 2

Patch Set 4 : address comments #

Unified diffs Side-by-side diffs Delta from patch set Stats (+158 lines, -224 lines) Patch
M runtime/lib/mirrors.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M runtime/vm/ast.h View 2 chunks +2 lines, -2 lines 0 comments Download
M runtime/vm/ast.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M runtime/vm/ast_printer.cc View 1 2 3 24 chunks +33 lines, -36 lines 0 comments Download
M runtime/vm/class_finalizer.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M runtime/vm/debugger.cc View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M runtime/vm/deopt_instructions.cc View 1 2 1 chunk +6 lines, -3 lines 0 comments Download
M runtime/vm/il_printer.cc View 1 2 3 4 chunks +4 lines, -4 lines 0 comments Download
M runtime/vm/intermediate_language_arm.cc View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M runtime/vm/intermediate_language_arm64.cc View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M runtime/vm/intermediate_language_ia32.cc View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M runtime/vm/intermediate_language_mips.cc View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M runtime/vm/intermediate_language_x64.cc View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M runtime/vm/object.h View 1 2 12 chunks +17 lines, -32 lines 0 comments Download
M runtime/vm/object.cc View 1 2 3 17 chunks +58 lines, -107 lines 0 comments Download
M runtime/vm/object_service.cc View 1 12 chunks +17 lines, -17 lines 0 comments Download
M runtime/vm/object_test.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M runtime/vm/parser.cc View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M runtime/vm/profiler_service.cc View 1 2 3 1 chunk +3 lines, -5 lines 0 comments Download
M runtime/vm/simulator_arm.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M runtime/vm/simulator_arm64.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M runtime/vm/simulator_mips.cc View 1 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 19 (3 generated)
regis
4 years, 10 months ago (2016-02-22 23:43:16 UTC) #2
regis
I am getting a couple of errors with dart_noopt. I guess some names are not ...
4 years, 10 months ago (2016-02-23 16:45:47 UTC) #3
regis
On 2016/02/23 16:45:47, regis wrote: > I am getting a couple of errors with dart_noopt. ...
4 years, 10 months ago (2016-02-23 17:02:27 UTC) #4
Cutch
https://codereview.chromium.org/1723733002/diff/1/runtime/observatory/tests/service/get_object_rpc_test.dart File runtime/observatory/tests/service/get_object_rpc_test.dart (right): https://codereview.chromium.org/1723733002/diff/1/runtime/observatory/tests/service/get_object_rpc_test.dart#newcode84 runtime/observatory/tests/service/get_object_rpc_test.dart:84: expect(result['class']['name'], equals('int')); I think we still want to use ...
4 years, 10 months ago (2016-02-23 17:42:53 UTC) #5
regis
On 2016/02/23 17:42:53, Cutch wrote: > https://codereview.chromium.org/1723733002/diff/1/runtime/observatory/tests/service/get_object_rpc_test.dart > File runtime/observatory/tests/service/get_object_rpc_test.dart (right): > > https://codereview.chromium.org/1723733002/diff/1/runtime/observatory/tests/service/get_object_rpc_test.dart#newcode84 > ...
4 years, 10 months ago (2016-02-23 18:51:00 UTC) #6
Cutch
On 2016/02/23 18:51:00, regis wrote: > On 2016/02/23 17:42:53, Cutch wrote: > > > https://codereview.chromium.org/1723733002/diff/1/runtime/observatory/tests/service/get_object_rpc_test.dart ...
4 years, 10 months ago (2016-02-23 18:55:54 UTC) #7
regis
PTAL I like this version much better. I do not change expectations for class names ...
4 years, 10 months ago (2016-02-24 23:41:40 UTC) #9
Cutch
Nice! LGTM with some suggestions. https://codereview.chromium.org/1723733002/diff/20001/runtime/vm/deopt_instructions.cc File runtime/vm/deopt_instructions.cc (right): https://codereview.chromium.org/1723733002/diff/20001/runtime/vm/deopt_instructions.cc#newcode146 runtime/vm/deopt_instructions.cc:146: // Allocate what is ...
4 years, 10 months ago (2016-02-25 00:10:07 UTC) #10
Ivan Posva
https://codereview.chromium.org/1723733002/diff/20001/runtime/vm/object.cc File runtime/vm/object.cc (right): https://codereview.chromium.org/1723733002/diff/20001/runtime/vm/object.cc#newcode3331 runtime/vm/object.cc:3331: #endif // !defined(PRODUCT) I don't think this will compile ...
4 years, 10 months ago (2016-02-25 00:22:14 UTC) #11
Ivan Posva
https://codereview.chromium.org/1723733002/diff/20001/runtime/vm/object.h File runtime/vm/object.h (right): https://codereview.chromium.org/1723733002/diff/20001/runtime/vm/object.h#newcode2104 runtime/vm/object.h:2104: RawString* ScrubbedName() const; Why do we need two different ...
4 years, 10 months ago (2016-02-25 00:23:41 UTC) #12
regis
https://codereview.chromium.org/1723733002/diff/20001/runtime/vm/object.cc File runtime/vm/object.cc (right): https://codereview.chromium.org/1723733002/diff/20001/runtime/vm/object.cc#newcode3331 runtime/vm/object.cc:3331: #endif // !defined(PRODUCT) On 2016/02/25 00:22:14, Ivan Posva wrote: ...
4 years, 10 months ago (2016-02-25 00:34:12 UTC) #13
Ivan Posva
On 2016/02/25 00:34:12, regis wrote: > https://codereview.chromium.org/1723733002/diff/20001/runtime/vm/object.cc > File runtime/vm/object.cc (right): > > https://codereview.chromium.org/1723733002/diff/20001/runtime/vm/object.cc#newcode3331 > ...
4 years, 10 months ago (2016-02-25 00:37:30 UTC) #14
regis
https://codereview.chromium.org/1723733002/diff/20001/runtime/vm/deopt_instructions.cc File runtime/vm/deopt_instructions.cc (right): https://codereview.chromium.org/1723733002/diff/20001/runtime/vm/deopt_instructions.cc#newcode146 runtime/vm/deopt_instructions.cc:146: // Allocate what is needed before StarEvent, which is ...
4 years, 10 months ago (2016-02-25 17:47:27 UTC) #15
siva
lgtm https://codereview.chromium.org/1723733002/diff/40001/runtime/vm/profiler_service.cc File runtime/vm/profiler_service.cc (right): https://codereview.chromium.org/1723733002/diff/40001/runtime/vm/profiler_service.cc#newcode564 runtime/vm/profiler_service.cc:564: SetName(name.ToCString()); SetName can be hoisted down outside the ...
4 years, 10 months ago (2016-02-25 18:49:48 UTC) #16
regis
Thanks https://codereview.chromium.org/1723733002/diff/40001/runtime/vm/profiler_service.cc File runtime/vm/profiler_service.cc (right): https://codereview.chromium.org/1723733002/diff/40001/runtime/vm/profiler_service.cc#newcode564 runtime/vm/profiler_service.cc:564: SetName(name.ToCString()); On 2016/02/25 18:49:48, siva wrote: > SetName ...
4 years, 10 months ago (2016-02-25 19:20:50 UTC) #17
regis
4 years, 10 months ago (2016-02-25 19:21:33 UTC) #19
Message was sent while issue was closed.
Committed patchset #4 (id:60001) manually as
3ffe9922b740ba6aabe2fef0b6adfae05c42a081 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698