[DebugInfo] Generate DWARF debug information for labels. (Fix leak problems)
authorHsiangkai Wang <hsiangkai@gmail.com>
Tue, 14 Aug 2018 13:50:59 +0000 (13:50 +0000)
committerHsiangkai Wang <hsiangkai@gmail.com>
Tue, 14 Aug 2018 13:50:59 +0000 (13:50 +0000)
commitccae278938ac2925aea9892d43ee83415c44598f
treef2e1ca91500f85e7035579ca0a973d42a27a1337
parent5bd88cf7ddc3342c1a17578aa550e21383b4d079
[DebugInfo] Generate DWARF debug information for labels. (Fix leak problems)

There are two forms for label debug information in DWARF format.

1. Labels in a non-inlined function:

DW_TAG_label
  DW_AT_name
  DW_AT_decl_file
  DW_AT_decl_line
  DW_AT_low_pc

2. Labels in an inlined function:

DW_TAG_label
  DW_AT_abstract_origin
  DW_AT_low_pc

We will collect label information from DBG_LABEL. Before every DBG_LABEL,
we will generate a temporary symbol to denote the location of the label.
The symbol could be used to get DW_AT_low_pc afterwards. So, we create a
mapping between 'inlined label' and DBG_LABEL MachineInstr in DebugHandlerBase.
The DBG_LABEL in the mapping is used to query the symbol before it.

The AbstractLabels in DwarfCompileUnit is used to process labels in inlined
functions.

We also keep a mapping between scope and labels in DwarfFile to help to
generate correct tree structure of DIEs.

It also generates label debug information under global isel.

Differential Revision: https://reviews.llvm.org/D45556

llvm-svn: 339676
19 files changed:
llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt
llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
llvm/lib/CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp [moved from llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp with 81% similarity]
llvm/lib/CodeGen/AsmPrinter/DbgEntityHistoryCalculator.h [moved from llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.h with 68% similarity]
llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.h
llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp
llvm/lib/CodeGen/AsmPrinter/DwarfFile.h
llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
llvm/lib/CodeGen/GlobalISel/MachineIRBuilder.cpp
llvm/test/DebugInfo/Generic/debug-label-inline.ll [new file with mode: 0644]
llvm/test/DebugInfo/Generic/debug-label.ll [new file with mode: 0644]