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: IPDBInjectedSource.h
//===- IPDBInjectedSource.h - base class for PDB injected file --*- 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_IPDBINJECTEDSOURCE_H #define LLVM_DEBUGINFO_PDB_IPDBINJECTEDSOURCE_H #include <cstdint> #include <string> namespace llvm { namespace pdb { /// IPDBInjectedSource defines an interface used to represent source files /// which were injected directly into the PDB file during the compilation /// process. This is used, for example, to add natvis files to a PDB, but /// in theory could be used to add arbitrary source code. class IPDBInjectedSource { public: virtual ~IPDBInjectedSource(); virtual uint32_t getCrc32() const = 0; virtual uint64_t getCodeByteSize() const = 0; virtual std::string getFileName() const = 0; virtual std::string getObjectFileName() const = 0; virtual std::string getVirtualFileName() const = 0; // The returned value depends on the PDB producer, // but 0 is guaranteed to mean "no compression". // The enum PDB_SourceCompression lists known return values. virtual uint32_t getCompression() const = 0; virtual std::string getCode() const = 0; }; } // namespace pdb } // namespace llvm #endif // LLVM_DEBUGINFO_PDB_IPDBINJECTEDSOURCE_H
Upload File
Create Folder