blob: e7871e3bd40113f483b5c32ccc6d275d19dc97c5 [file] [log] [blame]
Zachary Turner21473f72015-02-08 00:29:29 +00001//===- PDBSymbolExe.cpp - ---------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Zachary Turner52c9f882015-02-14 03:53:56 +000010#include "llvm/DebugInfo/PDB/PDBSymbolExe.h"
11
Zachary Turnera5549172015-02-10 22:43:25 +000012#include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
13#include "llvm/DebugInfo/PDB/PDBExtras.h"
Zachary Turner21473f72015-02-08 00:29:29 +000014#include "llvm/DebugInfo/PDB/PDBSymbol.h"
Zachary Turner21473f72015-02-08 00:29:29 +000015#include "llvm/Support/ConvertUTF.h"
16#include "llvm/Support/FileSystem.h"
17#include "llvm/Support/raw_ostream.h"
Chandler Carruth71f308a2015-02-13 09:09:03 +000018#include <utility>
Zachary Turner21473f72015-02-08 00:29:29 +000019
Zachary Turner52c9f882015-02-14 03:53:56 +000020#include <utility>
21
Zachary Turner21473f72015-02-08 00:29:29 +000022using namespace llvm;
23
Zachary Turner98571ed2015-02-08 22:53:53 +000024PDBSymbolExe::PDBSymbolExe(const IPDBSession &PDBSession,
Zachary Turnerbae16b32015-02-08 20:58:09 +000025 std::unique_ptr<IPDBRawSymbol> Symbol)
26 : PDBSymbol(PDBSession, std::move(Symbol)) {}
Zachary Turner21473f72015-02-08 00:29:29 +000027
Zachary Turnera5549172015-02-10 22:43:25 +000028void PDBSymbolExe::dump(raw_ostream &OS, int Indent,
29 PDB_DumpLevel Level) const {
30 std::string FileName(getSymbolsFileName());
31
Zachary Turnera952c492015-02-13 07:40:03 +000032 OS << stream_indent(Indent) << "Summary for " << FileName << "\n";
Zachary Turnera5549172015-02-10 22:43:25 +000033
Zachary Turnera5549172015-02-10 22:43:25 +000034 uint64_t FileSize = 0;
35 if (!llvm::sys::fs::file_size(FileName, FileSize))
Zachary Turnera952c492015-02-13 07:40:03 +000036 OS << stream_indent(Indent + 2) << "Size: " << FileSize << " bytes\n";
Zachary Turnera5549172015-02-10 22:43:25 +000037 else
Zachary Turnera952c492015-02-13 07:40:03 +000038 OS << stream_indent(Indent + 2) << "Size: (Unable to obtain file size)\n";
Zachary Turnera5549172015-02-10 22:43:25 +000039 PDB_UniqueId Guid = getGuid();
Zachary Turnera952c492015-02-13 07:40:03 +000040 OS << stream_indent(Indent + 2) << "Guid: " << Guid << "\n";
41 OS << stream_indent(Indent + 2) << "Age: " << getAge() << "\n";
42 OS << stream_indent(Indent + 2) << "Attributes: ";
Zachary Turnera5549172015-02-10 22:43:25 +000043 if (hasCTypes())
44 OS << "HasCTypes ";
45 if (hasPrivateSymbols())
46 OS << "HasPrivateSymbols ";
47 OS << "\n";
Zachary Turner2a5c0a22015-02-13 01:23:51 +000048
49 TagStats Stats;
50 auto ChildrenEnum = getChildStats(Stats);
51 OS << stream_indent(Indent + 2) << "Children: " << Stats << "\n";
52 while (auto Child = ChildrenEnum->getNext()) {
Zachary Turner04b966d2015-02-13 17:57:09 +000053 // Skip uninteresting types. These are useful to print as part of type
54 // hierarchies, but as general children of the global scope, they are
55 // not very interesting.
56 switch (Child->getSymTag()) {
57 case PDB_SymType::ArrayType:
58 case PDB_SymType::BaseClass:
59 case PDB_SymType::BuiltinType:
60 case PDB_SymType::CompilandEnv:
61 case PDB_SymType::CustomType:
62 case PDB_SymType::Dimension:
63 case PDB_SymType::Friend:
64 case PDB_SymType::ManagedType:
65 case PDB_SymType::VTableShape:
66 case PDB_SymType::PointerType:
67 case PDB_SymType::FunctionSig:
68 case PDB_SymType::FunctionArg:
69 continue;
70 default:
71 break;
72 }
Zachary Turnera952c492015-02-13 07:40:03 +000073 Child->dump(OS, Indent + 4, PDB_DumpLevel::Normal);
74 OS << "\n";
Zachary Turner2a5c0a22015-02-13 01:23:51 +000075 }
Zachary Turner21473f72015-02-08 00:29:29 +000076}