This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from c8237e4e744 [GVN] Recommit the patch "Add phi-translate support in scalarpre". new a407cc079c5 [GlobalISel] Add a localizer pass for target to use new 6a19144d2b9 [AArch64][GlobalISel] Add the Localizer pass for the O0 pipeline
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/CodeGen/GlobalISel/Localizer.h | 78 ++++++ include/llvm/CodeGen/MachineRegisterInfo.h | 5 + include/llvm/InitializePasses.h | 1 + lib/CodeGen/GlobalISel/CMakeLists.txt | 1 + lib/CodeGen/GlobalISel/GlobalISel.cpp | 1 + lib/CodeGen/GlobalISel/Localizer.cpp | 125 +++++++++ lib/Target/AArch64/AArch64TargetMachine.cpp | 10 +- test/CodeGen/AArch64/GlobalISel/arm64-fallback.ll | 2 +- .../AArch64/GlobalISel/gisel-commandline-option.ll | 5 +- .../GlobalISel/localizer-in-O0-pipeline.mir | 96 +++++++ test/CodeGen/AArch64/GlobalISel/localizer.mir | 312 +++++++++++++++++++++ 11 files changed, 632 insertions(+), 4 deletions(-) create mode 100644 include/llvm/CodeGen/GlobalISel/Localizer.h create mode 100644 lib/CodeGen/GlobalISel/Localizer.cpp create mode 100644 test/CodeGen/AArch64/GlobalISel/localizer-in-O0-pipeline.mir create mode 100644 test/CodeGen/AArch64/GlobalISel/localizer.mir