LLVM  4.0.0
PDBSymbolCompiland.h
Go to the documentation of this file.
1 //===- PDBSymbolCompiland.h - Accessors for querying PDB compilands -----*-===//
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 #ifndef LLVM_DEBUGINFO_PDB_PDBSYMBOLCOMPILAND_H
10 #define LLVM_DEBUGINFO_PDB_PDBSYMBOLCOMPILAND_H
11 
12 #include "PDBSymbol.h"
13 #include "PDBTypes.h"
14 #include <string>
15 
16 namespace llvm {
17 
18 class raw_ostream;
19 
20 namespace pdb {
21 
22 class PDBSymbolCompiland : public PDBSymbol {
23 public:
24  PDBSymbolCompiland(const IPDBSession &PDBSession,
25  std::unique_ptr<IPDBRawSymbol> CompilandSymbol);
26 
28 
29  void dump(PDBSymDumper &Dumper) const override;
30 
31  FORWARD_SYMBOL_METHOD(isEditAndContinueEnabled)
32  FORWARD_SYMBOL_METHOD(getLexicalParentId)
33  FORWARD_SYMBOL_METHOD(getLibraryName)
35 
36  std::string getSourceFileName() const;
37 };
38 }
39 }
40 
41 #endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLCOMPILAND_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.
std::string getSourceFileName() const
static StringRef getName(Value *V)
#define FORWARD_SYMBOL_METHOD(MethodName)
Definition: PDBSymbol.h:20
PDBSymbolCompiland(const IPDBSession &PDBSession, std::unique_ptr< IPDBRawSymbol > CompilandSymbol)
PDBSymbol defines the base of the inheritance hierarchy for concrete symbol types (e...
Definition: PDBSymbol.h:43