1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00
llvm-mirror/include/llvm/DebugInfo/PDB/Raw/ByteStream.h
Zachary Turner b23897c0be [pdb] Parse the module info stream for each module.
Differential Revision: http://reviews.llvm.org/D20026
Reviewed By: rnk

llvm-svn: 268942
2016-05-09 17:45:21 +00:00

55 lines
1.4 KiB
C++

//===- ByteStream.h - Reads stream data from a byte sequence ----*- 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_BYTESTREAM_H
#define LLVM_DEBUGINFO_PDB_RAW_BYTESTREAM_H
#include "llvm/ADT/ArrayRef.h"
#include "llvm/DebugInfo/PDB/Raw/StreamInterface.h"
#include <stdint.h>
#include <system_error>
#include <vector>
namespace llvm {
namespace pdb {
class StreamReader;
class ByteStream : public StreamInterface {
public:
ByteStream();
explicit ByteStream(MutableArrayRef<uint8_t> Bytes);
explicit ByteStream(uint32_t Length);
~ByteStream() override;
void reset();
void initialize(MutableArrayRef<uint8_t> Bytes);
void initialize(uint32_t Length);
Error initialize(StreamReader &Reader, uint32_t Length);
Error readBytes(uint32_t Offset,
MutableArrayRef<uint8_t> Buffer) const override;
Error getArrayRef(uint32_t Offset, ArrayRef<uint8_t> &Buffer,
uint32_t Length) const override;
uint32_t getLength() const override;
ArrayRef<uint8_t> data() const { return Data; }
StringRef str() const;
private:
MutableArrayRef<uint8_t> Data;
std::unique_ptr<uint8_t[]> Ownership;
};
}
}
#endif