LLVM  3.7.0
PDBSymbolCompilandDetails.h
Go to the documentation of this file.
1 //===- PDBSymbolCompilandDetails.h - PDB compiland details ------*- 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 #ifndef LLVM_DEBUGINFO_PDB_PDBSYMBOLCOMPILANDDETAILS_H
11 #define LLVM_DEBUGINFO_PDB_PDBSYMBOLCOMPILANDDETAILS_H
12 
13 #include "PDBSymbol.h"
14 #include "PDBTypes.h"
15 
16 namespace llvm {
17 
18 class raw_ostream;
19 
21 public:
22  PDBSymbolCompilandDetails(const IPDBSession &PDBSession,
23  std::unique_ptr<IPDBRawSymbol> Symbol);
24 
26 
27  void dump(PDBSymDumper &Dumper) const override;
28 
30  RawSymbol->getFrontEndVersion(Version);
31  }
32 
34  RawSymbol->getBackEndVersion(Version);
35  }
36 
37  FORWARD_SYMBOL_METHOD(getCompilerName)
38  FORWARD_SYMBOL_METHOD(isEditAndContinueEnabled)
40  FORWARD_SYMBOL_METHOD(hasManagedCode)
41  FORWARD_SYMBOL_METHOD(hasSecurityChecks)
42  FORWARD_SYMBOL_METHOD(isCVTCIL)
43  FORWARD_SYMBOL_METHOD(isDataAligned)
44  FORWARD_SYMBOL_METHOD(isHotpatchable)
45  FORWARD_SYMBOL_METHOD(isLTCG)
46  FORWARD_SYMBOL_METHOD(isMSILNetmodule)
48  FORWARD_SYMBOL_METHOD(getLexicalParentId)
49  FORWARD_SYMBOL_METHOD(getPlatform)
50  FORWARD_SYMBOL_METHOD(getSymIndexId)
51 };
52 
53 } // namespace llvm
54 
55 #endif // LLVM_DEBUGINFO_PDB_PDBFUNCTION_H
#define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue)
Definition: PDBSymbol.h:32
void dump(PDBSymDumper &Dumper) const override
Dumps the contents of a symbol a raw_ostream.
static bool hasDebugInfo(const Function &F)
#define FORWARD_SYMBOL_METHOD(MethodName)
Definition: PDBSymbol.h:22
PDBSymbol defines the base of the inheritance hierarchy for concrete symbol types (e...
Definition: PDBSymbol.h:42
unsigned getLanguage(StringRef LanguageString)
Definition: Dwarf.cpp:352
const std::unique_ptr< IPDBRawSymbol > RawSymbol
Definition: PDBSymbol.h:92
void getBackEndVersion(VersionInfo &Version) const
PDBSymbolCompilandDetails(const IPDBSession &PDBSession, std::unique_ptr< IPDBRawSymbol > Symbol)
IPDBSession defines an interface used to provide a context for querying debug information from a debu...
Definition: IPDBSession.h:24
void getFrontEndVersion(VersionInfo &Version) const