003 File Manager
Current Path:
/usr/src/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB
usr
/
src
/
contrib
/
llvm-project
/
llvm
/
include
/
llvm
/
DebugInfo
/
PDB
/
📁
..
📄
ConcreteSymbolEnumerator.h
(1.59 KB)
📁
DIA
📄
GenericError.h
(1.35 KB)
📄
IPDBDataStream.h
(1.19 KB)
📄
IPDBEnumChildren.h
(1.39 KB)
📄
IPDBFrameData.h
(1.01 KB)
📄
IPDBInjectedSource.h
(1.45 KB)
📄
IPDBLineNumber.h
(1.14 KB)
📄
IPDBRawSymbol.h
(11.1 KB)
📄
IPDBSectionContrib.h
(1.73 KB)
📄
IPDBSession.h
(3.88 KB)
📄
IPDBSourceFile.h
(1.07 KB)
📄
IPDBTable.h
(743 B)
📁
Native
📄
PDB.h
(938 B)
📄
PDBContext.h
(2.26 KB)
📄
PDBExtras.h
(2.15 KB)
📄
PDBSymDumper.h
(3.29 KB)
📄
PDBSymbol.h
(7.13 KB)
📄
PDBSymbolAnnotation.h
(1.02 KB)
📄
PDBSymbolBlock.h
(1.08 KB)
📄
PDBSymbolCompiland.h
(1.04 KB)
📄
PDBSymbolCompilandDetails.h
(1.56 KB)
📄
PDBSymbolCompilandEnv.h
(932 B)
📄
PDBSymbolCustom.h
(1.05 KB)
📄
PDBSymbolData.h
(1.86 KB)
📄
PDBSymbolExe.h
(1.21 KB)
📄
PDBSymbolFunc.h
(2.88 KB)
📄
PDBSymbolFuncDebugEnd.h
(1.44 KB)
📄
PDBSymbolFuncDebugStart.h
(1.45 KB)
📄
PDBSymbolLabel.h
(1.4 KB)
📄
PDBSymbolPublicSymbol.h
(1.31 KB)
📄
PDBSymbolThunk.h
(1.7 KB)
📄
PDBSymbolTypeArray.h
(1.21 KB)
📄
PDBSymbolTypeBaseClass.h
(1.92 KB)
📄
PDBSymbolTypeBuiltin.h
(1.03 KB)
📄
PDBSymbolTypeCustom.h
(887 B)
📄
PDBSymbolTypeDimension.h
(906 B)
📄
PDBSymbolTypeEnum.h
(1.69 KB)
📄
PDBSymbolTypeFriend.h
(921 B)
📄
PDBSymbolTypeFunctionArg.h
(958 B)
📄
PDBSymbolTypeFunctionSig.h
(1.46 KB)
📄
PDBSymbolTypeManaged.h
(851 B)
📄
PDBSymbolTypePointer.h
(1.36 KB)
📄
PDBSymbolTypeTypedef.h
(1.57 KB)
📄
PDBSymbolTypeUDT.h
(1.65 KB)
📄
PDBSymbolTypeVTable.h
(1.06 KB)
📄
PDBSymbolTypeVTableShape.h
(1.01 KB)
📄
PDBSymbolUnknown.h
(860 B)
📄
PDBSymbolUsingNamespace.h
(912 B)
📄
PDBTypes.h
(16.11 KB)
📄
UDTLayout.h
(5.72 KB)
Editing: PDBContext.h
//===-- PDBContext.h --------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===/ #ifndef LLVM_DEBUGINFO_PDB_PDBCONTEXT_H #define LLVM_DEBUGINFO_PDB_PDBCONTEXT_H #include "llvm/DebugInfo/DIContext.h" #include "llvm/DebugInfo/PDB/IPDBSession.h" #include <cstdint> #include <memory> #include <string> namespace llvm { namespace object { class COFFObjectFile; } // end namespace object namespace pdb { /// PDBContext /// This data structure is the top level entity that deals with PDB debug /// information parsing. This data structure exists only when there is a /// need for a transparent interface to different debug information formats /// (e.g. PDB and DWARF). More control and power over the debug information /// access can be had by using the PDB interfaces directly. class PDBContext : public DIContext { public: PDBContext(const object::COFFObjectFile &Object, std::unique_ptr<IPDBSession> PDBSession); PDBContext(PDBContext &) = delete; PDBContext &operator=(PDBContext &) = delete; static bool classof(const DIContext *DICtx) { return DICtx->getKind() == CK_PDB; } void dump(raw_ostream &OS, DIDumpOptions DIDumpOpts) override; DILineInfo getLineInfoForAddress( object::SectionedAddress Address, DILineInfoSpecifier Specifier = DILineInfoSpecifier()) override; DILineInfoTable getLineInfoForAddressRange( object::SectionedAddress Address, uint64_t Size, DILineInfoSpecifier Specifier = DILineInfoSpecifier()) override; DIInliningInfo getInliningInfoForAddress( object::SectionedAddress Address, DILineInfoSpecifier Specifier = DILineInfoSpecifier()) override; std::vector<DILocal> getLocalsForAddress(object::SectionedAddress Address) override; private: std::string getFunctionName(uint64_t Address, DINameKind NameKind) const; std::unique_ptr<IPDBSession> Session; }; } // end namespace pdb } // end namespace llvm #endif // LLVM_DEBUGINFO_PDB_PDBCONTEXT_H
Upload File
Create Folder