//===- DebugStringTableSubsection.h - CodeView String Table -----*- 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_CODEVIEW_DEBUGSTRINGTABLESUBSECTION_H #define LLVM_DEBUGINFO_CODEVIEW_DEBUGSTRINGTABLESUBSECTION_H #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/StringMap.h" #include "llvm/ADT/StringRef.h" #include "llvm/DebugInfo/CodeView/CodeView.h" #include "llvm/DebugInfo/CodeView/DebugSubsection.h" #include "llvm/Support/BinaryStreamRef.h" #include "llvm/Support/Error.h" #include <cstdint> namespace llvm { class BinaryStreamReader; namespace codeview { /// Represents a read-only view of a CodeView string table. This is a very /// simple flat buffer consisting of null-terminated strings, where strings /// are retrieved by their offset in the buffer. DebugStringTableSubsectionRef /// does not own the underlying storage for the buffer. class DebugStringTableSubsectionRef : public DebugSubsectionRef { … }; /// Represents a read-write view of a CodeView string table. /// DebugStringTableSubsection owns the underlying storage for the table, and is /// capable of serializing the string table into a format understood by /// DebugStringTableSubsectionRef. class DebugStringTableSubsection : public DebugSubsection { … }; } // end namespace codeview } // end namespace llvm #endif // LLVM_DEBUGINFO_CODEVIEW_DEBUGSTRINGTABLESUBSECTION_H