This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 1efe4ef3109 [SelectionDAG] Pick correct frame index in LowerArguments new 0e1ce271574 Re-land r313825: "[IR] Add llvm.dbg.addr, a control-depende [...]
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: docs/SourceLevelDebugging.rst | 62 +++++++--- include/llvm/IR/IntrinsicInst.h | 34 +++++- include/llvm/IR/Intrinsics.td | 8 +- include/llvm/Transforms/Utils/Local.h | 22 ++-- lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 48 +++++--- lib/IR/DIBuilder.cpp | 14 ++- lib/IR/Verifier.cpp | 2 + .../InstCombine/InstructionCombining.cpp | 13 ++- lib/Transforms/Scalar/SROA.cpp | 30 ++--- lib/Transforms/Utils/Local.cpp | 93 ++++++++------- lib/Transforms/Utils/PromoteMemoryToRegister.cpp | 44 +++---- test/DebugInfo/X86/dbg-addr-dse.ll | 100 ++++++++++++++++ test/DebugInfo/X86/dbg-addr.ll | 67 +++++++++++ test/DebugInfo/X86/sroasplit-5.ll | 4 +- test/DebugInfo/X86/sroasplit-dbg-declare.ll | 59 ++++++++++ test/Transforms/Mem2Reg/dbg-addr-inline-dse.ll | 94 +++++++++++++++ test/Transforms/Mem2Reg/dbg-addr.ll | 91 +++++++++++++++ test/Transforms/SROA/dbg-addr-diamond.ll | 127 +++++++++++++++++++++ unittests/Transforms/Utils/CMakeLists.txt | 1 + unittests/Transforms/Utils/Local.cpp | 71 ++++++++++++ 20 files changed, 850 insertions(+), 134 deletions(-) create mode 100644 test/DebugInfo/X86/dbg-addr-dse.ll create mode 100644 test/DebugInfo/X86/dbg-addr.ll create mode 100644 test/DebugInfo/X86/sroasplit-dbg-declare.ll create mode 100644 test/Transforms/Mem2Reg/dbg-addr-inline-dse.ll create mode 100644 test/Transforms/Mem2Reg/dbg-addr.ll create mode 100644 test/Transforms/SROA/dbg-addr-diamond.ll