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

Issue 1517993003: [heap] Black is encoded with 11, grey with 10. (Closed)

Created:
5 years ago by Hannes Payer (out of office)
Modified:
4 years, 11 months ago
Reviewers:
Michael Lippautz, ulan
CC:
v8-reviews_googlegroups.com, Hannes Payer (out of office), ulan
Base URL:
https://chromium.googlesource.com/v8/v8.git@master
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

[heap] Black is encoded with 11, grey with 10. This CL changes the color for encoding black and grey. Moreover, it introduces a higher level live object iterator. BUG=chromium:561449 LOG=n Committed: https://crrev.com/67f99ee1026f7832b477b956beb394485be372f7 Cr-Commit-Position: refs/heads/master@{#33208}

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : #

Patch Set 8 : #

Total comments: 26

Patch Set 9 : #

Total comments: 22

Patch Set 10 : #

Patch Set 11 : #

Total comments: 7

Patch Set 12 : #

Patch Set 13 : #

Patch Set 14 : #

Patch Set 15 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+259 lines, -271 lines) Patch
M src/arm/macro-assembler-arm.cc View 1 2 2 chunks +4 lines, -4 lines 0 comments Download
M src/arm64/macro-assembler-arm64.cc View 1 2 3 3 chunks +6 lines, -6 lines 0 comments Download
M src/heap/mark-compact.h View 1 2 3 4 5 6 7 8 9 10 8 chunks +36 lines, -16 lines 0 comments Download
M src/heap/mark-compact.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 12 chunks +133 lines, -207 lines 0 comments Download
M src/heap/mark-compact-inl.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +49 lines, -0 lines 0 comments Download
M src/ia32/macro-assembler-ia32.cc View 1 2 2 chunks +5 lines, -6 lines 0 comments Download
M src/mips/macro-assembler-mips.cc View 1 2 2 chunks +4 lines, -4 lines 0 comments Download
M src/mips64/macro-assembler-mips64.cc View 1 2 2 chunks +4 lines, -4 lines 0 comments Download
M src/ppc/macro-assembler-ppc.cc View 1 2 2 chunks +4 lines, -4 lines 0 comments Download
M src/x64/macro-assembler-x64.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +3 lines, -5 lines 0 comments Download
M src/x64/macro-assembler-x64.cc View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +6 lines, -9 lines 0 comments Download
M src/x87/macro-assembler-x87.cc View 1 2 2 chunks +5 lines, -6 lines 0 comments Download

Messages

