This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 691701d2f8a [TargetLowering] SimplifyDemandedBits - legal checks for SI [...] new 82941fa140a [ARM] Add MVE vector load/store instructions. new c2503a94603 [ARM] Add remaining miscellaneous MVE instructions. new fd7f52d7436 [ARM] Extra MVE-related testing. new 796e0191547 [ARM] Explicit lowering of half <-> double conversions. new 6fb3129d4f1 [VectorLegalizer] ExpandANY_EXTEND_VECTOR_INREG/ExpandZERO_ [...]
The 5 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/CodeGen/SelectionDAG/LegalizeVectorOps.cpp | 26 + lib/Target/ARM/ARMBaseInstrInfo.cpp | 5 +- lib/Target/ARM/ARMISelLowering.cpp | 79 +- lib/Target/ARM/ARMInstrFormats.td | 2 + lib/Target/ARM/ARMInstrInfo.td | 9 + lib/Target/ARM/ARMInstrMVE.td | 577 +++++++ lib/Target/ARM/ARMInstrThumb2.td | 44 +- lib/Target/ARM/ARMInstrVFP.td | 8 +- lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 328 +++- lib/Target/ARM/Disassembler/ARMDisassembler.cpp | 180 +- lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h | 4 +- lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h | 4 + lib/Target/ARM/MCTargetDesc/ARMInstPrinter.cpp | 34 + lib/Target/ARM/MCTargetDesc/ARMInstPrinter.h | 5 + lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp | 89 +- lib/Target/ARM/Thumb2InstrInfo.cpp | 14 +- test/CodeGen/ARM/half.ll | 4 + test/MC/ARM/fp-armv8-m.s | 140 ++ test/MC/ARM/fullfp16.s | 2 + test/MC/ARM/mve-fp-registers.s | 25 +- test/MC/ARM/mve-load-store.s | 1944 ++++++++++++++++++++++ test/MC/ARM/mve-misc.s | 176 ++ test/MC/ARM/no-mve.s | 16 + test/MC/ARM/ras-extension.s | 3 + test/MC/Disassembler/ARM/mve-load-store.txt | 1378 +++++++++++++++ test/MC/Disassembler/ARM/mve-misc.txt | 111 ++ test/MC/Disassembler/ARM/ras-extension-thumb.txt | 3 + 27 files changed, 5103 insertions(+), 107 deletions(-) create mode 100644 test/MC/ARM/fp-armv8-m.s create mode 100644 test/MC/ARM/mve-load-store.s create mode 100644 test/MC/ARM/mve-misc.s create mode 100644 test/MC/ARM/no-mve.s create mode 100644 test/MC/Disassembler/ARM/mve-load-store.txt create mode 100644 test/MC/Disassembler/ARM/mve-misc.txt