This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from cc56be2830e Add const to a const method. NFC new b560ea777b0 PR32382: Fix emitting complex DWARF expressions.
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/LangRef.rst | 17 ++- docs/SourceLevelDebugging.rst | 22 +++- include/llvm/CodeGen/MachineInstrBuilder.h | 5 + include/llvm/IR/DebugInfoMetadata.h | 5 +- lib/Bitcode/Reader/BitcodeReader.cpp | 1 + lib/Bitcode/Reader/MetadataLoader.cpp | 57 +++++++- lib/Bitcode/Reader/MetadataLoader.h | 3 + lib/Bitcode/Writer/BitcodeWriter.cpp | 5 +- lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 12 +- lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | 25 ++-- lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 7 +- lib/CodeGen/AsmPrinter/DwarfExpression.cpp | 146 +++++++++++++-------- lib/CodeGen/AsmPrinter/DwarfExpression.h | 13 +- lib/CodeGen/AsmPrinter/DwarfUnit.cpp | 5 +- lib/CodeGen/InlineSpiller.cpp | 16 +-- lib/CodeGen/MachineInstr.cpp | 28 ++++ lib/CodeGen/RegAllocFast.cpp | 14 +- lib/CodeGen/SafeStack.cpp | 6 +- lib/CodeGen/SelectionDAG/FastISel.cpp | 6 +- lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 16 ++- lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | 2 +- .../Instrumentation/AddressSanitizer.cpp | 2 +- lib/Transforms/Utils/Local.cpp | 8 +- test/Bitcode/DIExpression-aggresult.ll | 36 +++++ test/Bitcode/DIExpression-aggresult.ll.bc | Bin 0 -> 1344 bytes test/Bitcode/DIExpression-deref.ll | 27 ++++ test/Bitcode/DIExpression-deref.ll.bc | Bin 0 -> 1012 bytes test/DebugInfo/ARM/selectiondag-deadcode.ll | 2 +- test/DebugInfo/Generic/block-asan.ll | 2 +- test/DebugInfo/X86/dbg-declare-arg.ll | 16 ++- test/DebugInfo/X86/dbg_value_direct.ll | 2 +- .../X86/debug-info-block-captured-self.ll | 4 +- test/DebugInfo/X86/dw_op_minus.ll | 13 +- test/DebugInfo/X86/dw_op_minus_direct.ll | 6 +- test/DebugInfo/X86/sret.ll | 20 ++- .../Instrumentation/AddressSanitizer/debug_info.ll | 6 +- test/Transforms/SafeStack/X86/debug-loc.ll | 4 +- 37 files changed, 381 insertions(+), 178 deletions(-) create mode 100644 test/Bitcode/DIExpression-aggresult.ll create mode 100644 test/Bitcode/DIExpression-aggresult.ll.bc create mode 100644 test/Bitcode/DIExpression-deref.ll create mode 100644 test/Bitcode/DIExpression-deref.ll.bc