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

Issue 1027933002: Subzero: Prune unreachable nodes after constructing the Cfg. (Closed)

Created:
5 years, 9 months ago by Jim Stichnoth
Modified:
5 years, 9 months ago
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: Prune unreachable nodes after constructing the Cfg. The gcc torture test suite has examples where there is a function call (to a routine that throws an exception or aborts or something), followed by an "unreachable" instruction, followed by more code that may e.g. return a value to the caller. In these examples, the code following the unreachable is itself unreachable. Problems arise when the unreachable code references a variable defined in the reachable code. This triggers a liveness consistency error because the use of the variable has no reaching definition. It's a bit surprising that LLVM actually allows this, but it does so we need to deal with it. The solution is, after initial CFG construction, do a traversal starting from the entry node and then delete any undiscovered nodes. There is code in Subzero that assumes Cfg::Nodes[i]->Number == i, so the nodes need to be renumbered after pruning. The alternative was to set Nodes[i]=nullptr and not change the node number, but that would mean peppering the code base with CfgNode null checks. BUG= none R=jvoung@chromium.org Committed: https://gerrit.chromium.org/gerrit/gitweb?p=native_client/pnacl-subzero.git;a=commit;h=69d3f9c6698150a88fcc89a20bb93823895dfaf8

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+81 lines, -20 lines) Patch
M src/IceCfg.h View 1 chunk +3 lines, -3 lines 0 comments Download
M src/IceCfg.cpp View 1 chunk +34 lines, -2 lines 0 comments Download
M src/IceCfgNode.h View 3 chunks +3 lines, -1 line 0 comments Download
M src/IceCfgNode.cpp View 2 chunks +17 lines, -12 lines 0 comments Download
M src/IceConverter.cpp View 1 chunk +1 line, -1 line 0 comments Download
M src/PNaClTranslator.cpp View 1 chunk +1 line, -1 line 0 comments Download
A tests_lit/llvm2ice_tests/prune_unreachable.ll View 1 chunk +22 lines, -0 lines 0 comments Download

Messages

Total messages: 4 (1 generated)
Jim Stichnoth
5 years, 9 months ago (2015-03-20 23:25:12 UTC) #2
jvoung (off chromium)
lgtm
5 years, 9 months ago (2015-03-23 17:13:22 UTC) #3
Jim Stichnoth
5 years, 9 months ago (2015-03-23 17:33:42 UTC) #4
Message was sent while issue was closed.
Committed patchset #1 (id:1) manually as
69d3f9c6698150a88fcc89a20bb93823895dfaf8 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698