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

Issue 1405643003: Subzero: Various fixes in preparation for x86-32 register aliasing. (Closed)

Created:
5 years, 2 months ago by Jim Stichnoth
Modified:
5 years, 2 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: Various fixes in preparation for x86-32 register aliasing. 1. Helper function sameVarOrReg() also needs to return true if the two physical registers alias or overlap. Otherwise advanced phi lowering may pick an incorrect ordering. 2. With -asm-verbose, redundant truncation assignments expressed as _mov instructions, like "mov cl, ecx", need to have their register use counts updated properly, so that the LIVEEND= annotations are correct. 3. The register allocator should consider suitably typed aliases when choosing a register preference. 4. When evicting a variable, the register allocator should decrement the use count of all aliases. 5. When saving/restoring callee-save registers in the prolog/epilog, map each register to its "canonical" register (e.g. %bl --> %ebx) and make sure each canonical register is only considered once. 6. Remove some unnecessary Variable::setMustHaveReg() calls. 7. When assigning bool results as a constant 0 or 1, use an 8-bit constant instead of 32-bit so that only the 8-bit register gets assigned. BUG= none TEST= make check, plus spec2k -asm-verbose output is unchanged R=kschimpf@google.com Committed: https://gerrit.chromium.org/gerrit/gitweb?p=native_client/pnacl-subzero.git;a=commit;h=1fb030c668841de8f5393e2d2c9e2ad1296af3db

Patch Set 1 #

Patch Set 2 : Revert the incorrect pextr change #

Total comments: 1

Patch Set 3 : Reformat, rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+67 lines, -32 lines) Patch
M src/IceCfgNode.cpp View 8 chunks +33 lines, -14 lines 0 comments Download
M src/IceInst.cpp View 1 chunk +1 line, -1 line 0 comments Download
M src/IceRegAlloc.cpp View 2 chunks +10 lines, -5 lines 0 comments Download
M src/IceTargetLoweringX8632.cpp View 2 chunks +18 lines, -2 lines 0 comments Download
M src/IceTargetLoweringX86BaseImpl.h View 1 2 9 chunks +5 lines, -10 lines 0 comments Download

Messages

Total messages: 4 (1 generated)
Jim Stichnoth
5 years, 2 months ago (2015-10-15 13:46:28 UTC) #2
Karl
lgtm https://chromiumcodereview.appspot.com/1405643003/diff/20001/src/IceTargetLoweringX8632.cpp File src/IceTargetLoweringX8632.cpp (right): https://chromiumcodereview.appspot.com/1405643003/diff/20001/src/IceTargetLoweringX8632.cpp#newcode614 src/IceTargetLoweringX8632.cpp:614: // SizeT Canonical = RegX8632::getCanonicalReg(i); // TODO(stichnot) I ...
5 years, 2 months ago (2015-10-15 17:05:27 UTC) #3
Jim Stichnoth
5 years, 2 months ago (2015-10-15 18:10:43 UTC) #4
Message was sent while issue was closed.
Committed patchset #3 (id:40001) manually as
1fb030c668841de8f5393e2d2c9e2ad1296af3db (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698