This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 26a43207906 [docs][FIX] Add missing word to documentation in terms of SCCs new a782d2cb2de Reland "[DwarfDebug] Dump call site debug info" new 79df64cbfad [InstCombine] canonicalize fneg before fmul/fdiv
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 | 4 + include/llvm/CodeGen/TargetInstrInfo.h | 7 + include/llvm/CodeGen/TargetRegisterInfo.h | 5 + lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | 108 +++++++++-- lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | 29 ++- lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 212 +++++++++++++++++++-- lib/CodeGen/AsmPrinter/DwarfDebug.h | 19 ++ lib/CodeGen/AsmPrinter/DwarfExpression.cpp | 35 +++- lib/CodeGen/AsmPrinter/DwarfExpression.h | 11 +- lib/CodeGen/AsmPrinter/DwarfUnit.cpp | 4 + lib/CodeGen/AsmPrinter/DwarfUnit.h | 2 + lib/CodeGen/TargetInstrInfo.cpp | 31 +++ lib/CodeGen/TargetRegisterInfo.cpp | 13 ++ lib/DebugInfo/DWARF/DWARFDie.cpp | 1 + lib/IR/DebugInfoMetadata.cpp | 19 +- lib/Target/X86/X86InstrInfo.cpp | 88 ++++++++- lib/Target/X86/X86InstrInfo.h | 3 + lib/Transforms/InstCombine/InstCombineAddSub.cpp | 22 +++ .../InstCombine/InstCombineMulDivRem.cpp | 20 -- .../MIR/X86/dbgcall-site-interpretation.mir | 202 ++++++++++++++++++++ .../MIR/X86/dbgcall-site-lea-interpretation.mir | 140 ++++++++++++++ test/DebugInfo/MIR/X86/debug-call-site-param.mir | 159 ++++++++++++++++ test/DebugInfo/X86/dwarf-callsite-related-attrs.ll | 7 +- test/Transforms/InstCombine/fadd.ll | 32 ++-- test/Transforms/InstCombine/fdiv.ll | 16 +- test/Transforms/InstCombine/fmul.ll | 55 +++--- test/Transforms/InstCombine/fsub.ll | 24 +-- test/Transforms/Reassociate/fast-basictest.ll | 21 +- .../llvm-dwarfdump/X86/stats-dbg-callsite-info.ll | 76 ++++++++ tools/llvm-dwarfdump/Statistics.cpp | 20 +- 30 files changed, 1244 insertions(+), 141 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