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