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

Issue 2900713004: [objects] Extract DebugInfo and BreakPointInfo to own file (Closed)

Created:
3 years, 7 months ago by jgruber
Modified:
3 years, 7 months ago
CC:
v8-reviews_googlegroups.com, Yang
Target Ref:
refs/heads/master
Project:
v8
Visibility:
Public.

Description

[objects] Extract DebugInfo and BreakPointInfo to own file BUG=v8:5402 Review-Url: https://codereview.chromium.org/2900713004 Cr-Commit-Position: refs/heads/master@{#45486} Committed: https://chromium.googlesource.com/v8/v8/+/d74ece41800063f92a3bc02963a0aa83be2288c7

Patch Set 1 #

Total comments: 1

Patch Set 2 : Rename #

Patch Set 3 : Rename #

Total comments: 8

Patch Set 4 : Address comments #

Patch Set 5 : Move BreakPointInfo inline defs over #

Patch Set 6 : Break objects-inl -> debug-objects-inl dependency #

Total comments: 9

Patch Set 7 : Remove undefs from objects-inl.h #

Unified diffs Side-by-side diffs Delta from patch set Stats (+753 lines, -679 lines) Patch
M BUILD.gn View 1 2 3 1 chunk +3 lines, -0 lines 0 comments Download
M src/debug/debug.h View 1 2 3 4 5 2 chunks +2 lines, -4 lines 0 comments Download
M src/debug/debug.cc View 1 2 3 4 5 2 chunks +6 lines, -0 lines 0 comments Download
M src/deoptimizer.cc View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M src/factory.h View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
M src/factory.cc View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M src/heap/heap.h View 1 2 3 4 5 1 chunk +6 lines, -0 lines 0 comments Download
M src/objects.h View 1 2 3 4 5 3 chunks +3 lines, -99 lines 0 comments Download
M src/objects.cc View 1 2 3 4 5 3 chunks +18 lines, -244 lines 0 comments Download
M src/objects-debug.cc View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M src/objects-inl.h View 1 2 3 4 5 6 9 chunks +28 lines, -331 lines 0 comments Download
M src/objects-printer.cc View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
A src/objects/debug-objects.h View 1 2 3 1 chunk +115 lines, -0 lines 0 comments Download
A src/objects/debug-objects.cc View 1 2 3 1 chunk +246 lines, -0 lines 0 comments Download
A src/objects/debug-objects-inl.h View 1 2 3 4 5 1 chunk +60 lines, -0 lines 0 comments Download
M src/objects/object-macros.h View 1 2 3 4 5 1 chunk +206 lines, -0 lines 0 comments Download
M src/objects/object-macros-undef.h View 1 2 3 4 5 6 1 chunk +50 lines, -1 line 0 comments Download
M src/v8.gyp View 1 2 3 1 chunk +3 lines, -0 lines 0 comments Download
M src/wasm/wasm-objects.cc View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 42 (29 generated)
jgruber
https://codereview.chromium.org/2900713004/diff/1/src/objects/breakpoints-info.h File src/objects/breakpoints-info.h (right): https://codereview.chromium.org/2900713004/diff/1/src/objects/breakpoints-info.h#newcode19 src/objects/breakpoints-info.h:19: class BreakPointInfo : public Tuple2 { I'm planning on ...
3 years, 7 months ago (2017-05-22 13:31:07 UTC) #8
marja
https://codereview.chromium.org/2900713004/diff/40001/src/objects-inl.h File src/objects-inl.h (right): https://codereview.chromium.org/2900713004/diff/40001/src/objects-inl.h#newcode34 src/objects-inl.h:34: #include "src/objects/break-points-info.h" You might want to split out the ...
3 years, 7 months ago (2017-05-22 13:37:39 UTC) #11
jgruber
https://codereview.chromium.org/2900713004/diff/40001/src/objects-inl.h File src/objects-inl.h (right): https://codereview.chromium.org/2900713004/diff/40001/src/objects-inl.h#newcode34 src/objects-inl.h:34: #include "src/objects/break-points-info.h" On 2017/05/22 13:37:39, marja wrote: > You ...
3 years, 7 months ago (2017-05-22 13:48:26 UTC) #12
jgruber
PTAL at the current patchset. There's a remaining dependency in that objects-inl.h still includes src/objects/debug-objects-inl.h. ...
3 years, 7 months ago (2017-05-23 09:12:03 UTC) #17
jgruber
https://codereview.chromium.org/2900713004/diff/100001/src/heap/heap.h File src/heap/heap.h (right): https://codereview.chromium.org/2900713004/diff/100001/src/heap/heap.h#newcode341 src/heap/heap.h:341: #define FIXED_ARRAY_ELEMENTS_WRITE_BARRIER(heap, array, start, length) \ Used in both ...
3 years, 7 months ago (2017-05-23 09:58:36 UTC) #20
marja
lgtm w/ comment about CAST_ACCESSORS https://codereview.chromium.org/2900713004/diff/100001/src/objects-inl.h File src/objects-inl.h (right): https://codereview.chromium.org/2900713004/diff/100001/src/objects-inl.h#newcode7968 src/objects-inl.h:7968: #undef CAST_ACCESSORS What's this? ...
3 years, 7 months ago (2017-05-23 10:38:56 UTC) #23
jgruber
https://codereview.chromium.org/2900713004/diff/100001/src/objects-inl.h File src/objects-inl.h (right): https://codereview.chromium.org/2900713004/diff/100001/src/objects-inl.h#newcode7968 src/objects-inl.h:7968: #undef CAST_ACCESSORS On 2017/05/23 10:38:55, marja wrote: > What's ...
3 years, 7 months ago (2017-05-23 10:50:52 UTC) #26
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2900713004/120001
3 years, 7 months ago (2017-05-23 11:22:10 UTC) #32
jgruber
+clemensh for wasm/ +mlippautz for heap/ PTAL
3 years, 7 months ago (2017-05-23 11:55:03 UTC) #35
Clemens Hammacher
src/wasm LGTM
3 years, 7 months ago (2017-05-23 11:59:49 UTC) #36
Michael Lippautz
heap/ LGTM
3 years, 7 months ago (2017-05-23 12:12:57 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2900713004/120001
3 years, 7 months ago (2017-05-23 12:15:13 UTC) #39
commit-bot: I haz the power
3 years, 7 months ago (2017-05-23 12:17:17 UTC) #42
Message was sent while issue was closed.
Committed patchset #7 (id:120001) as
https://chromium.googlesource.com/v8/v8/+/d74ece41800063f92a3bc02963a0aa83be2...

Powered by Google App Engine
This is Rietveld 408576698