Fix test failures introduced by PR #113697 (#116941)
[llvm-project.git] / llvm / tools / llvm-pdbutil / ExplainOutputStyle.h
blob84b4a7e3d936dcf8f91862075c08731f53a29654
1 //===- ExplainOutputStyle.h ----------------------------------- *- C++ --*-===//
2 //
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
6 //
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"
16 namespace llvm {
18 namespace pdb {
20 class DbiStream;
21 class InfoStream;
22 class InputFile;
24 class ExplainOutputStyle : public OutputStyle {
26 public:
27 ExplainOutputStyle(InputFile &File, uint64_t FileOffset);
29 Error dump() override;
31 private:
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;
59 InputFile &File;
60 const uint64_t FileOffset;
61 LinePrinter P;
63 } // namespace pdb
64 } // namespace llvm
66 #endif