This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from ea5f709d737 [llvm-objcopy] - Check for invalidated relocations when rem [...] new ea85a46c1e2 [AMDGPU][MC][GFX8+] Added syntactic sugar for 'vgpr index' [...] new a15cff122c4 [DebugInfo] add SectionedAddress to DebugInfo interfaces.
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/DebugInfo/DIContext.h | 11 +- include/llvm/DebugInfo/DWARF/DWARFContext.h | 13 +- include/llvm/DebugInfo/DWARF/DWARFDebugLine.h | 36 +++- include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h | 2 +- include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h | 4 +- include/llvm/DebugInfo/DWARF/DWARFFormValue.h | 6 +- include/llvm/DebugInfo/DWARF/DWARFListTable.h | 4 +- include/llvm/DebugInfo/DWARF/DWARFSection.h | 5 - include/llvm/DebugInfo/DWARF/DWARFUnit.h | 7 +- include/llvm/DebugInfo/PDB/PDBContext.h | 6 +- .../llvm/DebugInfo/Symbolize/SymbolizableModule.h | 11 +- include/llvm/DebugInfo/Symbolize/Symbolize.h | 11 +- include/llvm/Object/ObjectFile.h | 24 +++ lib/DebugInfo/DWARF/DWARFContext.cpp | 66 +++--- lib/DebugInfo/DWARF/DWARFDataExtractor.cpp | 2 +- lib/DebugInfo/DWARF/DWARFDebugLine.cpp | 94 ++++++--- lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp | 2 +- lib/DebugInfo/DWARF/DWARFDebugRnglists.cpp | 7 +- lib/DebugInfo/DWARF/DWARFDie.cpp | 4 +- lib/DebugInfo/DWARF/DWARFFormValue.cpp | 9 +- lib/DebugInfo/DWARF/DWARFUnit.cpp | 4 +- lib/DebugInfo/DWARF/DWARFVerifier.cpp | 4 +- lib/DebugInfo/PDB/PDBContext.cpp | 19 +- lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp | 21 +- lib/DebugInfo/Symbolize/SymbolizableObjectFile.h | 7 +- lib/DebugInfo/Symbolize/Symbolize.cpp | 17 +- lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp | 91 ++++++++- .../AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp | 31 +-- lib/Target/AMDGPU/SIDefines.h | 30 ++- lib/Target/AMDGPU/SIISelLowering.cpp | 4 +- lib/Target/AMDGPU/SOPInstructions.td | 1 + lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp | 13 ++ lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.h | 7 + test/CodeGen/AMDGPU/indirect-addressing-si-gfx9.ll | 4 +- .../AMDGPU/indirect-addressing-si-pregfx9.ll | 4 +- test/CodeGen/AMDGPU/indirect-addressing-si.ll | 42 ++-- test/MC/AMDGPU/sopc-err.s | 24 ++- test/MC/AMDGPU/sopc.s | 42 +++- test/MC/AMDGPU/sopp.s | 18 +- test/MC/Disassembler/AMDGPU/sopc_vi.txt | 12 ++ test/MC/Disassembler/AMDGPU/sopp_vi.txt | 6 + .../X86/function-sections-line-numbers.s | 221 +++++++++++++++++++++ tools/dsymutil/DwarfLinker.cpp | 22 +- tools/dsymutil/DwarfStreamer.cpp | 6 +- tools/llvm-cfi-verify/lib/FileAnalysis.cpp | 20 +- tools/llvm-cfi-verify/lib/FileAnalysis.h | 9 +- tools/llvm-cfi-verify/lib/GraphBuilder.cpp | 10 +- tools/llvm-cfi-verify/lib/GraphBuilder.h | 2 +- tools/llvm-cfi-verify/llvm-cfi-verify.cpp | 12 +- tools/llvm-dwarfdump/llvm-dwarfdump.cpp | 14 +- tools/llvm-objdump/MachODump.cpp | 2 +- tools/llvm-objdump/llvm-objdump.cpp | 50 ++--- tools/llvm-rtdyld/llvm-rtdyld.cpp | 10 +- tools/llvm-symbolizer/llvm-symbolizer.cpp | 39 +++- tools/llvm-xray/func-id-helper.cpp | 14 +- tools/sancov/sancov.cpp | 26 ++- tools/sanstats/sanstats.cpp | 6 +- unittests/tools/llvm-cfi-verify/FileAnalysis.cpp | 178 ++++++++++------- unittests/tools/llvm-cfi-verify/GraphBuilder.cpp | 73 ++++--- 59 files changed, 1043 insertions(+), 396 deletions(-) create mode 100644 test/tools/llvm-objdump/X86/function-sections-line-numbers.s