Total messages: 22 (7 generated)
Hannes Payer (out of office)
4 years, 11 months ago (2016-01-05 12:32:49 UTC) #3
ulan
Beautiful clean-up :) https://codereview.chromium.org/1517993003/diff/140001/src/heap/mark-compact.cc File src/heap/mark-compact.cc (left): https://codereview.chromium.org/1517993003/diff/140001/src/heap/mark-compact.cc#oldcode2962 src/heap/mark-compact.cc:2962: if ((cells[start_index] & index_in_cell) != 0) ...
4 years, 11 months ago (2016-01-05 14:45:23 UTC) #5
Hannes Payer (out of office)
https://codereview.chromium.org/1517993003/diff/140001/src/heap/mark-compact.cc File src/heap/mark-compact.cc (left): https://codereview.chromium.org/1517993003/diff/140001/src/heap/mark-compact.cc#oldcode2962 src/heap/mark-compact.cc:2962: if ((cells[start_index] & index_in_cell) != 0) { On 2016/01/05 ...
4 years, 11 months ago (2016-01-07 10:30:32 UTC) #6
Michael Lippautz
https://codereview.chromium.org/1517993003/diff/160001/src/heap/mark-compact.h File src/heap/mark-compact.h (right): https://codereview.chromium.org/1517993003/diff/160001/src/heap/mark-compact.h#newcode868 src/heap/mark-compact.h:868: inline HeapObject* Next() { Maybe move the implementation to ...
4 years, 11 months ago (2016-01-07 14:02:54 UTC) #7
Hannes Payer (out of office)
https://codereview.chromium.org/1517993003/diff/160001/src/heap/mark-compact.h File src/heap/mark-compact.h (right): https://codereview.chromium.org/1517993003/diff/160001/src/heap/mark-compact.h#newcode868 src/heap/mark-compact.h:868: inline HeapObject* Next() { On 2016/01/07 14:02:53, Michael Lippautz ...
4 years, 11 months ago (2016-01-07 16:26:16 UTC) #8
ulan
https://codereview.chromium.org/1517993003/diff/160001/src/heap/mark-compact.cc File src/heap/mark-compact.cc (right): https://codereview.chromium.org/1517993003/diff/160001/src/heap/mark-compact.cc#newcode2930 src/heap/mark-compact.cc:2930: if ((cells[start_index] & index_in_cell) != 0 && Let's make ...
4 years, 11 months ago (2016-01-07 16:39:11 UTC) #9
Hannes Payer (out of office)
https://codereview.chromium.org/1517993003/diff/140001/src/x64/macro-assembler-x64.cc File src/x64/macro-assembler-x64.cc (left): https://codereview.chromium.org/1517993003/diff/140001/src/x64/macro-assembler-x64.cc#oldcode5298 src/x64/macro-assembler-x64.cc:5298: // Note that we are using a 4-byte aligned ...
4 years, 11 months ago (2016-01-07 20:17:33 UTC) #10
Michael Lippautz
lgtm from my side https://codereview.chromium.org/1517993003/diff/200001/src/heap/mark-compact.cc File src/heap/mark-compact.cc (right): https://codereview.chromium.org/1517993003/diff/200001/src/heap/mark-compact.cc#newcode2918 src/heap/mark-compact.cc:2918: unsigned int start_index = mark_bit_index ...
4 years, 11 months ago (2016-01-08 07:46:18 UTC) #11
Hannes Payer (out of office)
https://codereview.chromium.org/1517993003/diff/200001/src/heap/mark-compact.cc File src/heap/mark-compact.cc (right): https://codereview.chromium.org/1517993003/diff/200001/src/heap/mark-compact.cc#newcode2918 src/heap/mark-compact.cc:2918: unsigned int start_index = mark_bit_index >> Bitmap::kBitsPerCellLog2; On 2016/01/08 ...
4 years, 11 months ago (2016-01-08 08:27:05 UTC) #12
Hannes Payer (out of office)
https://codereview.chromium.org/1517993003/diff/140001/src/x64/macro-assembler-x64.cc File src/x64/macro-assembler-x64.cc (left): https://codereview.chromium.org/1517993003/diff/140001/src/x64/macro-assembler-x64.cc#oldcode5298 src/x64/macro-assembler-x64.cc:5298: // Note that we are using a 4-byte aligned ...
4 years, 11 months ago (2016-01-11 12:24:32 UTC) #13
Hannes Payer (out of office)
https://codereview.chromium.org/1517993003/diff/160001/src/heap/mark-compact.cc File src/heap/mark-compact.cc (right): https://codereview.chromium.org/1517993003/diff/160001/src/heap/mark-compact.cc#newcode2930 src/heap/mark-compact.cc:2930: if ((cells[start_index] & index_in_cell) != 0 && On 2016/01/07 ...
4 years, 11 months ago (2016-01-11 13:37:34 UTC) #14
ulan
lgtm!
4 years, 11 months ago (2016-01-11 13:56:52 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1517993003/280001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1517993003/280001
4 years, 11 months ago (2016-01-11 13:59:16 UTC) #18
commit-bot: I haz the power
Committed patchset #15 (id:280001)
4 years, 11 months ago (2016-01-11 14:32:52 UTC) #20
commit-bot: I haz the power
4 years, 11 months ago (2016-01-11 14:33:18 UTC) #22
Message was sent while issue was closed.
Patchset 15 (id:??) landed as
https://crrev.com/67f99ee1026f7832b477b956beb394485be372f7
Cr-Commit-Position: refs/heads/master@{#33208}

Powered by Google App Engine
This is Rietveld 408576698