This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 938d5932072 [RISCV] Set isReMaterializable on ADDI and LUI instructions new 4acf19a46be [llvm-mca][X86] Add CMOV test files new 90c9fa065a1 [InstCombine] Propagate the nsw/nuw flags from the add in t [...] new 6209d969a23 [mips] Add support for Global INValidate ASE
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: include/llvm/Support/MipsABIFlags.h | 3 +- lib/Target/Mips/AsmParser/MipsAsmParser.cpp | 70 +++++ lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h | 2 + .../Mips/MCTargetDesc/MipsTargetStreamer.cpp | 22 ++ lib/Target/Mips/MicroMips32r6InstrFormats.td | 17 ++ lib/Target/Mips/MicroMips32r6InstrInfo.td | 25 ++ lib/Target/Mips/Mips.td | 3 + lib/Target/Mips/Mips32r6InstrFormats.td | 12 + lib/Target/Mips/Mips32r6InstrInfo.td | 24 ++ lib/Target/Mips/MipsInstrInfo.td | 6 + lib/Target/Mips/MipsSchedule.td | 6 +- lib/Target/Mips/MipsSubtarget.cpp | 2 +- lib/Target/Mips/MipsSubtarget.h | 4 + lib/Target/Mips/MipsTargetStreamer.h | 8 + lib/Transforms/InstCombine/InstCombineAndOrXor.cpp | 6 +- test/MC/Disassembler/Mips/ginv/valid-el.txt | 5 + .../Disassembler/Mips/ginv/valid-micromips-el.txt | 5 + test/MC/Disassembler/Mips/ginv/valid-micromips.txt | 5 + test/MC/Disassembler/Mips/ginv/valid.txt | 5 + test/MC/Mips/ginv/invalid.s | 23 ++ test/MC/Mips/ginv/module-ginv.s | 22 ++ test/MC/Mips/ginv/module-noginv.s | 21 ++ test/MC/Mips/ginv/set-ginv-directive.s | 7 + test/MC/Mips/ginv/set-noginv-directive.s | 9 + test/MC/Mips/ginv/valid-micromips.s | 5 + test/MC/Mips/ginv/valid.s | 7 + test/Transforms/InstCombine/abs-1.ll | 28 ++ test/tools/llvm-mca/X86/Atom/resources-cmov.s | 318 ++++++++++++++++++++ test/tools/llvm-mca/X86/Broadwell/resources-cmov.s | 326 ++++++++++++++++++++ test/tools/llvm-mca/X86/BtVer2/resources-cmov.s | 330 +++++++++++++++++++++ test/tools/llvm-mca/X86/Haswell/resources-cmov.s | 326 ++++++++++++++++++++ test/tools/llvm-mca/X86/SLM/resources-cmov.s | 324 ++++++++++++++++++++ .../llvm-mca/X86/SandyBridge/resources-cmov.s | 324 ++++++++++++++++++++ .../llvm-mca/X86/SkylakeClient/resources-cmov.s | 326 ++++++++++++++++++++ .../llvm-mca/X86/SkylakeServer/resources-cmov.s | 326 ++++++++++++++++++++ test/tools/llvm-mca/X86/Znver1/resources-cmov.s | 328 ++++++++++++++++++++ tools/llvm-readobj/ELFDumper.cpp | 1 + 37 files changed, 3277 insertions(+), 4 deletions(-) create mode 100644 test/MC/Disassembler/Mips/ginv/valid-el.txt create mode 100644 test/MC/Disassembler/Mips/ginv/valid-micromips-el.txt create mode 100644 test/MC/Disassembler/Mips/ginv/valid-micromips.txt create mode 100644 test/MC/Disassembler/Mips/ginv/valid.txt create mode 100644 test/MC/Mips/ginv/invalid.s create mode 100644 test/MC/Mips/ginv/module-ginv.s create mode 100644 test/MC/Mips/ginv/module-noginv.s create mode 100644 test/MC/Mips/ginv/set-ginv-directive.s create mode 100644 test/MC/Mips/ginv/set-noginv-directive.s create mode 100644 test/MC/Mips/ginv/valid-micromips.s create mode 100644 test/MC/Mips/ginv/valid.s create mode 100644 test/tools/llvm-mca/X86/Atom/resources-cmov.s create mode 100644 test/tools/llvm-mca/X86/Broadwell/resources-cmov.s create mode 100644 test/tools/llvm-mca/X86/BtVer2/resources-cmov.s create mode 100644 test/tools/llvm-mca/X86/Haswell/resources-cmov.s create mode 100644 test/tools/llvm-mca/X86/SLM/resources-cmov.s create mode 100644 test/tools/llvm-mca/X86/SandyBridge/resources-cmov.s create mode 100644 test/tools/llvm-mca/X86/SkylakeClient/resources-cmov.s create mode 100644 test/tools/llvm-mca/X86/SkylakeServer/resources-cmov.s create mode 100644 test/tools/llvm-mca/X86/Znver1/resources-cmov.s