This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 57e4197 [AArch64] Add preferred alignments for Exynos M1 new 32b9ed8 Interprocedural Register Allocation (IPRA) Analysis
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: include/llvm/Analysis/CallGraphSCCPass.h | 18 +++++ include/llvm/CodeGen/MachineOperand.h | 9 +++ include/llvm/CodeGen/Passes.h | 4 + include/llvm/CodeGen/RegisterUsageInfo.h | 75 ++++++++++++++++++ include/llvm/InitializePasses.h | 1 + lib/Analysis/CallGraphSCCPass.cpp | 4 + lib/CodeGen/CMakeLists.txt | 2 + lib/CodeGen/RegUsageInfoCollector.cpp | 131 +++++++++++++++++++++++++++++++ lib/CodeGen/RegisterUsageInfo.cpp | 92 ++++++++++++++++++++++ lib/CodeGen/TargetPassConfig.cpp | 15 ++++ test/CodeGen/X86/ipra-inline-asm.ll | 20 +++++ test/CodeGen/X86/ipra-reg-usage.ll | 12 +++ 12 files changed, 383 insertions(+) create mode 100644 include/llvm/CodeGen/RegisterUsageInfo.h create mode 100644 lib/CodeGen/RegUsageInfoCollector.cpp create mode 100644 lib/CodeGen/RegisterUsageInfo.cpp create mode 100644 test/CodeGen/X86/ipra-inline-asm.ll create mode 100644 test/CodeGen/X86/ipra-reg-usage.ll