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