//===- PublicsStream.cpp - PDB Public Symbol Stream -----------------------===// // // 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 // //===----------------------------------------------------------------------===// // // The data structures defined in this file are based on the reference // implementation which is available at // https://github.com/Microsoft/microsoft-pdb/blob/master/PDB/dbi/gsi.h // // When you are reading the reference source code, you'd find the // information below useful. // // - ppdb1->m_fMinimalDbgInfo seems to be always true. // - SMALLBUCKETS macro is defined. // // The reference doesn't compile, so I learned just by reading code. // It's not guaranteed to be correct. // //===----------------------------------------------------------------------===// #include "llvm/DebugInfo/PDB/Native/PublicsStream.h" #include "llvm/DebugInfo/MSF/MappedBlockStream.h" #include "llvm/DebugInfo/PDB/Native/RawError.h" #include "llvm/DebugInfo/PDB/Native/RawTypes.h" #include "llvm/Support/BinaryStreamReader.h" #include "llvm/Support/Error.h" #include <cstdint> usingnamespacellvm; usingnamespacellvm::msf; usingnamespacellvm::support; usingnamespacellvm::pdb; PublicsStream::PublicsStream(std::unique_ptr<MappedBlockStream> Stream) : … { … } PublicsStream::~PublicsStream() = default; uint32_t PublicsStream::getSymHash() const { … } uint16_t PublicsStream::getThunkTableSection() const { … } uint32_t PublicsStream::getThunkTableOffset() const { … } // Publics stream contains fixed-size headers and a serialized hash table. // This implementation is not complete yet. It reads till the end of the // stream so that we verify the stream is at least not corrupted. However, // we skip over the hash table which we believe contains information about // public symbols. Error PublicsStream::reload() { … }