Re-work bit/bits value resolving in tblgen
authorMichael Liao <michael.liao@intel.com>
Thu, 6 Sep 2012 23:32:48 +0000 (23:32 +0000)
committerMichael Liao <michael.liao@intel.com>
Thu, 6 Sep 2012 23:32:48 +0000 (23:32 +0000)
commit307525cd24c3b9c081ddb3c34a3418f2875cd556
tree7d756c1fb08e7cf37ccf39641fc45070459185a4
parent35e3aed169aa7fc9c7118f24e5e2a07e25bef512
Re-work bit/bits value resolving in tblgen

- This patch is inspired by the failure of the following code snippet
  which is used to convert enumerable values into encoding bits to
  improve the readability of td files.

  class S<int s> {
    bits<2> V = !if(!eq(s, 8),  {0, 0},
                !if(!eq(s, 16), {0, 1},
                !if(!eq(s, 32), {1, 0},
                !if(!eq(s, 64), {1, 1}, {?, ?}))));
  }

  Later, PR8330 is found to report not exactly the same bug relevant
  issue to bit/bits values.

- Instead of resolving bit/bits values separately through
  resolveBitReference(), this patch adds getBit() for all Inits and
  resolves bit value by resolving plus getting the specified bit. This
  unifies the resolving of bit with other values and removes redundant
  logic for resolving bit only. In addition,
  BitsInit::resolveReferences() is optimized to take advantage of this
  origanization by resolving VarBitInit's variable reference first and
  then getting bits from it.

- The type interference in '!if' operator is revised to support possible
  combinations of int and bits/bit in MHS and RHS.

- As there may be illegal assignments from integer value to bit, says
  assign 2 to a bit, but we only check this during instantiation in some
  cases, e.g.

  bit V = !if(!eq(x, 17), 0, 2);

  Verbose diagnostic message is generated when invalid value is
  resolveed to help locating the error.

- PR8330 is fixed as well.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163360 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/TableGen/Record.h
lib/TableGen/Record.cpp
lib/TableGen/TGParser.cpp
test/TableGen/if.td
test/TableGen/list-element-bitref.td [new file with mode: 0644]
test/TableGen/pr8330.td [new file with mode: 0644]
utils/TableGen/CodeEmitterGen.cpp
utils/TableGen/FixedLenDecoderEmitter.cpp