LLVM  8.0.1
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 {
24 public:
25  void dump(PDBSymDumper &Dumper) const override;
26 
27  FORWARD_SYMBOL_METHOD(isEditAndContinueEnabled)
28  FORWARD_SYMBOL_ID_METHOD(getLexicalParent)
29  FORWARD_SYMBOL_METHOD(getLibraryName)
31 
32  std::string getSourceFileName() const;
33  std::string getSourceFileFullPath() const;
34 };
35 }
36 }
37 
38 #endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLCOMPILAND_H
#define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue)
Definition: PDBSymbol.h:51
This class represents lattice values for constants.
Definition: AllocatorList.h:24
std::string getSourceFileFullPath() const
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
PDBSymbol defines the base of the inheritance hierarchy for concrete symbol types (e...
Definition: PDBSymbol.h:74
std::string getSourceFileName() const
#define FORWARD_SYMBOL_ID_METHOD(MethodName)
Definition: PDBSymbol.h:39