This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 60c9e9f Fix for r293104, which renamed a directory. new 2355a8b [OptDiag] Split code region out of DiagnosticInfoOptimizationBase new 19925fc New OptimizationRemarkEmitter pass for MIR
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/Analysis/OptimizationDiagnosticInfo.h | 14 +- include/llvm/CodeGen/MachineLoopInfo.h | 7 + .../CodeGen/MachineOptimizationRemarkEmitter.h | 188 +++++++++++++++++++++ include/llvm/IR/DiagnosticInfo.h | 179 ++++++++++++-------- include/llvm/InitializePasses.h | 1 + lib/Analysis/OptimizationDiagnosticInfo.cpp | 83 ++++----- lib/CodeGen/CMakeLists.txt | 1 + lib/CodeGen/MachineLoopInfo.cpp | 16 ++ lib/CodeGen/MachineOptimizationRemarkEmitter.cpp | 90 ++++++++++ lib/CodeGen/RegAllocGreedy.cpp | 84 +++++++++ lib/IR/DiagnosticInfo.cpp | 52 +++--- test/CodeGen/AArch64/arm64-spill-remarks.ll | 65 +++++++ tools/llc/llc.cpp | 4 + 13 files changed, 643 insertions(+), 141 deletions(-) create mode 100644 include/llvm/CodeGen/MachineOptimizationRemarkEmitter.h create mode 100644 lib/CodeGen/MachineOptimizationRemarkEmitter.cpp create mode 100644 test/CodeGen/AArch64/arm64-spill-remarks.ll