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

Issue 720343003: Subzero: Simplify the FakeKill instruction. (Closed)

Created:
6 years, 1 month ago by Jim Stichnoth
Modified:
6 years, 1 month ago
CC:
native-client-reviews_googlegroups.com
Base URL:
https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Visibility:
Public.

Description

Subzero: Simplify the FakeKill instruction. Even after earlier simplifications, FakeKill was still handled somewhat inefficiently for the register allocator. For x86-32, any function containing call instructions would result in about 11 pre-colored Variables, each with an identical and relatively complex live range consisting of points. They would start out on the UnhandledPrecolored list, then all move to the Inactive list, where they would be repeatedly compared against each register allocation candidate via overlapsRange(). We improve this by keeping around a single copy of that live range and directly masking out the Free[] register set when that live range overlaps the current candidate's live range. This saves ~10 overlaps() calculations per candidate while FakeKills are still pending. Also, slightly rearrange the initialization of the Unhandled etc. sets into a separate init routine, which will make it easier to reuse the register allocator in other situations such as Om1 post-lowering. BUG= none R=jvoung@chromium.org Committed: https://gerrit.chromium.org/gerrit/gitweb?p=native_client/pnacl-subzero.git;a=commit;h=87ff3a186eb0e5a9ff791964e377910acceed84e

Patch Set 1 #

Patch Set 2 : Remove the Nonpoints code in LiveRange #

Total comments: 5

Patch Set 3 : Hoist KillsMask out of the loop #

Unified diffs Side-by-side diffs Delta from patch set Stats (+108 lines, -132 lines) Patch
M src/IceCfgNode.cpp View 1 chunk +0 lines, -12 lines 0 comments Download
M src/IceInst.h View 3 chunks +9 lines, -12 lines 0 comments Download
M src/IceInst.cpp View 5 chunks +10 lines, -25 lines 0 comments Download
M src/IceOperand.h View 1 3 chunks +3 lines, -11 lines 0 comments Download
M src/IceOperand.cpp View 1 2 chunks +0 lines, -4 lines 0 comments Download
M src/IceRegAlloc.h View 2 chunks +2 lines, -0 lines 0 comments Download
M src/IceRegAlloc.cpp View 1 2 7 chunks +82 lines, -51 lines 0 comments Download
M src/IceTargetLowering.cpp View 1 chunk +1 line, -0 lines 0 comments Download
M src/IceTargetLoweringX8632.h View 1 chunk +0 lines, -10 lines 0 comments Download
M src/IceTargetLoweringX8632.cpp View 3 chunks +1 line, -7 lines 0 comments Download

Messages

Total messages: 6 (1 generated)
Jim Stichnoth
This appears to give a 2-3% performance improvement. https://codereview.chromium.org/720343003/diff/20001/src/IceRegAlloc.cpp File src/IceRegAlloc.cpp (left): https://codereview.chromium.org/720343003/diff/20001/src/IceRegAlloc.cpp#oldcode328 src/IceRegAlloc.cpp:328: overlapsDefs(Func, ...
6 years, 1 month ago (2014-11-14 00:51:13 UTC) #2
jvoung (off chromium)
Cool! LGTM https://codereview.chromium.org/720343003/diff/20001/src/IceRegAlloc.cpp File src/IceRegAlloc.cpp (right): https://codereview.chromium.org/720343003/diff/20001/src/IceRegAlloc.cpp#newcode180 src/IceRegAlloc.cpp:180: llvm::SmallBitVector KillsMask = Func->getTarget()->getRegisterSet( Can the kills ...
6 years, 1 month ago (2014-11-14 16:47:23 UTC) #3
jvoung (off chromium)
https://codereview.chromium.org/720343003/diff/20001/src/IceOperand.h File src/IceOperand.h (left): https://codereview.chromium.org/720343003/diff/20001/src/IceOperand.h#oldcode313 src/IceOperand.h:313: // LiveRange &operator=(const LiveRange &) = delete; Oh, also ...
6 years, 1 month ago (2014-11-14 17:01:09 UTC) #4
Jim Stichnoth
https://codereview.chromium.org/720343003/diff/20001/src/IceOperand.h File src/IceOperand.h (left): https://codereview.chromium.org/720343003/diff/20001/src/IceOperand.h#oldcode313 src/IceOperand.h:313: // LiveRange &operator=(const LiveRange &) = delete; On 2014/11/14 ...
6 years, 1 month ago (2014-11-14 18:27:03 UTC) #5
Jim Stichnoth
6 years, 1 month ago (2014-11-14 18:27:33 UTC) #6
Message was sent while issue was closed.
Committed patchset #3 (id:40001) manually as
87ff3a186eb0e5a9ff791964e377910acceed84e (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698