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

Issue 1419903002: Subzero: Refactor x86 register definitions to use the alias mechanism. (Closed)

Created:
5 years, 2 months ago by Jim Stichnoth
Modified:
5 years, 1 month 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

Sets the stage for enabling the use of the 8-bit high registers, but doesn't yet turn it on because more work is needed for correctness. In the lowering, typing is tightened up so that we don't specify e.g. eax when we really mean ax or al. This gets rid of the ShiftHack hack. The one exception is the pinsr instruction which always requires an r32 register even if the memory operand is m8 or m16. The x86 assembler unit tests are fixed, by not passing a GlobalContext arg to the Assembler ctor. Many constexpr and "auto *" upgrades are applied. Sorry for not putting this into a separate CL - a few local fixes got out of hand... Tested in the following ways: - "make check-lit" - some .ll CHECK line changes due to register randomization - "make check-xtest" - "make check-xtest" with forced filetype=asm (via local .py hack) - spec2k with all -filetype options - compare before-and-after spec2k filetype=asm output - a few differences where the correct narrow register is used instead of the full-width register To do in the next CL: 1. Add new register classes: (a) 32-bit GPR truncable to 8-bit (eax, ecx, edx, ebx) (b) 16-bit GPR truncable to 8-bit (ax, cx, dx, bx) (c) 8-bit truncable from 16/32-bit (al, bl, cl, dl) (c) 8-bit "mov"able from ah/bh/ch/dh 2. Enable use of ah/bh/ch/dh for x86-32. 3. Enable use of ah (but skip bh/ch/dh) for x86-64. 4. Statically initialize register tables in the TargetLowering subclass. BUG= none R=jpp@chromium.org, kschimpf@google.com Committed: https://gerrit.chromium.org/gerrit/gitweb?p=native_client/pnacl-subzero.git;a=commit;h=5bff61c44841990680781892036adb17b3cff0c4

Patch Set 1 #

Patch Set 2 : Fix the .def file formatting #

Patch Set 3 : Fix ARM .def formatting #

Patch Set 4 : X-macros cleanup. "auto *" cleanup. Make assembler unit tests compile (but not run). #

Patch Set 5 : Whoops, fix assembler creation #

Patch Set 6 : Kill ShiftHack. With fire. #

Patch Set 7 : Move getBaseReg() and getRegForType() into the Traits classes #

Patch Set 8 : Move getEncoded{GPR,Xmm}() into the Traits class #

Patch Set 9 : Tighten the implementation of isRedundantAssign() #

Patch Set 10 : Remove most getRegForType() calls. Constexpr upgrades. #

Patch Set 11 : Reformat IceInstARM32.def #

Patch Set 12 : Tighten up types for div/rem/insertelement #

Patch Set 13 : Cleanup. Fix RNG tests. #

Patch Set 14 : Add some comments #

Total comments: 28

Patch Set 15 : Constexpr additions. Rebase to master. #

Patch Set 16 : Avoid magic constants in register equivalence class definition #

Patch Set 17 : Bring back ByteRegister #

Total comments: 10

