2016-06-04 03:28:33 +08:00
|
|
|
//===- LLVMOutputStyle.h -------------------------------------- *- C++ --*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TOOLS_LLVMPDBDUMP_LLVMOUTPUTSTYLE_H
|
|
|
|
#define LLVM_TOOLS_LLVMPDBDUMP_LLVMOUTPUTSTYLE_H
|
|
|
|
|
|
|
|
#include "OutputStyle.h"
|
|
|
|
|
2017-05-05 07:53:01 +08:00
|
|
|
#include "llvm/ADT/Optional.h"
|
2017-03-14 07:28:25 +08:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
[CodeView] Finish decoupling TypeDatabase from TypeDumper.
Previously the type dumper itself was passed around to a lot of different
places and manipulated in ways that were more appropriate on the type
database. For example, the entire TypeDumper was passed into the symbol
dumper, when all the symbol dumper wanted to do was lookup the name of a
TypeIndex so it could print it. That's what the TypeDatabase is for --
mapping type indices to names.
Another example is how if the user runs llvm-pdbdump with the option to
dump symbols but not types, we still have to visit all types so that we
can print minimal information about the type of a symbol, but just without
dumping full symbol records. The way we did this before is by hacking it
up so that we run everything through the type dumper with a null printer,
so that the output goes to /dev/null. But really, we don't need to dump
anything, all we want to do is build the type database. Since
TypeDatabaseVisitor now exists independently of TypeDumper, we can do
this. We just build a custom visitor callback pipeline that includes a
database visitor but not a dumper.
All the hackery around printers etc goes away. After this patch, we could
probably even delete the entire CVTypeDumper class since really all it is
at this point is a thin wrapper that hides the details of how to build a
useful visitation pipeline. It's not a priority though, so CVTypeDumper
remains for now.
After this patch we will be able to easily plug in a different style of
type dumper by only implementing the proper visitation methods to dump
one-line output and then sticking it on the pipeline.
Differential Revision: https://reviews.llvm.org/D28524
llvm-svn: 291724
2017-01-12 07:24:22 +08:00
|
|
|
#include "llvm/DebugInfo/CodeView/TypeDatabase.h"
|
2016-06-04 03:28:33 +08:00
|
|
|
#include "llvm/Support/ScopedPrinter.h"
|
|
|
|
|
2017-03-14 07:28:25 +08:00
|
|
|
#include <string>
|
|
|
|
|
2016-06-04 03:28:33 +08:00
|
|
|
namespace llvm {
|
2016-08-02 05:19:45 +08:00
|
|
|
class BitVector;
|
[CodeView] Provide a common interface for type collections.
Right now we have multiple notions of things that represent collections of
types. Most commonly used are TypeDatabase, which is supposed to keep
mappings from TypeIndex to type name when reading a type stream, which
happens when reading PDBs. And also TypeTableBuilder, which is used to
build up a collection of types dynamically which we will later serialize
(i.e. when writing PDBs).
But often you just want to do some operation on a collection of types, and
you may want to do the same operation on any kind of collection. For
example, you might want to merge two TypeTableBuilders or you might want
to merge two type streams that you loaded from various files.
This dichotomy between reading and writing is responsible for a lot of the
existing code duplication and overlapping responsibilities in the existing
CodeView library classes. For example, after building up a
TypeTableBuilder with a bunch of type records, if we want to dump it we
have to re-invent a bunch of extra glue because our dumper takes a
TypeDatabase or a CVTypeArray, which are both incompatible with
TypeTableBuilder.
This patch introduces an abstract base class called TypeCollection which
is shared between the various type collection like things. Wherever we
previously stored a TypeDatabase& in some common class, we now store a
TypeCollection&.
The advantage of this is that all the details of how the collection are
implemented, such as lazy deserialization of partial type streams, is
completely transparent and you can just treat any collection of types the
same regardless of where it came from.
Differential Revision: https://reviews.llvm.org/D33293
llvm-svn: 303388
2017-05-19 07:03:06 +08:00
|
|
|
|
|
|
|
namespace codeview {
|
|
|
|
class LazyRandomTypeCollection;
|
|
|
|
}
|
|
|
|
|
2016-06-04 03:28:33 +08:00
|
|
|
namespace pdb {
|
|
|
|
class LLVMOutputStyle : public OutputStyle {
|
|
|
|
public:
|
|
|
|
LLVMOutputStyle(PDBFile &File);
|
|
|
|
|
2016-07-01 01:42:48 +08:00
|
|
|
Error dump() override;
|
2016-06-07 04:37:05 +08:00
|
|
|
|
2016-06-04 03:28:33 +08:00
|
|
|
private:
|
[CodeView] Provide a common interface for type collections.
Right now we have multiple notions of things that represent collections of
types. Most commonly used are TypeDatabase, which is supposed to keep
mappings from TypeIndex to type name when reading a type stream, which
happens when reading PDBs. And also TypeTableBuilder, which is used to
build up a collection of types dynamically which we will later serialize
(i.e. when writing PDBs).
But often you just want to do some operation on a collection of types, and
you may want to do the same operation on any kind of collection. For
example, you might want to merge two TypeTableBuilders or you might want
to merge two type streams that you loaded from various files.
This dichotomy between reading and writing is responsible for a lot of the
existing code duplication and overlapping responsibilities in the existing
CodeView library classes. For example, after building up a
TypeTableBuilder with a bunch of type records, if we want to dump it we
have to re-invent a bunch of extra glue because our dumper takes a
TypeDatabase or a CVTypeArray, which are both incompatible with
TypeTableBuilder.
This patch introduces an abstract base class called TypeCollection which
is shared between the various type collection like things. Wherever we
previously stored a TypeDatabase& in some common class, we now store a
TypeCollection&.
The advantage of this is that all the details of how the collection are
implemented, such as lazy deserialization of partial type streams, is
completely transparent and you can just treat any collection of types the
same regardless of where it came from.
Differential Revision: https://reviews.llvm.org/D33293
llvm-svn: 303388
2017-05-19 07:03:06 +08:00
|
|
|
Expected<codeview::LazyRandomTypeCollection &>
|
|
|
|
initializeTypeDatabase(uint32_t SN);
|
2017-05-05 07:53:01 +08:00
|
|
|
|
2016-07-01 01:42:48 +08:00
|
|
|
Error dumpFileHeaders();
|
|
|
|
Error dumpStreamSummary();
|
2016-07-30 05:38:00 +08:00
|
|
|
Error dumpFreePageMap();
|
2016-09-10 02:17:52 +08:00
|
|
|
Error dumpBlockRanges();
|
2016-10-22 03:43:19 +08:00
|
|
|
Error dumpGlobalsStream();
|
2016-09-10 02:17:52 +08:00
|
|
|
Error dumpStreamBytes();
|
2016-07-01 01:42:48 +08:00
|
|
|
Error dumpStreamBlocks();
|
2017-01-21 06:42:09 +08:00
|
|
|
Error dumpStringTable();
|
2016-07-01 01:42:48 +08:00
|
|
|
Error dumpInfoStream();
|
|
|
|
Error dumpTpiStream(uint32_t StreamIdx);
|
|
|
|
Error dumpDbiStream();
|
|
|
|
Error dumpSectionContribs();
|
|
|
|
Error dumpSectionMap();
|
|
|
|
Error dumpPublicsStream();
|
|
|
|
Error dumpSectionHeaders();
|
|
|
|
Error dumpFpoStream();
|
|
|
|
|
2016-08-02 05:19:45 +08:00
|
|
|
void dumpBitVector(StringRef Name, const BitVector &V);
|
|
|
|
|
2016-07-01 01:42:48 +08:00
|
|
|
void flush();
|
|
|
|
|
2016-06-04 03:28:33 +08:00
|
|
|
PDBFile &File;
|
|
|
|
ScopedPrinter P;
|
[CodeView] Provide a common interface for type collections.
Right now we have multiple notions of things that represent collections of
types. Most commonly used are TypeDatabase, which is supposed to keep
mappings from TypeIndex to type name when reading a type stream, which
happens when reading PDBs. And also TypeTableBuilder, which is used to
build up a collection of types dynamically which we will later serialize
(i.e. when writing PDBs).
But often you just want to do some operation on a collection of types, and
you may want to do the same operation on any kind of collection. For
example, you might want to merge two TypeTableBuilders or you might want
to merge two type streams that you loaded from various files.
This dichotomy between reading and writing is responsible for a lot of the
existing code duplication and overlapping responsibilities in the existing
CodeView library classes. For example, after building up a
TypeTableBuilder with a bunch of type records, if we want to dump it we
have to re-invent a bunch of extra glue because our dumper takes a
TypeDatabase or a CVTypeArray, which are both incompatible with
TypeTableBuilder.
This patch introduces an abstract base class called TypeCollection which
is shared between the various type collection like things. Wherever we
previously stored a TypeDatabase& in some common class, we now store a
TypeCollection&.
The advantage of this is that all the details of how the collection are
implemented, such as lazy deserialization of partial type streams, is
completely transparent and you can just treat any collection of types the
same regardless of where it came from.
Differential Revision: https://reviews.llvm.org/D33293
llvm-svn: 303388
2017-05-19 07:03:06 +08:00
|
|
|
std::unique_ptr<codeview::LazyRandomTypeCollection> TpiTypes;
|
|
|
|
std::unique_ptr<codeview::LazyRandomTypeCollection> IpiTypes;
|
2017-03-14 07:28:25 +08:00
|
|
|
SmallVector<std::string, 32> StreamPurposes;
|
2016-06-04 03:28:33 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|