[llvm-pdbdump] Rewrite dumper using visitor pattern.
[oota-llvm.git] / lib / DebugInfo / PDB / PDBSymbolFunc.cpp
1 //===- PDBSymbolFunc.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
10 #include "llvm/DebugInfo/PDB/PDBSymbolFunc.h"
11
12 #include "llvm/DebugInfo/PDB/IPDBSession.h"
13 #include "llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h"
14 #include "llvm/DebugInfo/PDB/PDBSymDumper.h"
15
16 #include <utility>
17
18 using namespace llvm;
19 PDBSymbolFunc::PDBSymbolFunc(const IPDBSession &PDBSession,
20                              std::unique_ptr<IPDBRawSymbol> Symbol)
21     : PDBSymbol(PDBSession, std::move(Symbol)) {}
22
23 std::unique_ptr<PDBSymbolTypeFunctionSig> PDBSymbolFunc::getSignature() const {
24   return Session.getConcreteSymbolById<PDBSymbolTypeFunctionSig>(getTypeId());
25 }
26
27 void PDBSymbolFunc::dump(raw_ostream &OS, int Indent,
28                          PDBSymDumper &Dumper) const {
29   Dumper.dump(*this, OS, Indent);
30 }