mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-04 09:11:43 +00:00

The DBI stream contains a lot of bookkeeping information for other streams. In particular it contains information about section contributions and linked modules. This patch is a first attempt at parsing some of the information out of the DBI stream. It currently only parses and dumps the headers of the DBI stream, so none of the module data or section contribution data is pulled out. This is just a proof of concept that we understand the basic properties of the DBI stream's metadata, and followup patches will try to extract more detailed information out. Differential Revision: http://reviews.llvm.org/D19500 Reviewed By: majnemer, ruiu git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@267585 91177308-0d34-0410-b5e6-96231b3b80d8
54 lines
1.4 KiB
C++
54 lines
1.4 KiB
C++
//===- PDBInfoStream.cpp - PDB Info Stream (Stream 1) Access ----*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/DebugInfo/PDB/Raw/PDBInfoStream.h"
|
|
#include "llvm/ADT/BitVector.h"
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
using namespace llvm;
|
|
|
|
PDBInfoStream::PDBInfoStream(PDBFile &File) : Pdb(File), Stream1(1, File) {}
|
|
|
|
std::error_code PDBInfoStream::reload() {
|
|
Stream1.setOffset(0);
|
|
support::ulittle32_t Value;
|
|
|
|
Stream1.readObject(&Version);
|
|
if (Version < PdbRaw_ImplVer::PdbImplVC70)
|
|
return std::make_error_code(std::errc::not_supported);
|
|
|
|
Stream1.readObject(&Value);
|
|
Signature = Value;
|
|
|
|
Stream1.readObject(&Value);
|
|
Age = Value;
|
|
|
|
Stream1.readObject(&Guid);
|
|
NamedStreams.load(Stream1);
|
|
|
|
return std::error_code();
|
|
}
|
|
|
|
uint32_t PDBInfoStream::getNamedStreamIndex(llvm::StringRef Name) const {
|
|
uint32_t Result;
|
|
if (!NamedStreams.tryGetValue(Name, Result))
|
|
return 0;
|
|
return Result;
|
|
}
|
|
|
|
PdbRaw_ImplVer PDBInfoStream::getVersion() const {
|
|
return static_cast<PdbRaw_ImplVer>(Version);
|
|
}
|
|
|
|
uint32_t PDBInfoStream::getSignature() const { return Signature; }
|
|
|
|
uint32_t PDBInfoStream::getAge() const { return Age; }
|
|
|
|
PDB_UniqueId PDBInfoStream::getGuid() const { return Guid; }
|