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

Issue 1790063003: Subzero: Control whether deleted instructions are retained. (Closed)

Created:
4 years, 9 months ago by Jim Stichnoth
Modified:
4 years, 9 months ago
Reviewers:
Eric Holk, Karl, sehr, John
CC:
native-client-reviews_googlegroups.com
Base URL:
https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Subzero: Control whether deleted instructions are retained. Normally, deleted instructions are preserved in the Cfg, and printed as part of dump output. This helps debugging by partially explaining the provenance of new instructions that originated from the deleted instructions. However, these instructions slow down iteration over the instruction list, and checking their deleted status may pollute the cache. As such, in a non-DUMP enabled build, we repurpose the renumberInstructions() pass to also unlink deleted instructions as needed. A flag is provided to override this behavior, in case we have to debug a situation where a bug only manifests in a DUMP build and not a non-DUMP build, or vice versa. BUG= https://bugs.chromium.org/p/nativeclient/issues/detail?id=4360 R=eholk@chromium.org, jpp@chromium.org Committed: https://gerrit.chromium.org/gerrit/gitweb?p=native_client/pnacl-subzero.git;a=commit;h=76719b4aab9bdc44a9d37004aba64471790ab574

Patch Set 1 #

Total comments: 11

Patch Set 2 : Move comment into .h file #

Unified diffs Side-by-side diffs Delta from patch set Stats (+43 lines, -9 lines) Patch
M src/IceCfg.h View 1 1 chunk +8 lines, -0 lines 0 comments Download
M src/IceCfgNode.cpp View 1 chunk +17 lines, -8 lines 0 comments Download
M src/IceClFlags.h View 2 chunks +7 lines, -0 lines 0 comments Download
M src/IceClFlags.cpp View 3 chunks +10 lines, -0 lines 0 comments Download
M src/IceDefs.h View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 10 (3 generated)
Jim Stichnoth
4 years, 9 months ago (2016-03-12 23:41:16 UTC) #3
Eric Holk
lgtm https://codereview.chromium.org/1790063003/diff/1/src/IceCfgNode.cpp File src/IceCfgNode.cpp (right): https://codereview.chromium.org/1790063003/diff/1/src/IceCfgNode.cpp#newcode60 src/IceCfgNode.cpp:60: for (++Next; I != E; I = Next++) ...
4 years, 9 months ago (2016-03-14 13:20:14 UTC) #4
John
lgtm https://codereview.chromium.org/1790063003/diff/1/src/IceCfg.cpp File src/IceCfg.cpp (right): https://codereview.chromium.org/1790063003/diff/1/src/IceCfg.cpp#newcode281 src/IceCfg.cpp:281: /// instructions from the Cfg, to speed up ...
4 years, 9 months ago (2016-03-14 13:27:15 UTC) #5
Jim Stichnoth
https://codereview.chromium.org/1790063003/diff/1/src/IceCfg.cpp File src/IceCfg.cpp (right): https://codereview.chromium.org/1790063003/diff/1/src/IceCfg.cpp#newcode281 src/IceCfg.cpp:281: /// instructions from the Cfg, to speed up later ...
4 years, 9 months ago (2016-03-14 13:51:16 UTC) #6
Eric Holk
still lgtm https://codereview.chromium.org/1790063003/diff/1/src/IceCfgNode.cpp File src/IceCfgNode.cpp (right): https://codereview.chromium.org/1790063003/diff/1/src/IceCfgNode.cpp#newcode60 src/IceCfgNode.cpp:60: for (++Next; I != E; I = ...
4 years, 9 months ago (2016-03-14 14:01:04 UTC) #7
John
lgtm https://codereview.chromium.org/1790063003/diff/1/src/IceCfgNode.cpp File src/IceCfgNode.cpp (right): https://codereview.chromium.org/1790063003/diff/1/src/IceCfgNode.cpp#newcode56 src/IceCfgNode.cpp:56: template <typename List> void removeDeletedAndRenumber(List *L, Cfg *Func) ...
4 years, 9 months ago (2016-03-14 14:55:50 UTC) #8
Jim Stichnoth
4 years, 9 months ago (2016-03-14 15:37:58 UTC) #10
Message was sent while issue was closed.
Committed patchset #2 (id:20001) manually as
76719b4aab9bdc44a9d37004aba64471790ab574 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698