This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 7c103a2 Transfer ownership of the gold plugin. new edff068 TableGen: promote "code" type from syntactic sugar. new 69ada66 AArch64: TableGenerate system instruction operands.
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/TableGen/Record.h | 63 +- include/llvm/TableGen/SearchableTable.td | 41 + lib/TableGen/Record.cpp | 25 + lib/TableGen/TGParser.cpp | 4 +- lib/Target/AArch64/AArch64.td | 6 + lib/Target/AArch64/AArch64ISelDAGToDAG.cpp | 44 +- lib/Target/AArch64/AArch64InstrFormats.td | 5 +- lib/Target/AArch64/AArch64SystemOperands.td | 1018 ++++++++++++++++++++ lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp | 91 +- lib/Target/AArch64/CMakeLists.txt | 2 + .../AArch64/Disassembler/AArch64Disassembler.cpp | 11 +- .../AArch64/InstPrinter/AArch64InstPrinter.cpp | 70 +- lib/Target/AArch64/Utils/AArch64BaseInfo.cpp | 956 ++---------------- lib/Target/AArch64/Utils/AArch64BaseInfo.h | 1011 ++----------------- test/CodeGen/AArch64/special-reg.ll | 2 +- test/MC/AArch64/arm64-spsel-sysreg.s | 8 +- test/MC/AArch64/arm64-system-encoding.s | 6 +- test/MC/AArch64/basic-a64-instructions.s | 30 +- test/MC/Disassembler/AArch64/arm64-system.txt | 2 +- .../AArch64/basic-a64-instructions.txt | 30 +- utils/TableGen/AsmWriterEmitter.cpp | 2 +- utils/TableGen/CMakeLists.txt | 1 + utils/TableGen/SearchableTableEmitter.cpp | 320 ++++++ utils/TableGen/TableGen.cpp | 8 +- utils/TableGen/TableGenBackends.h | 1 + 25 files changed, 1753 insertions(+), 2004 deletions(-) create mode 100644 include/llvm/TableGen/SearchableTable.td create mode 100644 lib/Target/AArch64/AArch64SystemOperands.td create mode 100644 utils/TableGen/SearchableTableEmitter.cpp