1 //===- ExplainOutputStyle.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_EXPLAINOUTPUTSTYLE_H
10 #define LLVM_TOOLS_LLVMPDBDUMP_EXPLAINOUTPUTSTYLE_H
12 #include "OutputStyle.h"
14 #include "llvm/DebugInfo/PDB/Native/LinePrinter.h"
24 class ExplainOutputStyle
: public OutputStyle
{
27 ExplainOutputStyle(InputFile
&File
, uint64_t FileOffset
);
29 Error
dump() override
;
32 Error
explainPdbFile();
33 Error
explainBinaryFile();
35 bool explainPdbBlockStatus();
37 bool isPdbFpm1() const;
38 bool isPdbFpm2() const;
40 bool isPdbSuperBlock() const;
41 bool isPdbFpmBlock() const;
42 bool isPdbBlockMapBlock() const;
43 bool isPdbStreamDirectoryBlock() const;
44 std::optional
<uint32_t> getPdbBlockStreamIndex() const;
46 void explainPdbSuperBlockOffset();
47 void explainPdbFpmBlockOffset();
48 void explainPdbBlockMapOffset();
49 void explainPdbStreamDirectoryOffset();
50 void explainPdbStreamOffset(uint32_t Stream
);
51 void explainPdbUnknownBlock();
53 void explainStreamOffset(DbiStream
&Stream
, uint32_t OffsetInStream
);
54 void explainStreamOffset(InfoStream
&Stream
, uint32_t OffsetInStream
);
56 uint32_t pdbBlockIndex() const;
57 uint32_t pdbBlockOffset() const;
60 const uint64_t FileOffset
;