This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 84a656e8137 [llvm-objdump] Use `auto` declaration in typecasting new 695940b0f10 [MSP430] Add MC layer new 5ba6366a246 Add missed files from prev. commit
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/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 | 15 +- lib/Target/MSP430/AsmParser/MSP430AsmParser.cpp | 563 ++++++++ lib/Target/MSP430/CMakeLists.txt | 5 + lib/Target/MSP430/Disassembler/CMakeLists.txt | 3 + lib/Target/MSP430/{ => Disassembler}/LLVMBuild.txt | 15 +- .../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 +- .../Disassembler}/MSP430/lit.local.cfg | 0 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/{CodeGen => MC}/MSP430/lit.local.cfg | 0 test/MC/MSP430/opcode.s | 163 +++ test/MC/MSP430/reloc.s | 22 + 73 files changed, 3282 insertions(+), 1333 deletions(-) create mode 100644 include/llvm/BinaryFormat/ELFRelocs/MSP430.def create mode 100644 lib/Target/MSP430/AsmParser/CMakeLists.txt copy lib/Target/MSP430/{ => AsmParser}/LLVMBuild.txt (64%) create mode 100644 lib/Target/MSP430/AsmParser/MSP430AsmParser.cpp create mode 100644 lib/Target/MSP430/Disassembler/CMakeLists.txt copy lib/Target/MSP430/{ => Disassembler}/LLVMBuild.txt (64%) create mode 100644 lib/Target/MSP430/Disassembler/MSP430Disassembler.cpp create mode 100644 lib/Target/MSP430/MCTargetDesc/MSP430AsmBackend.cpp create mode 100644 lib/Target/MSP430/MCTargetDesc/MSP430ELFObjectWriter.cpp create mode 100644 lib/Target/MSP430/MCTargetDesc/MSP430ELFStreamer.cpp create mode 100644 lib/Target/MSP430/MCTargetDesc/MSP430FixupKinds.h create mode 100644 lib/Target/MSP430/MCTargetDesc/MSP430MCCodeEmitter.cpp copy test/{CodeGen => MC/Disassembler}/MSP430/lit.local.cfg (100%) create mode 100644 test/MC/Disassembler/MSP430/msp430.txt create mode 100644 test/MC/MSP430/addrmode.s create mode 100644 test/MC/MSP430/altreg.s create mode 100644 test/MC/MSP430/const.s create mode 100644 test/MC/MSP430/invalid.s copy test/{CodeGen => MC}/MSP430/lit.local.cfg (100%) create mode 100644 test/MC/MSP430/opcode.s create mode 100644 test/MC/MSP430/reloc.s