summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo/PDB/PDBSymbolCompiland.cpp
blob: f014b3959b0a3de63454ca38732c5dcbf5d725fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//===- PDBSymbolCompiland.cpp - compiland details --------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include "llvm/DebugInfo/PDB/PDBSymbolCompiland.h"

#include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
#include "llvm/DebugInfo/PDB/IPDBSession.h"
#include "llvm/DebugInfo/PDB/IPDBSourceFile.h"
#include "llvm/DebugInfo/PDB/PDBExtras.h"
#include "llvm/DebugInfo/PDB/PDBSymbol.h"
#include "llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h"
#include "llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h"
#include "llvm/Support/Path.h"
#include "llvm/Support/raw_ostream.h"

#include <utility>
#include <vector>

using namespace llvm;

PDBSymbolCompiland::PDBSymbolCompiland(const IPDBSession &PDBSession,
                                       std::unique_ptr<IPDBRawSymbol> Symbol)
    : PDBSymbol(PDBSession, std::move(Symbol)) {}

#define SKIP_SYMBOL_IF_FLAG_UNSET(Tag, Flag) \
  case PDB_SymType::Tag: \
    if ((Flags & Flag) == 0) \
      continue;   \
    break;

void PDBSymbolCompiland::dump(raw_ostream &OS, int Indent,
                              PDB_DumpLevel Level, PDB_DumpFlags Flags) const {
  if (Level == PDB_DumpLevel::Detailed) {
    std::string FullName = getName();
    OS << stream_indent(Indent) << FullName;
    if (Flags & PDB_DF_Children) {
      if (Level >= PDB_DumpLevel::Detailed) {
        auto ChildrenEnum = findAllChildren();
        while (auto Child = ChildrenEnum->getNext()) {
          switch (Child->getSymTag()) {
            SKIP_SYMBOL_IF_FLAG_UNSET(Function, PDB_DF_Functions)
            SKIP_SYMBOL_IF_FLAG_UNSET(Data, PDB_DF_Data)
            SKIP_SYMBOL_IF_FLAG_UNSET(Label, PDB_DF_Labels)
            SKIP_SYMBOL_IF_FLAG_UNSET(PublicSymbol, PDB_DF_PublicSyms)
            SKIP_SYMBOL_IF_FLAG_UNSET(UDT, PDB_DF_Classes)
            SKIP_SYMBOL_IF_FLAG_UNSET(Enum, PDB_DF_Enums)
            SKIP_SYMBOL_IF_FLAG_UNSET(FunctionSig, PDB_DF_Funcsigs)
            SKIP_SYMBOL_IF_FLAG_UNSET(VTable, PDB_DF_VTables)
            SKIP_SYMBOL_IF_FLAG_UNSET(Thunk, PDB_DF_Thunks)
            SKIP_SYMBOL_IF_FLAG_UNSET(Compiland, PDB_DF_ObjFiles)
            default:
              continue;
          }
          PDB_DumpLevel ChildLevel = (Level == PDB_DumpLevel::Detailed)
                                         ? PDB_DumpLevel::Normal
                                         : PDB_DumpLevel::Compact;
          OS << "\n";
          Child->dump(OS, Indent + 2, ChildLevel, PDB_DF_Children);
        }
      }
    }
  } else {
    std::string FullName = getName();
    OS << stream_indent(Indent) << "Compiland: " << FullName;
  }
}
OpenPOWER on IntegriCloud