Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-10 08:43:44

0001 //===- NativeCompilandSymbol.h - native impl for compiland syms -*- C++ -*-===//
0002 //
0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0004 // See https://llvm.org/LICENSE.txt for license information.
0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
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 } // namespace pdb
0037 } // namespace llvm
0038 
0039 #endif