Patch Set 18 : Fix assembler unit tests. Fix register names. Code review changes. Rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1564 lines, -1166 lines) Patch
M src/IceAssembler.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 3 chunks +3 lines, -4 lines 0 comments Download
M src/IceAssembler.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -1 line 0 comments Download
M src/IceAssemblerARM32.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +2 lines, -3 lines 0 comments Download
M src/IceAssemblerARM32.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -0 lines 0 comments Download
M src/IceAssemblerMIPS32.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +2 lines, -2 lines 0 comments Download
M src/IceAssemblerX8632.h View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M src/IceAssemblerX8664.h View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M src/IceAssemblerX86Base.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +2 lines, -3 lines 0 comments Download
M src/IceBrowserCompileServer.cpp View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -2 lines 0 comments Download
M src/IceCfg.cpp View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -2 lines 0 comments Download
M src/IceCfgNode.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +2 lines, -0 lines 0 comments Download
M src/IceCfgNode.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 6 chunks +6 lines, -6 lines 0 comments Download
M src/IceCompiler.cpp View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M src/IceConditionCodesX8632.h View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M src/IceConditionCodesX8664.h View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M src/IceConverter.cpp View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -2 lines 0 comments Download
M src/IceELFObjectWriter.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 14 chunks +18 lines, -18 lines 0 comments Download
M src/IceFixups.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +2 lines, -2 lines 0 comments Download
M src/IceGlobalContext.cpp View 1 2 3 4 5 6 7 8 9 3 chunks +5 lines, -5 lines 0 comments Download
M src/IceInst.h View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -2 lines 0 comments Download
M src/IceInstARM32.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +2 lines, -2 lines 0 comments Download
M src/IceInstARM32.def View 1 2 3 4 5 6 7 8 9 10 11 12 9 chunks +148 lines, -251 lines 0 comments Download
M src/IceInstX8632.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 8 chunks +18 lines, -19 lines 0 comments Download
M src/IceInstX8632.def View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +197 lines, -114 lines 0 comments Download
M src/IceInstX8664.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 8 chunks +18 lines, -19 lines 0 comments Download
M src/IceInstX8664.def View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +274 lines, -121 lines 0 comments Download
M src/IceInstX86Base.h View 1 2 3 4 5 6 7 8 9 11 chunks +36 lines, -20 lines 0 comments Download
M src/IceInstX86BaseImpl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 74 chunks +198 lines, -225 lines 0 comments Download
M src/IceIntrinsics.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M src/IceOperand.h View 1 2 3 4 5 6 7 8 9 4 chunks +9 lines, -8 lines 0 comments Download
M src/IceOperand.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M src/IcePhiLoweringImpl.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M src/IceRegAlloc.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
A src/IceRegList.h View 1 1 chunk +35 lines, -0 lines 0 comments Download
M src/IceRegistersX8632.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 4 chunks +15 lines, -37 lines 0 comments Download
M src/IceRegistersX8664.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 3 chunks +16 lines, -38 lines 0 comments Download
M src/IceTargetLowering.cpp View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -2 lines 0 comments Download
M src/IceTargetLoweringARM32.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 5 chunks +6 lines, -6 lines 0 comments Download
M src/IceTargetLoweringMIPS32.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M src/IceTargetLoweringX8632.cpp View 1 2 3 4 5 6 2 chunks +4 lines, -5 lines 0 comments Download
M src/IceTargetLoweringX8632Traits.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 6 chunks +149 lines, -39 lines 0 comments Download
M src/IceTargetLoweringX8664Traits.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 6 chunks +120 lines, -40 lines 0 comments Download
M src/IceTargetLoweringX86BaseImpl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 43 chunks +190 lines, -98 lines 0 comments Download
M src/IceTimerTree.cpp View 1 2 3 4 5 6 7 8 9 3 chunks +3 lines, -3 lines 0 comments Download
M tests_lit/llvm2ice_tests/randomize-regalloc.ll View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +17 lines, -17 lines 0 comments Download
M tests_lit/llvm2ice_tests/rng.ll View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +7 lines, -7 lines 0 comments Download
M unittest/AssemblerX8632/GPRArith.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +2 lines, -3 lines 0 comments Download
M unittest/AssemblerX8632/LowLevel.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +8 lines, -8 lines 0 comments Download
M unittest/AssemblerX8632/TestUtil.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +1 line, -1 line 0 comments Download
M unittest/AssemblerX8632/X87.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 4 chunks +8 lines, -8 lines 0 comments Download
M unittest/AssemblerX8664/GPRArith.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 3 chunks +3 lines, -2 lines 0 comments Download
M unittest/AssemblerX8664/LowLevel.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +3 lines, -4 lines 0 comments Download
M unittest/AssemblerX8664/TestUtil.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 3 chunks +7 lines, -1 line 0 comments Download

Messages

Total messages: 15 (8 generated)
Jim Stichnoth
5 years, 1 month ago (2015-10-26 22:41:57 UTC) #9
Karl
Otherwise LGTM. https://chromiumcodereview.appspot.com/1419903002/diff/250001/src/IceELFObjectWriter.cpp File src/IceELFObjectWriter.cpp (right): https://chromiumcodereview.appspot.com/1419903002/diff/250001/src/IceELFObjectWriter.cpp#newcode81 src/IceELFObjectWriter.cpp:81: const Elf64_Xword SymTabAlign = ELF64 ? 8 ...
5 years, 1 month ago (2015-10-27 16:13:19 UTC) #10
Jim Stichnoth
https://codereview.chromium.org/1419903002/diff/250001/src/IceELFObjectWriter.cpp File src/IceELFObjectWriter.cpp (right): https://codereview.chromium.org/1419903002/diff/250001/src/IceELFObjectWriter.cpp#newcode81 src/IceELFObjectWriter.cpp:81: const Elf64_Xword SymTabAlign = ELF64 ? 8 : 4; ...
5 years, 1 month ago (2015-10-27 19:14:09 UTC) #11
Jim Stichnoth
John, I resurrected byte register representation, ptal.
5 years, 1 month ago (2015-10-28 04:12:52 UTC) #12
John
lgtm https://codereview.chromium.org/1419903002/diff/310001/src/IceAssemblerX86Base.h File src/IceAssemblerX86Base.h (left): https://codereview.chromium.org/1419903002/diff/310001/src/IceAssemblerX86Base.h#oldcode957 src/IceAssemblerX86Base.h:957: typename Traits::ByteRegister>::value || you need to revive this ...
5 years, 1 month ago (2015-10-28 12:48:07 UTC) #13
Jim Stichnoth
https://codereview.chromium.org/1419903002/diff/310001/src/IceAssemblerX86Base.h File src/IceAssemblerX86Base.h (left): https://codereview.chromium.org/1419903002/diff/310001/src/IceAssemblerX86Base.h#oldcode957 src/IceAssemblerX86Base.h:957: typename Traits::ByteRegister>::value || On 2015/10/28 12:48:06, John wrote: > ...
5 years, 1 month ago (2015-10-28 14:03:55 UTC) #14
Jim Stichnoth
5 years, 1 month ago (2015-10-28 16:26:06 UTC) #15
Message was sent while issue was closed.
Committed patchset #18 (id:330001) manually as
5bff61c44841990680781892036adb17b3cff0c4 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698