llvm/lib/DebugInfo
Greg Clayton c64f919f1c Add the ability to get attribute values as Optional<T>
When getting attributes it is sometimes nicer to use Optional<T> some of the time instead of magic values. I tried to cut over to only using the Optional values but it made many of the call sites very messy, so it makes sense the leave in the calls that can return a default value. Otherwise code that looks like this:

uint64_t CallColumn = Die.getAttributeValueAsAddress(DW_AT_call_line, 0);

Has to be turned into:

uint64_t CallColumn = 0;
if (auto CallColumnValue = Die.getAttributeValueAsAddress(DW_AT_call_line))
    CallColumn = *CallColumnValue;

The first snippet of code looks much better. But in cases where you want an offset that may or may not be there, the following code looks better:

if (auto StmtOffset = Die.getAttributeValueAsSectionOffset(DW_AT_stmt_list)) {
  // Use StmtOffset
}

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



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@289731 91177308-0d34-0410-b5e6-96231b3b80d8
2016-12-14 22:38:08 +00:00
..
CodeView Fix some size_t / uint32_t ambiguity errors. 2016-11-08 22:30:11 +00:00
DWARF Add the ability to get attribute values as Optional<T> 2016-12-14 22:38:08 +00:00
MSF [pdb] handle missing pdb streams more gracefully 2016-12-05 22:44:00 +00:00
PDB [pdb] handle missing pdb streams more gracefully 2016-12-05 22:44:00 +00:00
Symbolize
CMakeLists.txt
LLVMBuild.txt