This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 2a6ebe9bcc6 [RISCV] Fix RISCVTTIImpl::getIntImmCost for immediates wher [...] new 9e7e73578e5 [DwarfDebug] Dump call site debug info new 39dc1712423 OpaquePtr: add Type parameter to Loads analysis API.
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: docs/LangRef.rst | 3 + include/llvm/Analysis/Loads.h | 22 ++- include/llvm/CodeGen/TargetInstrInfo.h | 6 + include/llvm/CodeGen/TargetRegisterInfo.h | 4 +- lib/Analysis/Loads.cpp | 29 +-- lib/Analysis/MemDerefPrinter.cpp | 5 +- lib/Analysis/ValueTracking.cpp | 3 +- lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | 100 +++++++++-- lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | 18 +- lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 187 +++++++++++++++++-- lib/CodeGen/AsmPrinter/DwarfDebug.h | 16 ++ lib/CodeGen/AsmPrinter/DwarfExpression.cpp | 36 +++- lib/CodeGen/AsmPrinter/DwarfExpression.h | 11 +- lib/CodeGen/AsmPrinter/DwarfUnit.cpp | 4 + lib/CodeGen/AsmPrinter/DwarfUnit.h | 2 + lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 6 +- lib/CodeGen/TargetInstrInfo.cpp | 40 +++++ lib/CodeGen/TargetRegisterInfo.cpp | 14 ++ lib/DebugInfo/DWARF/DWARFDie.cpp | 1 + lib/IR/DebugInfoMetadata.cpp | 9 +- lib/Target/X86/X86InstrInfo.cpp | 94 +++++++++- lib/Target/X86/X86InstrInfo.h | 3 + lib/Transforms/IPO/ArgumentPromotion.cpp | 52 +++++- lib/Transforms/InstCombine/InstCombineCalls.cpp | 2 +- .../InstCombine/InstCombineLoadStoreAlloca.cpp | 6 +- lib/Transforms/Scalar/LICM.cpp | 4 +- lib/Transforms/Scalar/MergeICmps.cpp | 2 +- lib/Transforms/Scalar/SROA.cpp | 16 +- lib/Transforms/Scalar/TailRecursionElimination.cpp | 2 +- .../MIR/X86/dbgcall-site-interpretation.mir | 200 +++++++++++++++++++++ .../MIR/X86/dbgcall-site-lea-interpretation.mir | 140 +++++++++++++++ test/DebugInfo/MIR/X86/debug-call-site-param.mir | 158 ++++++++++++++++ test/DebugInfo/X86/dwarf-callsite-related-attrs.ll | 7 +- .../llvm-dwarfdump/X86/stats-dbg-callsite-info.ll | 76 ++++++++ tools/llvm-dwarfdump/Statistics.cpp | 20 ++- 35 files changed, 1209 insertions(+), 89 deletions(-) create mode 100644 test/DebugInfo/MIR/X86/dbgcall-site-interpretation.mir create mode 100644 test/DebugInfo/MIR/X86/dbgcall-site-lea-interpretation.mir create mode 100644 test/DebugInfo/MIR/X86/debug-call-site-param.mir create mode 100644 test/tools/llvm-dwarfdump/X86/stats-dbg-callsite-info.ll