2016-06-06 22:37:05 +02:00
|
|
|
//===- YAMLOutputStyle.h -------------------------------------- *- C++ --*-===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2016-06-06 22:37:05 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TOOLS_LLVMPDBDUMP_YAMLOUTPUTSTYLE_H
|
|
|
|
#define LLVM_TOOLS_LLVMPDBDUMP_YAMLOUTPUTSTYLE_H
|
|
|
|
|
|
|
|
#include "OutputStyle.h"
|
|
|
|
#include "PdbYaml.h"
|
|
|
|
|
|
|
|
#include "llvm/Support/ScopedPrinter.h"
|
|
|
|
#include "llvm/Support/YAMLTraits.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace pdb {
|
2017-05-01 18:46:39 +02:00
|
|
|
class ModuleDebugStreamRef;
|
2017-04-25 22:22:02 +02:00
|
|
|
|
2016-06-06 22:37:05 +02:00
|
|
|
class YAMLOutputStyle : public OutputStyle {
|
|
|
|
public:
|
|
|
|
YAMLOutputStyle(PDBFile &File);
|
|
|
|
|
2016-06-30 19:42:48 +02:00
|
|
|
Error dump() override;
|
2016-06-06 22:37:05 +02:00
|
|
|
|
|
|
|
private:
|
2017-01-20 23:42:09 +01:00
|
|
|
Error dumpStringTable();
|
2016-06-30 19:42:48 +02:00
|
|
|
Error dumpFileHeaders();
|
|
|
|
Error dumpStreamMetadata();
|
|
|
|
Error dumpStreamDirectory();
|
2016-07-06 20:05:57 +02:00
|
|
|
Error dumpPDBStream();
|
2016-07-11 23:45:26 +02:00
|
|
|
Error dumpDbiStream();
|
2016-08-18 18:49:29 +02:00
|
|
|
Error dumpTpiStream();
|
2016-09-15 20:22:31 +02:00
|
|
|
Error dumpIpiStream();
|
2018-10-26 02:17:31 +02:00
|
|
|
Error dumpPublics();
|
2016-06-30 19:42:48 +02:00
|
|
|
|
|
|
|
void flush();
|
|
|
|
|
2016-06-06 22:37:05 +02:00
|
|
|
PDBFile &File;
|
|
|
|
llvm::yaml::Output Out;
|
|
|
|
|
|
|
|
yaml::PdbObject Obj;
|
|
|
|
};
|
|
|
|
} // namespace pdb
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif // LLVM_TOOLS_LLVMPDBDUMP_YAMLOUTPUTSTYLE_H
|