[TableGen][SelectionDAG] Improve efficiency of encoding negative immediates for isel...
authorCraig Topper <craig.topper@sifive.com>
Thu, 18 Feb 2021 16:45:08 +0000 (08:45 -0800)
committerCraig Topper <craig.topper@sifive.com>
Thu, 18 Feb 2021 16:53:17 +0000 (08:53 -0800)
commit61d4d9a5d33505727afe52f524b90943f8caf21e
tree21126f71f5c47de2f941cfde1500cc4ffd9b1081
parent5b094bfeb3ccaf3ba118f161277ade9fc5147272
[TableGen][SelectionDAG] Improve efficiency of encoding negative immediates for isel's CheckInteger opcode.

CheckInteger uses an int64_t encoded using a variable width encoding
that is optimized for encoding a number with a lot of leading zeros.
Negative numbers have no leading zeros so use the largest encoding
requiring 9 bytes.

I believe its most like we want to check for positive and negative
numbers near 0. -1 is quite common due to its use in the 'not'
idiom.

To optimize for this, we can borrow an idea from the bitcode format
and move the sign bit to bit 0 with the magnitude stored in the
upper bits. This will drastically increase the number of leading
zeros for small magnitudes. Then we can run this value through
VBR encoding.

This gives a small reduction in the table size on all in tree
targets except VE where size increased by about 300 bytes due
to intrinsic ids now requiring 3 bytes instead of 2. Since the
intrinsic enum space is shared by all targets this an unfortunate
consquence of where VE is currently located in the range.

Reviewed By: RKSimon

Differential Revision: https://reviews.llvm.org/D96317
llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
llvm/test/TableGen/dag-isel-regclass-emit-enum.td
llvm/test/TableGen/dag-isel-subregs.td
llvm/utils/TableGen/DAGISelMatcherEmitter.cpp