File indexing completed on 2026-05-10 08:43:44
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef LLVM_DEBUGINFO_PDB_NATIVE_NATIVECOMPILANDSYMBOL_H
0010 #define LLVM_DEBUGINFO_PDB_NATIVE_NATIVECOMPILANDSYMBOL_H
0011
0012 #include "llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h"
0013 #include "llvm/DebugInfo/PDB/Native/NativeRawSymbol.h"
0014
0015 namespace llvm {
0016 namespace pdb {
0017
0018 class NativeCompilandSymbol : public NativeRawSymbol {
0019 public:
0020 NativeCompilandSymbol(NativeSession &Session, SymIndexId SymbolId,
0021 DbiModuleDescriptor MI);
0022
0023 void dump(raw_ostream &OS, int Indent, PdbSymbolIdField ShowIdFields,
0024 PdbSymbolIdField RecurseIdFields) const override;
0025
0026 PDB_SymType getSymTag() const override;
0027 bool isEditAndContinueEnabled() const override;
0028 SymIndexId getLexicalParentId() const override;
0029 std::string getLibraryName() const override;
0030 std::string getName() const override;
0031
0032 private:
0033 DbiModuleDescriptor Module;
0034 };
0035
0036 }
0037 }
0038
0039 #endif