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

Issue 343803002: Finishes removing intptr_t from raw object fields. (Closed)

Created:
6 years, 6 months ago by zra
Modified:
6 years, 3 months ago
CC:
reviews_dartlang.org, vm-dev_dartlang.org
Visibility:
Public.

Description

Finishes removing intptr_t from raw object fields. Also removes {Read,Write}IntptrValue from the snapshot reader and writer. R=asiva@google.com Committed: https://code.google.com/p/dart/source/detail?r=40048

Patch Set 1 #

Patch Set 2 : #

Total comments: 22

Patch Set 3 : #

Patch Set 4 : #

Total comments: 6

Patch Set 5 : #

Patch Set 6 : #

Total comments: 4

Patch Set 7 : #

Total comments: 6

Patch Set 8 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+232 lines, -174 lines) Patch
M runtime/platform/globals.h View 1 2 3 4 5 6 7 1 chunk +1 line, -0 lines 0 comments Download
M runtime/vm/code_descriptors.cc View 1 2 3 4 5 6 7 2 chunks +1 line, -6 lines 0 comments Download
M runtime/vm/compiler.cc View 1 2 3 4 5 6 7 1 chunk +15 lines, -15 lines 0 comments Download
M runtime/vm/dart_api_message.cc View 1 2 3 4 5 6 7 5 chunks +6 lines, -6 lines 0 comments Download
M runtime/vm/debugger.cc View 1 2 3 4 5 6 7 7 chunks +21 lines, -17 lines 0 comments Download
M runtime/vm/object.h View 12 chunks +56 lines, -24 lines 0 comments Download
M runtime/vm/object.cc View 9 chunks +30 lines, -26 lines 0 comments Download
M runtime/vm/raw_object.h View 11 chunks +65 lines, -30 lines 0 comments Download
M runtime/vm/raw_object.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M runtime/vm/raw_object_snapshot.cc View 9 chunks +10 lines, -12 lines 0 comments Download
M runtime/vm/scopes.cc View 3 chunks +11 lines, -11 lines 0 comments Download
M runtime/vm/snapshot.h View 6 chunks +5 lines, -18 lines 0 comments Download
M runtime/vm/snapshot.cc View 6 chunks +6 lines, -6 lines 0 comments Download
M runtime/vm/stack_frame.cc View 1 chunk +3 lines, -1 line 0 comments Download

Messages

Total messages: 14 (1 generated)
zra
6 years, 6 months ago (2014-06-18 22:05:33 UTC) #1
Ivan Posva
First round of comments. -Ivan https://codereview.chromium.org/343803002/diff/20001/runtime/vm/raw_object.h File runtime/vm/raw_object.h (right): https://codereview.chromium.org/343803002/diff/20001/runtime/vm/raw_object.h#newcode859 runtime/vm/raw_object.h:859: int32_t state_bits_; // state, ...
6 years, 6 months ago (2014-06-26 09:02:04 UTC) #2
zra
PTAL https://codereview.chromium.org/343803002/diff/20001/runtime/vm/raw_object.h File runtime/vm/raw_object.h (right): https://codereview.chromium.org/343803002/diff/20001/runtime/vm/raw_object.h#newcode859 runtime/vm/raw_object.h:859: int32_t state_bits_; // state, is_optimized, is_alive. On 2014/06/26 ...
6 years, 5 months ago (2014-07-01 20:37:02 UTC) #3
zra
On 2014/07/01 20:37:02, zra wrote: > PTAL > > https://codereview.chromium.org/343803002/diff/20001/runtime/vm/raw_object.h > File runtime/vm/raw_object.h (right): > ...
6 years, 5 months ago (2014-07-15 23:16:46 UTC) #4
Ivan Posva
First round of comments. -Ivan https://codereview.chromium.org/343803002/diff/60001/runtime/vm/debugger.cc File runtime/vm/debugger.cc (right): https://codereview.chromium.org/343803002/diff/60001/runtime/vm/debugger.cc#newcode451 runtime/vm/debugger.cc:451: RawLocalVarDescriptors::KindBits::decode(var_info.index_kind); Wouldn't this read ...
6 years, 5 months ago (2014-07-23 12:23:27 UTC) #5
zra
https://codereview.chromium.org/343803002/diff/60001/runtime/vm/debugger.cc File runtime/vm/debugger.cc (right): https://codereview.chromium.org/343803002/diff/60001/runtime/vm/debugger.cc#newcode451 runtime/vm/debugger.cc:451: RawLocalVarDescriptors::KindBits::decode(var_info.index_kind); On 2014/07/23 12:23:26, Ivan Posva wrote: > Wouldn't ...
6 years, 4 months ago (2014-08-20 22:13:57 UTC) #6
siva
Some initial comments. https://chromiumcodereview.appspot.com/343803002/diff/20001/runtime/vm/raw_object.h File runtime/vm/raw_object.h (right): https://chromiumcodereview.appspot.com/343803002/diff/20001/runtime/vm/raw_object.h#newcode886 runtime/vm/raw_object.h:886: int32_t size_; Instructions::kMaxElements should be changed ...
6 years, 4 months ago (2014-08-25 17:33:20 UTC) #7
zra
https://chromiumcodereview.appspot.com/343803002/diff/20001/runtime/vm/raw_object.h File runtime/vm/raw_object.h (right): https://chromiumcodereview.appspot.com/343803002/diff/20001/runtime/vm/raw_object.h#newcode886 runtime/vm/raw_object.h:886: int32_t size_; On 2014/08/25 17:33:20, siva wrote: > Instructions::kMaxElements ...
6 years, 3 months ago (2014-09-02 17:37:57 UTC) #8
Florian Schneider
dbc https://chromiumcodereview.appspot.com/343803002/diff/100001/runtime/vm/raw_object.h File runtime/vm/raw_object.h (right): https://chromiumcodereview.appspot.com/343803002/diff/100001/runtime/vm/raw_object.h#newcode1041 runtime/vm/raw_object.h:1041: kIndexPos = 9, This is off by one ...
6 years, 3 months ago (2014-09-03 09:29:53 UTC) #10
zra
https://chromiumcodereview.appspot.com/343803002/diff/100001/runtime/vm/raw_object.h File runtime/vm/raw_object.h (right): https://chromiumcodereview.appspot.com/343803002/diff/100001/runtime/vm/raw_object.h#newcode1041 runtime/vm/raw_object.h:1041: kIndexPos = 9, On 2014/09/03 09:29:53, Florian Schneider wrote: ...
6 years, 3 months ago (2014-09-03 19:26:46 UTC) #11
siva
lgtm https://codereview.chromium.org/343803002/diff/120001/runtime/platform/globals.h File runtime/platform/globals.h (right): https://codereview.chromium.org/343803002/diff/120001/runtime/platform/globals.h#newcode301 runtime/platform/globals.h:301: const int kBitsPerInt32 = sizeof(int32_t) * kBitsPerByte; const ...
6 years, 3 months ago (2014-09-09 16:47:24 UTC) #12
zra
https://codereview.chromium.org/343803002/diff/120001/runtime/platform/globals.h File runtime/platform/globals.h (right): https://codereview.chromium.org/343803002/diff/120001/runtime/platform/globals.h#newcode301 runtime/platform/globals.h:301: const int kBitsPerInt32 = sizeof(int32_t) * kBitsPerByte; On 2014/09/09 ...
6 years, 3 months ago (2014-09-09 17:42:38 UTC) #13
zra
6 years, 3 months ago (2014-09-09 19:51:31 UTC) #14
Message was sent while issue was closed.
Committed patchset #8 (id:140001) manually as r40048 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698