LLVM  4.0.0
PDBSymbolExe.h
Go to the documentation of this file.
1 //===- PDBSymbolExe.h - Accessors for querying executables in a PDB ----*-===//
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 #ifndef LLVM_DEBUGINFO_PDB_PDBSYMBOLEXE_H
11 #define LLVM_DEBUGINFO_PDB_PDBSYMBOLEXE_H
12 
13 #include "PDBSymbol.h"
14 #include "PDBTypes.h"
15 
16 namespace llvm {
17 
18 class raw_ostream;
19 
20 namespace pdb {
21 
22 class PDBSymbolExe : public PDBSymbol {
23 public:
24  PDBSymbolExe(const IPDBSession &PDBSession,
25  std::unique_ptr<IPDBRawSymbol> ExeSymbol);
26 
28 
29  void dump(PDBSymDumper &Dumper) const override;
30 
31  FORWARD_SYMBOL_METHOD(getAge)
32  FORWARD_SYMBOL_METHOD(getGuid)
33  FORWARD_SYMBOL_METHOD(hasCTypes)
34  FORWARD_SYMBOL_METHOD(hasPrivateSymbols)
35  FORWARD_SYMBOL_METHOD(getMachineType)
38  FORWARD_SYMBOL_METHOD(getSymbolsFileName)
39 
40 private:
41  void dumpChildren(raw_ostream &OS, StringRef Label, PDB_SymType ChildType,
42  int Indent) const;
43 };
44 } // namespace llvm
45 }
46 
47 #endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLEXE_H
IPDBSession defines an interface used to provide a context for querying debug information from a debu...
Definition: IPDBSession.h:25
#define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue)
Definition: PDBSymbol.h:33
void dump(PDBSymDumper &Dumper) const override
Dumps the contents of a symbol a raw_ostream.
static StringRef getName(Value *V)
#define FORWARD_SYMBOL_METHOD(MethodName)
Definition: PDBSymbol.h:20
PDBSymbolExe(const IPDBSession &PDBSession, std::unique_ptr< IPDBRawSymbol > ExeSymbol)
PDB_SymType
These values correspond to the SymTagEnum enumeration, and are documented here: https://msdn.microsoft.com/en-us/library/bkedss5f.aspx.
Definition: PDBTypes.h:162
PDBSymbol defines the base of the inheritance hierarchy for concrete symbol types (e...
Definition: PDBSymbol.h:43
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:44
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:47
static std::string getSignature(FunctionType *FTy)