1 //===- DWARFDebugAddr.h -------------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===------------------------------------------------------------------===//
9 #ifndef LLVM_DEBUGINFO_DWARFDEBUGADDR_H
10 #define LLVM_DEBUGINFO_DWARFDEBUGADDR_H
12 #include "llvm/BinaryFormat/Dwarf.h"
13 #include "llvm/DebugInfo/DIContext.h"
14 #include "llvm/DebugInfo/DWARF/DWARFDataExtractor.h"
15 #include "llvm/Support/Errc.h"
16 #include "llvm/Support/Error.h"
26 /// A class representing an address table as specified in DWARF v5.
27 /// The table consists of a header followed by an array of address values from
28 /// .debug_addr section.
29 class DWARFDebugAddrTable
{
32 /// The total length of the entries for this table, not including the length
35 /// The DWARF version number.
37 /// The size in bytes of an address on the target architecture. For
38 /// segmented addressing, this is the size of the offset portion of the
41 /// The size in bytes of a segment selector on the target architecture.
42 /// If the target system uses a flat address space, this value is 0.
47 dwarf::DwarfFormat Format
;
48 uint64_t HeaderOffset
;
50 uint32_t DataSize
= 0;
51 std::vector
<uint64_t> Addrs
;
56 /// Extract an entire table, including all addresses.
57 Error
extract(DWARFDataExtractor Data
, uint64_t *OffsetPtr
,
58 uint16_t Version
, uint8_t AddrSize
,
59 std::function
<void(Error
)> WarnCallback
);
61 uint64_t getHeaderOffset() const { return HeaderOffset
; }
62 uint8_t getAddrSize() const { return HeaderData
.AddrSize
; }
63 void dump(raw_ostream
&OS
, DIDumpOptions DumpOpts
= {}) const;
65 /// Return the address based on a given index.
66 Expected
<uint64_t> getAddrEntry(uint32_t Index
) const;
68 /// Return the size of the table header including the length
69 /// but not including the addresses.
70 uint8_t getHeaderSize() const {
72 case dwarf::DwarfFormat::DWARF32
:
73 return 8; // 4 + 2 + 1 + 1
74 case dwarf::DwarfFormat::DWARF64
:
75 return 16; // 12 + 2 + 1 + 1
77 llvm_unreachable("Invalid DWARF format (expected DWARF32 or DWARF64)");
80 /// Returns the length of this table, including the length field, or 0 if the
81 /// length has not been determined (e.g. because the table has not yet been
82 /// parsed, or there was a problem in parsing).
83 uint32_t getLength() const;
85 /// Verify that the given length is valid for this table.
86 bool hasValidLength() const { return getLength() != 0; }
88 /// Invalidate Length field to stop further processing.
89 void invalidateLength() { HeaderData
.Length
= 0; }
91 /// Returns the length of the array of addresses.
92 uint32_t getDataSize() const;
95 } // end namespace llvm
97 #endif // LLVM_DEBUGINFO_DWARFDEBUGADDR_H