mirror of
https://github.com/RPCSX/llvm.git
synced 2026-01-31 01:05:23 +01:00
Differential Revision: http://reviews.llvm.org/D20580 Reviewed By: ruiu git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@270597 91177308-0d34-0410-b5e6-96231b3b80d8
51 lines
1.6 KiB
C++
51 lines
1.6 KiB
C++
//===- SymbolStream.cpp - PDB Symbol Stream Access ------------------------===//
|
|
//
|
|
// 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/SymbolStream.h"
|
|
|
|
#include "llvm/DebugInfo/CodeView/CodeView.h"
|
|
#include "llvm/DebugInfo/CodeView/TypeRecord.h"
|
|
#include "llvm/DebugInfo/PDB/Raw/ByteStream.h"
|
|
#include "llvm/DebugInfo/PDB/Raw/MappedBlockStream.h"
|
|
#include "llvm/DebugInfo/PDB/Raw/RawConstants.h"
|
|
#include "llvm/DebugInfo/PDB/Raw/RawError.h"
|
|
#include "llvm/DebugInfo/PDB/Raw/StreamReader.h"
|
|
|
|
#include "llvm/Support/Endian.h"
|
|
|
|
using namespace llvm;
|
|
using namespace llvm::support;
|
|
using namespace llvm::pdb;
|
|
|
|
SymbolStream::SymbolStream(PDBFile &File, uint32_t StreamNum)
|
|
: MappedStream(StreamNum, File) {}
|
|
|
|
SymbolStream::~SymbolStream() {}
|
|
|
|
Error SymbolStream::reload() {
|
|
StreamReader Reader(MappedStream);
|
|
|
|
if (Stream.initialize(Reader, MappedStream.getLength()))
|
|
return make_error<RawError>(raw_error_code::corrupt_file,
|
|
"Could not load symbol stream.");
|
|
|
|
return Error::success();
|
|
}
|
|
|
|
iterator_range<codeview::SymbolIterator> SymbolStream::getSymbols() const {
|
|
using codeview::SymbolIterator;
|
|
ArrayRef<uint8_t> Data;
|
|
if (auto Error = Stream.getArrayRef(0, Data, Stream.getLength())) {
|
|
consumeError(std::move(Error));
|
|
return iterator_range<SymbolIterator>(SymbolIterator(), SymbolIterator());
|
|
}
|
|
|
|
return codeview::makeSymbolRange(Data, nullptr);
|
|
}
|