diff options
Diffstat (limited to 'source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.h')
-rw-r--r-- | source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.h b/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.h index 30423c7ca2a26..dca25496373ff 100644 --- a/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.h +++ b/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.h @@ -1,9 +1,8 @@ //===-- DebugNamesDWARFIndex.h ---------------------------------*- C++ -*-===// // -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. +// 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 // //===----------------------------------------------------------------------===// @@ -35,15 +34,14 @@ public: void GetTypes(ConstString name, DIEArray &offsets) override; void GetTypes(const DWARFDeclContext &context, DIEArray &offsets) override; void GetNamespaces(ConstString name, DIEArray &offsets) override; - void GetFunctions(ConstString name, DWARFDebugInfo &info, + void GetFunctions(ConstString name, SymbolFileDWARF &dwarf, const CompilerDeclContext &parent_decl_ctx, uint32_t name_type_mask, std::vector<DWARFDIE> &dies) override; void GetFunctions(const RegularExpression ®ex, DIEArray &offsets) override; - void ReportInvalidDIEOffset(dw_offset_t offset, - llvm::StringRef name) override {} + void ReportInvalidDIERef(const DIERef &ref, llvm::StringRef name) override {} void Dump(Stream &s) override; private: @@ -68,7 +66,7 @@ private: std::unique_ptr<DebugNames> m_debug_names_up; ManualDWARFIndex m_fallback; - DIERef ToDIERef(const DebugNames::Entry &entry); + llvm::Optional<DIERef> ToDIERef(const DebugNames::Entry &entry); void Append(const DebugNames::Entry &entry, DIEArray &offsets); static void MaybeLogLookupError(llvm::Error error, |