1 //===- BytesOutputStyle.h ------------------------------------- *- C++ --*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_TOOLS_LLVMPDBDUMP_BYTESOUTPUTSTYLE_H
10 #define LLVM_TOOLS_LLVMPDBDUMP_BYTESOUTPUTSTYLE_H
12 #include "LinePrinter.h"
13 #include "OutputStyle.h"
14 #include "StreamUtil.h"
16 #include "llvm/Support/Error.h"
21 class LazyRandomTypeCollection
;
28 class BytesOutputStyle
: public OutputStyle
{
30 BytesOutputStyle(PDBFile
&File
);
32 Error
dump() override
;
36 void dumpBlockRanges(uint32_t Min
, uint32_t Max
);
37 void dumpByteRanges(uint32_t Min
, uint32_t Max
);
39 void dumpStreamBytes();
41 void dumpSectionContributions();
42 void dumpSectionMap();
43 void dumpModuleInfos();
45 void dumpTypeServerMap();
48 void dumpModuleSyms();
52 void dumpTypeIndex(uint32_t StreamIdx
, ArrayRef
<uint32_t> Indices
);
54 Expected
<codeview::LazyRandomTypeCollection
&>
55 initializeTypes(uint32_t StreamIdx
);
57 std::unique_ptr
<codeview::LazyRandomTypeCollection
> TpiTypes
;
58 std::unique_ptr
<codeview::LazyRandomTypeCollection
> IpiTypes
;
63 SmallVector
<StreamInfo
, 8> StreamPurposes
;