mirror of
https://github.com/RPCSX/llvm.git
synced 2026-01-31 01:05:23 +01:00
PDBs can be extremely large. We're already mapping the entire PDB into the process's address space, but to make matters worse the blocks of the PDB are not arranged contiguously. So, when we have something like an array or a string embedded into the stream, we have to make a copy. Since it's convenient to use traditional data structures to iterate and manipulate these records, we need the memory to be contiguous. As a result of this, we were using roughly twice as much memory as the file size of the PDB, because every stream was copied out and re-stitched together contiguously. This patch addresses this by improving the MappedBlockStream to allocate from a BumpPtrAllocator only when a read requires a discontiguous read. Furthermore, it introduces some data structures backed by a stream which can iterate over both fixed and variable length records of a PDB. Since everything is backed by a stream and not a buffer, we can read almost everything from the PDB with zero copies. Differential Revision: http://reviews.llvm.org/D20654 Reviewed By: ruiu git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@270951 91177308-0d34-0410-b5e6-96231b3b80d8
54 lines
1.4 KiB
C++
54 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_CODEVIEW_BYTESTREAM_H
|
|
#define LLVM_DEBUGINFO_CODEVIEW_BYTESTREAM_H
|
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/DebugInfo/CodeView/StreamInterface.h"
|
|
#include "llvm/Support/Error.h"
|
|
#include <cstdint>
|
|
#include <memory>
|
|
|
|
namespace llvm {
|
|
namespace codeview {
|
|
class StreamReader;
|
|
|
|
class ByteStream : public StreamInterface {
|
|
public:
|
|
ByteStream();
|
|
explicit ByteStream(MutableArrayRef<uint8_t> Data);
|
|
~ByteStream() override;
|
|
|
|
void reset();
|
|
|
|
void load(uint32_t Length);
|
|
Error load(StreamReader &Reader, uint32_t Length);
|
|
|
|
Error readBytes(uint32_t Offset,
|
|
MutableArrayRef<uint8_t> Buffer) const override;
|
|
Error readBytes(uint32_t Offset, uint32_t Size,
|
|
ArrayRef<uint8_t> &Buffer) 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;
|
|
};
|
|
|
|
} // end namespace pdb
|
|
} // end namespace llvm
|
|
|
|
#endif // LLVM_DEBUGINFO_CODEVIEW_BYTESTREAM_H
|