This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 6355fcebb37 [SystemZ] Bugfix in shouldCoalesce() new d1851a2b7af Revert "[MSP430] Add MC layer"
The 1 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/BinaryFormat/ELF.h | 34 - include/llvm/BinaryFormat/ELFRelocs/MSP430.def | 16 - include/llvm/Object/ELFObjectFile.h | 4 - include/llvm/module.modulemap | 1 - lib/Object/ELF.cpp | 7 - lib/Target/MSP430/AsmParser/CMakeLists.txt | 3 - lib/Target/MSP430/AsmParser/LLVMBuild.txt | 23 - lib/Target/MSP430/AsmParser/MSP430AsmParser.cpp | 562 -------- lib/Target/MSP430/CMakeLists.txt | 5 - lib/Target/MSP430/Disassembler/CMakeLists.txt | 3 - lib/Target/MSP430/Disassembler/LLVMBuild.txt | 23 - .../MSP430/Disassembler/MSP430Disassembler.cpp | 375 ----- .../MSP430/InstPrinter/MSP430InstPrinter.cpp | 36 +- lib/Target/MSP430/InstPrinter/MSP430InstPrinter.h | 7 - lib/Target/MSP430/LLVMBuild.txt | 4 +- lib/Target/MSP430/MCTargetDesc/CMakeLists.txt | 6 +- .../MSP430/MCTargetDesc/MSP430AsmBackend.cpp | 178 --- .../MSP430/MCTargetDesc/MSP430ELFObjectWriter.cpp | 59 - .../MSP430/MCTargetDesc/MSP430ELFStreamer.cpp | 81 -- lib/Target/MSP430/MCTargetDesc/MSP430FixupKinds.h | 53 - .../MSP430/MCTargetDesc/MSP430MCCodeEmitter.cpp | 211 --- .../MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp | 27 +- .../MSP430/MCTargetDesc/MSP430MCTargetDesc.h | 27 - lib/Target/MSP430/MSP430.h | 2 - lib/Target/MSP430/MSP430.td | 18 - lib/Target/MSP430/MSP430ISelDAGToDAG.cpp | 32 +- lib/Target/MSP430/MSP430ISelLowering.cpp | 91 +- lib/Target/MSP430/MSP430ISelLowering.h | 8 +- lib/Target/MSP430/MSP430InstrFormats.td | 422 ++---- lib/Target/MSP430/MSP430InstrInfo.cpp | 45 +- lib/Target/MSP430/MSP430InstrInfo.h | 16 + lib/Target/MSP430/MSP430InstrInfo.td | 1427 ++++++++++++-------- lib/Target/MSP430/MSP430MCInstLower.cpp | 3 - lib/Target/MSP430/MSP430RegisterInfo.td | 29 +- test/CodeGen/MSP430/AddrMode-bis-rx.ll | 10 +- test/CodeGen/MSP430/AddrMode-bis-xr.ll | 10 +- test/CodeGen/MSP430/AddrMode-mov-rx.ll | 10 +- test/CodeGen/MSP430/AddrMode-mov-xr.ll | 10 +- test/CodeGen/MSP430/Inst16mi.ll | 10 +- test/CodeGen/MSP430/Inst16mm.ll | 14 +- test/CodeGen/MSP430/Inst16mr.ll | 12 +- test/CodeGen/MSP430/Inst16ri.ll | 10 +- test/CodeGen/MSP430/Inst16rm.ll | 10 +- test/CodeGen/MSP430/Inst16rr.ll | 12 +- test/CodeGen/MSP430/Inst8mi.ll | 2 +- test/CodeGen/MSP430/Inst8ri.ll | 2 +- test/CodeGen/MSP430/Inst8rr.ll | 8 +- test/CodeGen/MSP430/asm-clobbers.ll | 4 +- test/CodeGen/MSP430/bit.ll | 16 +- test/CodeGen/MSP430/byval.ll | 8 +- test/CodeGen/MSP430/cc_args.ll | 104 +- test/CodeGen/MSP430/cc_ret.ll | 28 +- test/CodeGen/MSP430/fp.ll | 10 +- test/CodeGen/MSP430/jumptable.ll | 8 +- test/CodeGen/MSP430/memset.ll | 6 +- test/CodeGen/MSP430/misched-msp430.ll | 2 +- test/CodeGen/MSP430/postinc.ll | 10 +- test/CodeGen/MSP430/select-use-sr.ll | 4 +- test/CodeGen/MSP430/setcc.ll | 56 +- test/CodeGen/MSP430/shifts.ll | 8 +- test/CodeGen/MSP430/struct-return.ll | 16 +- test/CodeGen/MSP430/struct_layout.ll | 8 +- test/CodeGen/MSP430/transient-stack-alignment.ll | 6 +- test/CodeGen/MSP430/vararg.ll | 20 +- test/MC/Disassembler/MSP430/lit.local.cfg | 3 - test/MC/Disassembler/MSP430/msp430.txt | 27 - test/MC/MSP430/addrmode.s | 110 -- test/MC/MSP430/altreg.s | 7 - test/MC/MSP430/const.s | 10 - test/MC/MSP430/invalid.s | 19 - test/MC/MSP430/lit.local.cfg | 3 - test/MC/MSP430/opcode.s | 163 --- test/MC/MSP430/reloc.s | 22 - 73 files changed, 1309 insertions(+), 3327 deletions(-) delete mode 100644 include/llvm/BinaryFormat/ELFRelocs/MSP430.def delete mode 100644 lib/Target/MSP430/AsmParser/CMakeLists.txt delete mode 100644 lib/Target/MSP430/AsmParser/LLVMBuild.txt delete mode 100644 lib/Target/MSP430/AsmParser/MSP430AsmParser.cpp delete mode 100644 lib/Target/MSP430/Disassembler/CMakeLists.txt delete mode 100644 lib/Target/MSP430/Disassembler/LLVMBuild.txt delete mode 100644 lib/Target/MSP430/Disassembler/MSP430Disassembler.cpp delete mode 100644 lib/Target/MSP430/MCTargetDesc/MSP430AsmBackend.cpp delete mode 100644 lib/Target/MSP430/MCTargetDesc/MSP430ELFObjectWriter.cpp delete mode 100644 lib/Target/MSP430/MCTargetDesc/MSP430ELFStreamer.cpp delete mode 100644 lib/Target/MSP430/MCTargetDesc/MSP430FixupKinds.h delete mode 100644 lib/Target/MSP430/MCTargetDesc/MSP430MCCodeEmitter.cpp delete mode 100644 test/MC/Disassembler/MSP430/lit.local.cfg delete mode 100644 test/MC/Disassembler/MSP430/msp430.txt delete mode 100644 test/MC/MSP430/addrmode.s delete mode 100644 test/MC/MSP430/altreg.s delete mode 100644 test/MC/MSP430/const.s delete mode 100644 test/MC/MSP430/invalid.s delete mode 100644 test/MC/MSP430/lit.local.cfg delete mode 100644 test/MC/MSP430/opcode.s delete mode 100644 test/MC/MSP430/reloc.s