LLDB
mainline
llvm-project
lldb
source
Plugins
SymbolFile
DWARF
DWARFDataExtractor.h
Go to the documentation of this file.
1
//===-- DWARFDataExtractor.h ------------------------------------*- C++ -*-===//
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
#ifndef LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_DWARFDATAEXTRACTOR_H
10
#define LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_DWARFDATAEXTRACTOR_H
11
12
#include "
lldb/Utility/DataExtractor.h
"
13
#include "llvm/DebugInfo/DWARF/DWARFDataExtractor.h"
14
15
namespace
lldb_private
{
16
17
class
DWARFDataExtractor
:
public
DataExtractor
{
18
public
:
19
DWARFDataExtractor
() =
default
;
20
21
DWARFDataExtractor
(
const
DWARFDataExtractor
&data,
lldb::offset_t
offset,
22
lldb::offset_t
length)
23
:
DataExtractor
(data, offset, length) {}
24
25
llvm::DWARFDataExtractor
GetAsLLVMDWARF
()
const
;
26
llvm::DataExtractor
GetAsLLVM
()
const
;
27
};
28
}
// namespace lldb_private
29
30
#endif
// LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_DWARFDATAEXTRACTOR_H
DataExtractor.h
lldb_private::DWARFDataExtractor::DWARFDataExtractor
DWARFDataExtractor(const DWARFDataExtractor &data, lldb::offset_t offset, lldb::offset_t length)
Definition
DWARFDataExtractor.h:21
lldb_private::DWARFDataExtractor::GetAsLLVMDWARF
llvm::DWARFDataExtractor GetAsLLVMDWARF() const
Definition
DWARFDataExtractor.cpp:14
lldb_private::DWARFDataExtractor::GetAsLLVM
llvm::DataExtractor GetAsLLVM() const
Definition
DWARFDataExtractor.cpp:19
lldb_private::DWARFDataExtractor::DWARFDataExtractor
DWARFDataExtractor()=default
lldb_private::DataExtractor::DataExtractor
DataExtractor()
Default constructor.
Definition
DataExtractor.cpp:123
lldb_private
A class that represents a running process on the host machine.
Definition
SBAddressRange.h:14
lldb::offset_t
uint64_t offset_t
Definition
lldb-types.h:85
Generated on
for LLDB by
1.14.0