This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 3d8563b0d65 [SystemZ::TTI] Improve cost for compare of i64 with extend [...] new 1fff1694a65 [ARM, AArch64] Move ARM/AArch64 target parsers into separat [...] new 4b88badbb0c [TableGen] Better error checking for TIED_TO constraints.
The 2 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/Support/AArch64TargetParser.h | 121 ++++ include/llvm/Support/ARMTargetParser.h | 262 ++++++++ include/llvm/Support/TargetParser.h | 207 +------ lib/Support/AArch64TargetParser.cpp | 206 +++++++ lib/Support/ARMTargetParser.cpp | 576 ++++++++++++++++++ lib/Support/CMakeLists.txt | 2 + lib/Support/TargetParser.cpp | 931 ----------------------------- test/TableGen/ConstraintChecking.inc | 33 + test/TableGen/ConstraintChecking1.td | 6 + test/TableGen/ConstraintChecking2.td | 6 + test/TableGen/ConstraintChecking3.td | 8 + test/TableGen/ConstraintChecking4.td | 6 + test/TableGen/ConstraintChecking5.td | 6 + test/TableGen/ConstraintChecking6.td | 6 + test/TableGen/ConstraintChecking7.td | 6 + unittests/Support/TargetParserTest.cpp | 2 - utils/TableGen/CodeGenInstruction.cpp | 97 ++- utils/TableGen/CodeGenInstruction.h | 9 + 18 files changed, 1327 insertions(+), 1163 deletions(-) create mode 100644 include/llvm/Support/AArch64TargetParser.h create mode 100644 include/llvm/Support/ARMTargetParser.h create mode 100644 lib/Support/AArch64TargetParser.cpp create mode 100644 lib/Support/ARMTargetParser.cpp create mode 100644 test/TableGen/ConstraintChecking.inc create mode 100644 test/TableGen/ConstraintChecking1.td create mode 100644 test/TableGen/ConstraintChecking2.td create mode 100644 test/TableGen/ConstraintChecking3.td create mode 100644 test/TableGen/ConstraintChecking4.td create mode 100644 test/TableGen/ConstraintChecking5.td create mode 100644 test/TableGen/ConstraintChecking6.td create mode 100644 test/TableGen/ConstraintChecking7.td