Line data Source code
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 : namespace pdb {
20 :
21 : class PDBSymbolCompilandDetails : public PDBSymbol {
22 33 : DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::CompilandDetails)
23 : public:
24 : void dump(PDBSymDumper &Dumper) const override;
25 :
26 : void getFrontEndVersion(VersionInfo &Version) const {
27 : RawSymbol->getFrontEndVersion(Version);
28 : }
29 :
30 : void getBackEndVersion(VersionInfo &Version) const {
31 : RawSymbol->getBackEndVersion(Version);
32 : }
33 :
34 : FORWARD_SYMBOL_METHOD(getCompilerName)
35 : FORWARD_SYMBOL_METHOD(isEditAndContinueEnabled)
36 : FORWARD_SYMBOL_METHOD(hasDebugInfo)
37 : FORWARD_SYMBOL_METHOD(hasManagedCode)
38 : FORWARD_SYMBOL_METHOD(hasSecurityChecks)
39 : FORWARD_SYMBOL_METHOD(isCVTCIL)
40 : FORWARD_SYMBOL_METHOD(isDataAligned)
41 : FORWARD_SYMBOL_METHOD(isHotpatchable)
42 : FORWARD_SYMBOL_METHOD(isLTCG)
43 : FORWARD_SYMBOL_METHOD(isMSILNetmodule)
44 0 : FORWARD_SYMBOL_METHOD(getLanguage)
45 : FORWARD_SYMBOL_ID_METHOD(getLexicalParent)
46 : FORWARD_SYMBOL_METHOD(getPlatform)
47 : FORWARD_SYMBOL_METHOD(getSourceFileName)
48 : };
49 :
50 : } // namespace llvm
51 : }
52 :
53 : #endif // LLVM_DEBUGINFO_PDB_PDBFUNCTION_H
|