This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 094c72f8b43 [MachineIRBuilder] Fix an assertion failure with buildMerge new f4daa70c549 [GISel][CallLowering] Enable vector support in argument lowering new 79c7f62d91c [Mips][llvm-exegesis] Add a Mips target
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: lib/CodeGen/GlobalISel/CallLowering.cpp | 6 +- lib/Target/Mips/CMakeLists.txt | 1 + lib/Target/Mips/Mips.td | 6 ++ lib/Target/Mips/MipsPfmCounters.td | 18 +++++ .../GlobalISel/irtranslator-split-vector-arg.ll | 22 ++++++ tools/llvm-exegesis/lib/Assembler.cpp | 4 +- tools/llvm-exegesis/lib/CMakeLists.txt | 4 + tools/llvm-exegesis/lib/Mips/CMakeLists.txt | 18 +++++ tools/llvm-exegesis/lib/Mips/LLVMBuild.txt | 21 +++++ tools/llvm-exegesis/lib/Mips/Target.cpp | 67 ++++++++++++++++ unittests/tools/llvm-exegesis/CMakeLists.txt | 3 + unittests/tools/llvm-exegesis/Mips/CMakeLists.txt | 21 +++++ unittests/tools/llvm-exegesis/Mips/TargetTest.cpp | 91 ++++++++++++++++++++++ 13 files changed, 277 insertions(+), 5 deletions(-) create mode 100644 lib/Target/Mips/MipsPfmCounters.td create mode 100644 test/CodeGen/AArch64/GlobalISel/irtranslator-split-vector-arg.ll create mode 100644 tools/llvm-exegesis/lib/Mips/CMakeLists.txt create mode 100644 tools/llvm-exegesis/lib/Mips/LLVMBuild.txt create mode 100644 tools/llvm-exegesis/lib/Mips/Target.cpp create mode 100644 unittests/tools/llvm-exegesis/Mips/CMakeLists.txt create mode 100644 unittests/tools/llvm-exegesis/Mips/TargetTest.cpp