summaryrefslogtreecommitdiff
path: root/lib/DebugInfo/PDB/Raw/SymbolStream.cpp
blob: 6249524eddde5aa84c816d2c25e2315529b65d14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//===- 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);
}