summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.cpp
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2017-04-10 19:33:29 +0000
committerZachary Turner <zturner@google.com>2017-04-10 19:33:29 +0000
commit0c990bbe09ff6c76be00be25bc6f08f302c97c12 (patch)
treeff3bf867e43130b788d90458a743294538d4601a /llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.cpp
parentf7ce1662202717f774d1697948790f85bf6d8495 (diff)
downloadbcm5719-llvm-0c990bbe09ff6c76be00be25bc6f08f302c97c12.tar.gz
bcm5719-llvm-0c990bbe09ff6c76be00be25bc6f08f302c97c12.zip
[llvm-pdbdump] Display padding bytes on record layout
When dumping classes, show where padding occurs, and at the end of the class print statistics about how many bytes total of padding exist in a class. Since PDB doesn't specifically contain information about padding, we have to mimic this by sort of reversing a small portion of the record layout algorithm (e.g. looking at offsets and sizes and trying to determine whether something is part of the same field or a new field). Differential Revision: https://reviews.llvm.org/D31800 llvm-svn: 299869
Diffstat (limited to 'llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.cpp')
-rw-r--r--llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.cpp98
1 files changed, 81 insertions, 17 deletions
diff --git a/llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.cpp b/llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.cpp
index 07e1662c47b..b48ed23c1c7 100644
--- a/llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.cpp
+++ b/llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.cpp
@@ -16,6 +16,8 @@
#include "PrettyVariableDumper.h"
#include "llvm-pdbdump.h"
+#include "llvm/ADT/APFloat.h"
+#include "llvm/ADT/SmallString.h"
#include "llvm/DebugInfo/PDB/IPDBSession.h"
#include "llvm/DebugInfo/PDB/PDBExtras.h"
#include "llvm/DebugInfo/PDB/PDBSymbolData.h"
@@ -26,6 +28,7 @@
#include "llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h"
#include "llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h"
+#include "llvm/Support/Compiler.h"
#include "llvm/Support/Format.h"
using namespace llvm;
@@ -34,11 +37,56 @@ using namespace llvm::pdb;
ClassDefinitionDumper::ClassDefinitionDumper(LinePrinter &P)
: PDBSymDumper(true), Printer(P) {}
+static void analyzePadding(const PDBSymbolTypeUDT &Class, BitVector &Padding,
+ uint32_t &FirstFieldOffset) {
+ Padding.resize(Class.getLength(), true);
+ auto Children = Class.findAllChildren<PDBSymbolData>();
+ bool IsFirst = true;
+ FirstFieldOffset = Class.getLength();
+
+ while (auto Data = Children->getNext()) {
+ // Ignore data members which are not relative to this. Usually these are
+ // static data members or constexpr and occupy no space. We also need to
+ // handle BitFields since the PDB doesn't consider them ThisRel, but they
+ // still occupy space in the record layout.
+ auto LocType = Data->getLocationType();
+ if (LocType != PDB_LocType::ThisRel && LocType != PDB_LocType::BitField)
+ continue;
+
+ uint64_t Start = Data->getOffset();
+ if (IsFirst) {
+ FirstFieldOffset = Start;
+ IsFirst = false;
+ }
+
+ auto VarType = Data->getType();
+ uint64_t Size = VarType->getRawSymbol().getLength();
+ Padding.reset(Start, Start + Size);
+ }
+
+ // Unmark anything that comes before the first field so it doesn't get
+ // counted as padding. In reality this is going to be vptrs or base class
+ // members, but we don't correctly handle that yet.
+ // FIXME: Handle it.
+ Padding.reset(0, FirstFieldOffset);
+}
+
void ClassDefinitionDumper::start(const PDBSymbolTypeUDT &Class) {
assert(opts::pretty::ClassFormat !=
opts::pretty::ClassDefinitionFormat::None);
- std::string Name = Class.getName();
+ uint32_t Size = Class.getLength();
+ uint32_t FirstFieldOffset = 0;
+ BitVector Padding;
+ analyzePadding(Class, Padding, FirstFieldOffset);
+
+ if (opts::pretty::OnlyPaddingClasses && (Padding.count() == 0))
+ return;
+
+ Printer.NewLine();
+ WithColor(Printer, PDB_ColorItem::Comment).get() << "// sizeof = " << Size;
+ Printer.NewLine();
+
WithColor(Printer, PDB_ColorItem::Keyword).get() << Class.getUdtKind() << " ";
WithColor(Printer, PDB_ColorItem::Type).get() << Class.getName();
@@ -66,24 +114,23 @@ void ClassDefinitionDumper::start(const PDBSymbolTypeUDT &Class) {
auto Children = Class.findAllChildren();
Printer.Indent();
int DumpedCount = 0;
- while (auto Child = Children->getNext()) {
- if (opts::pretty::ClassFormat ==
- opts::pretty::ClassDefinitionFormat::LayoutOnly) {
- if (auto Data = Child->cast<PDBSymbolData>()) {
- switch (Data->getLocationType()) {
- case PDB_LocType::ThisRel:
- case PDB_LocType::BitField:
- break;
- default:
- // All other types of data field do not occupy any storage (e.g. are
- // const), so in layout mode we skip them.
- continue;
+ int NextPaddingByte = Padding.find_first();
+ while (auto Child = Children->getNext()) {
+ if (auto Data = llvm::dyn_cast<PDBSymbolData>(Child.get())) {
+ if (Data->getDataKind() == PDB_DataKind::Member && NextPaddingByte >= 0) {
+ // If there are padding bytes remaining, see if this field is the first
+ // to cross a padding boundary, and print a padding field indicator if
+ // so.
+ int Off = Data->getOffset();
+ if (Off > NextPaddingByte) {
+ uint32_t Amount = Off - NextPaddingByte;
+ Printer.NewLine();
+ WithColor(Printer, PDB_ColorItem::Padding).get()
+ << "<padding> (" << Amount << " bytes)";
+ assert(Padding.find_next_unset(NextPaddingByte) == Off);
+ NextPaddingByte = Padding.find_next(Off);
}
- } else {
- // Only data symbols affect record layout, so skip any non-data symbols
- // if we're in record layout mode.
- continue;
}
}
@@ -100,10 +147,27 @@ void ClassDefinitionDumper::start(const PDBSymbolTypeUDT &Class) {
Child->dump(*this);
}
+ if (NextPaddingByte >= 0) {
+ uint32_t Amount = Size - NextPaddingByte;
+ Printer.NewLine();
+ WithColor(Printer, PDB_ColorItem::Padding).get() << "<padding> (" << Amount
+ << " bytes)";
+ }
Printer.Unindent();
if (DumpedCount > 0)
Printer.NewLine();
Printer << "}";
+ Printer.NewLine();
+ if (Padding.count() > 0) {
+ APFloat Pct(100.0 * (double)Padding.count() /
+ (double)(Size - FirstFieldOffset));
+ SmallString<8> PctStr;
+ Pct.toString(PctStr, 4);
+ WithColor(Printer, PDB_ColorItem::Padding).get()
+ << "Total padding " << Padding.count() << " bytes (" << PctStr
+ << "% of class size)";
+ Printer.NewLine();
+ }
}
void ClassDefinitionDumper::dump(const PDBSymbolTypeBaseClass &Symbol) {}
OpenPOWER on IntegriCloud