This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 837d04db84a [lit] Force site configs to be run before source-tree configs new db815646dfb TableGen support for parameterized register class information
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/Target/Target.td | 53 + include/llvm/Target/TargetRegisterInfo.h | 32 +- lib/CodeGen/TargetRegisterInfo.cpp | 7 +- test/TableGen/GlobalISelEmitter.td | 38 +- test/TableGen/HwModeSelect.td | 27 + utils/TableGen/CMakeLists.txt | 2 + utils/TableGen/CodeGenDAGPatterns.cpp | 1746 +++++++++++++++++------------- utils/TableGen/CodeGenDAGPatterns.h | 468 +++++--- utils/TableGen/CodeGenHwModes.cpp | 114 ++ utils/TableGen/CodeGenHwModes.h | 64 ++ utils/TableGen/CodeGenInstruction.cpp | 6 +- utils/TableGen/CodeGenRegisters.cpp | 53 +- utils/TableGen/CodeGenRegisters.h | 32 +- utils/TableGen/CodeGenTarget.cpp | 16 +- utils/TableGen/CodeGenTarget.h | 21 +- utils/TableGen/DAGISelEmitter.cpp | 8 +- utils/TableGen/DAGISelMatcherGen.cpp | 50 +- utils/TableGen/FastISelEmitter.cpp | 17 +- utils/TableGen/GlobalISelEmitter.cpp | 41 +- utils/TableGen/InfoByHwMode.cpp | 199 ++++ utils/TableGen/InfoByHwMode.h | 167 +++ utils/TableGen/RegisterBankEmitter.cpp | 9 +- utils/TableGen/RegisterInfoEmitter.cpp | 84 +- 23 files changed, 2177 insertions(+), 1077 deletions(-) create mode 100644 test/TableGen/HwModeSelect.td create mode 100644 utils/TableGen/CodeGenHwModes.cpp create mode 100644 utils/TableGen/CodeGenHwModes.h create mode 100644 utils/TableGen/InfoByHwMode.cpp create mode 100644 utils/TableGen/InfoByHwMode.h