1 //===- DWARFDebugInfoEntry.cpp --------------------------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 #include "llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h"
11 #include "llvm/ADT/Optional.h"
12 #include "llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h"
13 #include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
14 #include "llvm/DebugInfo/DWARF/DWARFUnit.h"
15 #include "llvm/Support/DataExtractor.h"
20 using namespace dwarf
;
22 bool DWARFDebugInfoEntry::extractFast(const DWARFUnit
&U
,
23 uint32_t *OffsetPtr
) {
24 DWARFDataExtractor DebugInfoData
= U
.getDebugInfoExtractor();
25 const uint32_t UEndOffset
= U
.getNextUnitOffset();
26 return extractFast(U
, OffsetPtr
, DebugInfoData
, UEndOffset
, 0);
29 bool DWARFDebugInfoEntry::extractFast(const DWARFUnit
&U
, uint32_t *OffsetPtr
,
30 const DWARFDataExtractor
&DebugInfoData
,
31 uint32_t UEndOffset
, uint32_t D
) {
34 if (Offset
>= UEndOffset
|| !DebugInfoData
.isValidOffset(Offset
))
36 uint64_t AbbrCode
= DebugInfoData
.getULEB128(OffsetPtr
);
38 // NULL debug tag entry.
42 AbbrevDecl
= U
.getAbbreviations()->getAbbreviationDeclaration(AbbrCode
);
43 if (nullptr == AbbrevDecl
) {
44 // Restore the original offset.
48 // See if all attributes in this DIE have fixed byte sizes. If so, we can
49 // just add this size to the offset to skip to the next DIE.
50 if (Optional
<size_t> FixedSize
= AbbrevDecl
->getFixedAttributesByteSize(U
)) {
51 *OffsetPtr
+= *FixedSize
;
55 // Skip all data in the .debug_info for the attributes
56 for (const auto &AttrSpec
: AbbrevDecl
->attributes()) {
57 // Check if this attribute has a fixed byte size.
58 if (auto FixedSize
= AttrSpec
.getByteSize(U
)) {
59 // Attribute byte size if fixed, just add the size to the offset.
60 *OffsetPtr
+= *FixedSize
;
61 } else if (!DWARFFormValue::skipValue(AttrSpec
.Form
, DebugInfoData
,
62 OffsetPtr
, U
.getFormParams())) {
63 // We failed to skip this attribute's value, restore the original offset
64 // and return the failure status.