LLDB mainline
DWARFDebugMacro.h
Go to the documentation of this file.
1//===-- DWARFDebugMacro.h ----------------------------------------*- C++
2//-*-===//
3//
4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_DWARFDEBUGMACRO_H
11#define LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_DWARFDEBUGMACRO_H
12
13#include <map>
14
15#include "lldb/Core/dwarf.h"
17#include "lldb/lldb-types.h"
18
19namespace lldb_private {
20
21class DWARFDataExtractor;
22
23} // namespace lldb_private
24
25class SymbolFileDWARF;
26
28public:
33 };
34
36 ParseHeader(const lldb_private::DWARFDataExtractor &debug_macro_data,
37 lldb::offset_t *offset);
38
39 bool OffsetIs64Bit() const { return m_offset_is_64_bit; }
40
41private:
42 static void
44 lldb::offset_t *offset);
45
47 bool m_offset_is_64_bit = false;
48 uint64_t m_debug_line_offset = 0;
49};
50
52public:
53 static void
55 const lldb_private::DWARFDataExtractor &debug_str_data,
56 const bool offset_is_64_bit, lldb::offset_t *sect_offset,
57 SymbolFileDWARF *sym_file_dwarf,
58 lldb_private::DebugMacrosSP &debug_macros_sp);
59};
60
61#endif // LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_DWARFDEBUGMACRO_H
static void ReadMacroEntries(const lldb_private::DWARFDataExtractor &debug_macro_data, const lldb_private::DWARFDataExtractor &debug_str_data, const bool offset_is_64_bit, lldb::offset_t *sect_offset, SymbolFileDWARF *sym_file_dwarf, lldb_private::DebugMacrosSP &debug_macros_sp)
bool OffsetIs64Bit() const
static void SkipOperandTable(const lldb_private::DWARFDataExtractor &debug_macro_data, lldb::offset_t *offset)
static DWARFDebugMacroHeader ParseHeader(const lldb_private::DWARFDataExtractor &debug_macro_data, lldb::offset_t *offset)
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
std::shared_ptr< DebugMacros > DebugMacrosSP
Definition: DebugMacros.h:22
uint64_t offset_t
Definition: lldb-types.h:83