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
76 lines
2.0 KiB
C++
76 lines
2.0 KiB
C++
//===- TpiStream.cpp - PDB Type Info (TPI) Stream 2 Access ------*- 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_PDBTPISTREAM_H
|
|
#define LLVM_DEBUGINFO_PDB_RAW_PDBTPISTREAM_H
|
|
|
|
#include "llvm/DebugInfo/CodeView/TypeRecord.h"
|
|
#include "llvm/DebugInfo/MSF/StreamArray.h"
|
|
#include "llvm/DebugInfo/PDB/Native/HashTable.h"
|
|
#include "llvm/DebugInfo/PDB/Native/RawConstants.h"
|
|
#include "llvm/DebugInfo/PDB/Native/RawTypes.h"
|
|
#include "llvm/DebugInfo/PDB/PDBTypes.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
#include "llvm/Support/Error.h"
|
|
|
|
namespace llvm {
|
|
namespace msf {
|
|
class MappedBlockStream;
|
|
}
|
|
namespace pdb {
|
|
class PDBFile;
|
|
|
|
class TpiStream {
|
|
friend class TpiStreamBuilder;
|
|
|
|
public:
|
|
TpiStream(const PDBFile &File,
|
|
std::unique_ptr<msf::MappedBlockStream> Stream);
|
|
~TpiStream();
|
|
Error reload();
|
|
|
|
PdbRaw_TpiVer getTpiVersion() const;
|
|
|
|
uint32_t TypeIndexBegin() const;
|
|
uint32_t TypeIndexEnd() const;
|
|
uint32_t NumTypeRecords() const;
|
|
uint16_t getTypeHashStreamIndex() const;
|
|
uint16_t getTypeHashStreamAuxIndex() const;
|
|
|
|
uint32_t getHashKeySize() const;
|
|
uint32_t NumHashBuckets() const;
|
|
msf::FixedStreamArray<support::ulittle32_t> getHashValues() const;
|
|
msf::FixedStreamArray<TypeIndexOffset> getTypeIndexOffsets() const;
|
|
HashTable &getHashAdjusters();
|
|
|
|
iterator_range<codeview::CVTypeArray::Iterator> types(bool *HadError) const;
|
|
|
|
Error commit();
|
|
|
|
private:
|
|
Error verifyHashValues();
|
|
|
|
const PDBFile &Pdb;
|
|
std::unique_ptr<msf::MappedBlockStream> Stream;
|
|
|
|
codeview::CVTypeArray TypeRecords;
|
|
|
|
std::unique_ptr<msf::ReadableStream> HashStream;
|
|
msf::FixedStreamArray<support::ulittle32_t> HashValues;
|
|
msf::FixedStreamArray<TypeIndexOffset> TypeIndexOffsets;
|
|
HashTable HashAdjusters;
|
|
|
|
const TpiStreamHeader *Header;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|