35 lines
1 KiB
C
35 lines
1 KiB
C
|
//===-- DWARFDebugRanges.h --------------------------------------*- C++ -*-===//
|
||
|
//
|
||
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
||
|
// See https://llvm.org/LICENSE.txt for license information.
|
||
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#ifndef LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_DWARFDEBUGRANGES_H
|
||
|
#define LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_DWARFDEBUGRANGES_H
|
||
|
|
||
|
#include "lldb/Core/dwarf.h"
|
||
|
#include <map>
|
||
|
|
||
|
namespace lldb_private::plugin {
|
||
|
namespace dwarf {
|
||
|
class DWARFUnit;
|
||
|
class DWARFContext;
|
||
|
|
||
|
class DWARFDebugRanges {
|
||
|
public:
|
||
|
DWARFDebugRanges();
|
||
|
|
||
|
void Extract(DWARFContext &context);
|
||
|
DWARFRangeList FindRanges(const DWARFUnit *cu,
|
||
|
dw_offset_t debug_ranges_offset) const;
|
||
|
|
||
|
protected:
|
||
|
std::map<dw_offset_t, DWARFRangeList> m_range_map;
|
||
|
};
|
||
|
} // namespace dwarf
|
||
|
} // namespace lldb_private::plugin
|
||
|
|
||
|
#endif // LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_DWARFDEBUGRANGES_H
|