LLDB mainline
DWARFDebugAranges.cpp
Go to the documentation of this file.
1//===-- DWARFDebugAranges.cpp ---------------------------------------------===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8
9#include "DWARFDebugAranges.h"
10#include "DWARFDebugArangeSet.h"
11#include "DWARFUnit.h"
12#include "LogChannelDWARF.h"
13#include "lldb/Utility/Log.h"
14#include "lldb/Utility/Timer.h"
15
16using namespace lldb;
17using namespace lldb_private;
18
19// Constructor
21
22// CountArangeDescriptors
24public:
25 CountArangeDescriptors(uint32_t &count_ref) : count(count_ref) {
26 // printf("constructor CountArangeDescriptors()\n");
27 }
29 count += set.NumDescriptors();
30 }
32};
33
34// Extract
35void DWARFDebugAranges::extract(const DWARFDataExtractor &debug_aranges_data) {
36 lldb::offset_t offset = 0;
37
39 Range range;
40 while (debug_aranges_data.ValidOffset(offset)) {
41 const lldb::offset_t set_offset = offset;
42 if (llvm::Error error = set.extract(debug_aranges_data, &offset)) {
43 Log *log = GetLog(DWARFLog::DebugInfo);
44 LLDB_LOG_ERROR(log, std::move(error),
45 "DWARFDebugAranges::extract failed to extract "
46 ".debug_aranges set at offset %#" PRIx64,
47 set_offset);
48 } else {
49 const uint32_t num_descriptors = set.NumDescriptors();
50 if (num_descriptors > 0) {
51 const dw_offset_t cu_offset = set.GetHeader().cu_offset;
52
53 for (uint32_t i = 0; i < num_descriptors; ++i) {
54 const DWARFDebugArangeSet::Descriptor &descriptor =
55 set.GetDescriptorRef(i);
57 descriptor.length, cu_offset));
58 }
59 }
60 }
61 // Always use the previous DWARFDebugArangeSet's information to calculate
62 // the offset of the next DWARFDebugArangeSet in case we entouncter an
63 // error in the current DWARFDebugArangeSet and our offset position is
64 // still in the middle of the data. If we do this, we can parse all valid
65 // DWARFDebugArangeSet objects without returning invalid errors.
66 offset = set.GetNextOffset();
67 set.Clear();
68 }
69}
70
71void DWARFDebugAranges::Dump(Log *log) const {
72 if (log == nullptr)
73 return;
74
75 const size_t num_entries = m_aranges.GetSize();
76 for (size_t i = 0; i < num_entries; ++i) {
78 if (entry)
79 LLDB_LOG(log, "{0:x8}: [{1:x16} - {2:x16})", entry->data,
80 entry->GetRangeBase(), entry->GetRangeEnd());
81 }
82}
83
85 dw_addr_t high_pc) {
86 if (high_pc > low_pc)
87 m_aranges.Append(RangeToDIE::Entry(low_pc, high_pc - low_pc, offset));
88}
89
90void DWARFDebugAranges::Sort(bool minimize) {
91 LLDB_SCOPED_TIMERF("%s this = %p", LLVM_PRETTY_FUNCTION,
92 static_cast<void *>(this));
93
96}
97
98// FindAddress
100 const RangeToDIE::Entry *entry = m_aranges.FindEntryThatContains(address);
101 if (entry)
102 return entry->data;
103 return DW_INVALID_OFFSET;
104}
static llvm::raw_ostream & error(Stream &strm)
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
Definition: Log.h:337
#define LLDB_LOG_ERROR(log, error,...)
Definition: Log.h:360
#define LLDB_SCOPED_TIMERF(...)
Definition: Timer.h:86
CountArangeDescriptors(uint32_t &count_ref)
void operator()(const DWARFDebugArangeSet &set)
size_t NumDescriptors() const
dw_offset_t GetNextOffset() const
const Descriptor & GetDescriptorRef(uint32_t i) const
const Header & GetHeader() const
llvm::Error extract(const lldb_private::DWARFDataExtractor &data, lldb::offset_t *offset_ptr)
void Sort(bool minimize)
dw_offset_t FindAddress(dw_addr_t address) const
void AppendRange(dw_offset_t cu_offset, dw_addr_t low_pc, dw_addr_t high_pc)
void Dump(lldb_private::Log *log) const
void extract(const lldb_private::DWARFDataExtractor &debug_aranges_data)
bool ValidOffset(lldb::offset_t offset) const
Test the validity of offset.
void CombineConsecutiveEntriesWithEqualData()
Definition: RangeMap.h:486
const Entry * GetEntryAtIndex(size_t i) const
Definition: RangeMap.h:528
void Append(const Entry &entry)
Definition: RangeMap.h:451
Entry * FindEntryThatContains(B addr)
Definition: RangeMap.h:563
uint64_t dw_offset_t
Definition: dwarf.h:31
#define DW_INVALID_OFFSET
Definition: dwarf.h:36
uint64_t dw_addr_t
Definition: dwarf.h:27
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
Definition: Log.h:309
Definition: SBAddress.h:15
uint64_t offset_t
Definition: lldb-types.h:83
uint32_t cu_offset
The offset from the beginning of the .debug_info section of the compilation unit entry referenced by ...
BaseType GetRangeBase() const
Definition: RangeMap.h:45
BaseType GetRangeEnd() const
Definition: RangeMap.h:78