This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from c374065b04c TableGen: Avoid using resolveListElementReference in TGParser new 581db4c3f69 [MIPS GlobalISel] Adding GlobalISel
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: lib/Target/Mips/CMakeLists.txt | 4 ++ lib/Target/Mips/LLVMBuild.txt | 1 + lib/Target/Mips/Mips.h | 8 +++ lib/Target/Mips/MipsCallLowering.cpp | 47 +++++++++++++++++ lib/Target/Mips/MipsCallLowering.h | 40 ++++++++++++++ lib/Target/Mips/MipsInstructionSelector.cpp | 66 ++++++++++++++++++++++++ lib/Target/Mips/MipsLegalizerInfo.cpp | 24 +++++++++ lib/Target/Mips/MipsLegalizerInfo.h | 29 +++++++++++ lib/Target/Mips/MipsRegisterBankInfo.cpp | 26 ++++++++++ lib/Target/Mips/MipsRegisterBankInfo.h | 35 +++++++++++++ lib/Target/Mips/MipsSubtarget.cpp | 27 ++++++++++ lib/Target/Mips/MipsSubtarget.h | 17 ++++++ lib/Target/Mips/MipsTargetMachine.cpp | 31 +++++++++++ test/CodeGen/Mips/GlobalISel/irtranslator/ret.ll | 11 ++++ test/CodeGen/Mips/GlobalISel/llvm-ir/ret.ll | 12 +++++ 15 files changed, 378 insertions(+) create mode 100644 lib/Target/Mips/MipsCallLowering.cpp create mode 100644 lib/Target/Mips/MipsCallLowering.h create mode 100644 lib/Target/Mips/MipsInstructionSelector.cpp create mode 100644 lib/Target/Mips/MipsLegalizerInfo.cpp create mode 100644 lib/Target/Mips/MipsLegalizerInfo.h create mode 100644 lib/Target/Mips/MipsRegisterBankInfo.cpp create mode 100644 lib/Target/Mips/MipsRegisterBankInfo.h create mode 100644 test/CodeGen/Mips/GlobalISel/irtranslator/ret.ll create mode 100644 test/CodeGen/Mips/GlobalISel/llvm-ir/ret.ll