mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-02 07:41:38 +00:00

This eliminates one overload on the term Raw. Differential Revision: https://reviews.llvm.org/D29098 llvm-svn: 293104
75 lines
2.1 KiB
C++
75 lines
2.1 KiB
C++
//===- PublicsStream.h - PDB Public Symbol Stream -------- ------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_DEBUGINFO_PDB_RAW_PUBLICSSTREAM_H
|
|
#define LLVM_DEBUGINFO_PDB_RAW_PUBLICSSTREAM_H
|
|
|
|
#include "llvm/DebugInfo/CodeView/SymbolRecord.h"
|
|
#include "llvm/DebugInfo/MSF/MappedBlockStream.h"
|
|
#include "llvm/DebugInfo/MSF/StreamArray.h"
|
|
#include "llvm/DebugInfo/PDB/Native/RawConstants.h"
|
|
#include "llvm/DebugInfo/PDB/Native/RawTypes.h"
|
|
#include "llvm/DebugInfo/PDB/PDBTypes.h"
|
|
|
|
#include "llvm/Support/Error.h"
|
|
|
|
namespace llvm {
|
|
namespace pdb {
|
|
class DbiStream;
|
|
struct GSIHashHeader;
|
|
class PDBFile;
|
|
|
|
class PublicsStream {
|
|
struct HeaderInfo;
|
|
|
|
public:
|
|
PublicsStream(PDBFile &File, std::unique_ptr<msf::MappedBlockStream> Stream);
|
|
~PublicsStream();
|
|
Error reload();
|
|
|
|
uint32_t getSymHash() const;
|
|
uint32_t getAddrMap() const;
|
|
uint32_t getNumBuckets() const { return NumBuckets; }
|
|
iterator_range<codeview::CVSymbolArray::Iterator>
|
|
getSymbols(bool *HadError) const;
|
|
msf::FixedStreamArray<support::ulittle32_t> getHashBuckets() const {
|
|
return HashBuckets;
|
|
}
|
|
msf::FixedStreamArray<support::ulittle32_t> getAddressMap() const {
|
|
return AddressMap;
|
|
}
|
|
msf::FixedStreamArray<support::ulittle32_t> getThunkMap() const {
|
|
return ThunkMap;
|
|
}
|
|
msf::FixedStreamArray<SectionOffset> getSectionOffsets() const {
|
|
return SectionOffsets;
|
|
}
|
|
|
|
Error commit();
|
|
|
|
private:
|
|
PDBFile &Pdb;
|
|
|
|
std::unique_ptr<msf::MappedBlockStream> Stream;
|
|
uint32_t NumBuckets = 0;
|
|
ArrayRef<uint8_t> Bitmap;
|
|
msf::FixedStreamArray<PSHashRecord> HashRecords;
|
|
msf::FixedStreamArray<support::ulittle32_t> HashBuckets;
|
|
msf::FixedStreamArray<support::ulittle32_t> AddressMap;
|
|
msf::FixedStreamArray<support::ulittle32_t> ThunkMap;
|
|
msf::FixedStreamArray<SectionOffset> SectionOffsets;
|
|
|
|
const HeaderInfo *Header;
|
|
const GSIHashHeader *HashHdr;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|