aboutsummaryrefslogtreecommitdiff
path: root/lib/DebugInfo/PDB/Raw/IndexedStreamData.cpp
blob: 9bd16ea76efc7dfc1f6ead500c8810f438c51e1b (plain) (blame)
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
//===- IndexedStreamData.cpp - Standard PDB Stream Data ---------*- 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/IndexedStreamData.h"
#include "llvm/DebugInfo/PDB/Raw/IPDBFile.h"

using namespace llvm;
using namespace llvm::pdb;

IndexedStreamData::IndexedStreamData(uint32_t StreamIdx, const IPDBFile &File)
    : StreamIdx(StreamIdx), File(File) {}

uint32_t IndexedStreamData::getLength() {
  return File.getStreamByteSize(StreamIdx);
}

ArrayRef<support::ulittle32_t> IndexedStreamData::getStreamBlocks() {
  return File.getStreamBlockList(StreamIdx);
}