This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 7a843434af3 [AMDGPU] Fix lowering enqueue_kernel new 05d18d68a3f [SLP] update a test case. NFC. new 92ffece4993 [MIPS GlobalISel] Select add i32, i32 new 0bd082b444c [DWARFv5] Fuss with asm syntax for conveying MD5 checksum.
The 3 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: lib/MC/MCAsmStreamer.cpp | 6 +- lib/MC/MCParser/AsmParser.cpp | 54 +++--- lib/Target/Mips/CMakeLists.txt | 2 + lib/Target/Mips/Mips.td | 1 + lib/Target/Mips/MipsCallLowering.cpp | 193 ++++++++++++++++++++- lib/Target/Mips/MipsCallLowering.h | 36 ++++ lib/Target/Mips/MipsISelLowering.cpp | 7 + lib/Target/Mips/MipsISelLowering.h | 5 + lib/Target/Mips/MipsInstructionSelector.cpp | 68 +++++++- lib/Target/Mips/MipsLegalizerInfo.cpp | 6 + lib/Target/Mips/MipsRegisterBankInfo.cpp | 74 +++++++- lib/Target/Mips/MipsRegisterBankInfo.h | 14 +- lib/Target/Mips/MipsRegisterBanks.td | 13 ++ test/CodeGen/Generic/dwarf-md5.ll | 6 +- .../Mips/GlobalISel/instruction-select/add.mir | 35 ++++ test/CodeGen/Mips/GlobalISel/irtranslator/add.ll | 16 ++ test/CodeGen/Mips/GlobalISel/legalizer/add.mir | 34 ++++ test/CodeGen/Mips/GlobalISel/llvm-ir/add.ll | 12 ++ test/CodeGen/Mips/GlobalISel/regbankselect/add.mir | 34 ++++ test/MC/ELF/debug-file-options.s | 4 +- test/MC/ELF/debug-md5-err.s | 14 +- test/MC/ELF/debug-md5.s | 4 +- test/Transforms/SLPVectorizer/AArch64/ext-trunc.ll | 32 ++-- 23 files changed, 600 insertions(+), 70 deletions(-) create mode 100644 lib/Target/Mips/MipsRegisterBanks.td create mode 100644 test/CodeGen/Mips/GlobalISel/instruction-select/add.mir create mode 100644 test/CodeGen/Mips/GlobalISel/irtranslator/add.ll create mode 100644 test/CodeGen/Mips/GlobalISel/legalizer/add.mir create mode 100644 test/CodeGen/Mips/GlobalISel/llvm-ir/add.ll create mode 100644 test/CodeGen/Mips/GlobalISel/regbankselect/add.mir