1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| //===-- DWARFTypeUnit.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 SymbolFileDWARF_DWARFTypeUnit_h_
#define SymbolFileDWARF_DWARFTypeUnit_h_
#include "DWARFUnit.h"
#include "llvm/Support/Error.h"
class DWARFTypeUnit : public DWARFUnit {
public:
void BuildAddressRangeTable(DWARFDebugAranges *debug_aranges) override {}
void Dump(lldb_private::Stream *s) const override;
uint64_t GetTypeHash() { return m_header.GetTypeHash(); }
dw_offset_t GetTypeOffset() { return GetOffset() + m_header.GetTypeOffset(); }
static bool classof(const DWARFUnit *unit) { return unit->IsTypeUnit(); }
private:
DWARFTypeUnit(SymbolFileDWARF &dwarf, lldb::user_id_t uid,
const DWARFUnitHeader &header,
const DWARFAbbreviationDeclarationSet &abbrevs,
DIERef::Section section)
: DWARFUnit(dwarf, uid, header, abbrevs, section) {}
friend class DWARFUnit;
};
#endif // SymbolFileDWARF_DWARFTypeUnit_h_
|