//===- DWARFDebugAddr.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 LLVM_DEBUGINFO_DWARF_DWARFDEBUGADDR_H #define LLVM_DEBUGINFO_DWARF_DWARFDEBUGADDR_H #include "llvm/BinaryFormat/Dwarf.h" #include "llvm/DebugInfo/DIContext.h" #include "llvm/Support/Error.h" #include <cstdint> #include <vector> namespace llvm { class raw_ostream; class DWARFDataExtractor; /// A class representing an address table as specified in DWARF v5. /// The table consists of a header followed by an array of address values from /// .debug_addr section. class DWARFDebugAddrTable { … }; } // end namespace llvm #endif // LLVM_DEBUGINFO_DWARF_DWARFDEBUGADDR_H