This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from d077c9767cd [X86] Fix a couple bugs in my recent changes to vXi1 insert [...] new 01cfc43fe47 [PowerPC] Convert r+r instructions to r+i (pre and post RA)
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/PowerPC/CMakeLists.txt | 1 + lib/Target/PowerPC/PPC.h | 3 + lib/Target/PowerPC/PPCInstr64Bit.td | 5 + lib/Target/PowerPC/PPCInstrInfo.cpp | 814 +++ lib/Target/PowerPC/PPCInstrInfo.h | 52 + lib/Target/PowerPC/PPCInstrInfo.td | 5 + lib/Target/PowerPC/PPCMIPeephole.cpp | 111 +- lib/Target/PowerPC/PPCPreEmitPeephole.cpp | 95 + lib/Target/PowerPC/PPCTargetMachine.cpp | 3 + test/CodeGen/PowerPC/build-vector-tests.ll | 56 +- ...convert-rr-to-ri-instrs-R0-special-handling.mir | 436 ++ test/CodeGen/PowerPC/convert-rr-to-ri-instrs.mir | 6129 ++++++++++++++++++++ test/CodeGen/PowerPC/fast-isel-call.ll | 16 +- test/CodeGen/PowerPC/setcc-logic.ll | 4 +- test/CodeGen/PowerPC/simplifyConstCmpToISEL.ll | 51 + test/CodeGen/PowerPC/unaligned.ll | 2 +- test/CodeGen/PowerPC/variable_elem_vec_extracts.ll | 6 +- 17 files changed, 7699 insertions(+), 90 deletions(-) create mode 100644 lib/Target/PowerPC/PPCPreEmitPeephole.cpp create mode 100644 test/CodeGen/PowerPC/convert-rr-to-ri-instrs-R0-special-handling.mir create mode 100644 test/CodeGen/PowerPC/convert-rr-to-ri-instrs.mir create mode 100644 test/CodeGen/PowerPC/simplifyConstCmpToISEL.ll