//===- StringTable.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_GSYM_STRINGTABLE_H #define LLVM_DEBUGINFO_GSYM_STRINGTABLE_H #include "llvm/ADT/StringRef.h" #include "llvm/DebugInfo/GSYM/ExtractRanges.h" #include <stdint.h> namespace llvm { namespace gsym { /// String tables in GSYM files are required to start with an empty /// string at offset zero. Strings must be UTF8 NULL terminated strings. struct StringTable { … }; inline raw_ostream &operator<<(raw_ostream &OS, const StringTable &S) { … } } // namespace gsym } // namespace llvm #endif // LLVM_DEBUGINFO_GSYM_STRINGTABLE_H