| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | TpiStream.cpp | 36 TpiStream::TpiStream(PDBFile &File, std::unique_ptr<MappedBlockStream> Stream) in TpiStream() function in TpiStream 39 TpiStream::~TpiStream() = default; 41 Error TpiStream::reload() { in reload() 120 PdbRaw_TpiVer TpiStream::getTpiVersion() const { in getTpiVersion() 125 uint32_t TpiStream::TypeIndexBegin() const { return Header->TypeIndexBegin; } in TypeIndexBegin() 127 uint32_t TpiStream::TypeIndexEnd() const { return Header->TypeIndexEnd; } in TypeIndexEnd() 129 uint32_t TpiStream::getNumTypeRecords() const { in getNumTypeRecords() 133 uint16_t TpiStream::getTypeHashStreamIndex() const { in getTypeHashStreamIndex() 137 uint16_t TpiStream::getTypeHashStreamAuxIndex() const { in getTypeHashStreamAuxIndex() 141 uint32_t TpiStream::getNumHashBuckets() const { return Header->NumHashBuckets; } in getNumHashBuckets() [all …]
|
| H A D | PDBFile.cpp | 301 Expected<TpiStream &> PDBFile::getPDBTpiStream() { in getPDBTpiStream() 306 auto TempTpi = std::make_unique<TpiStream>(*this, std::move(*TpiS)); in getPDBTpiStream() 314 Expected<TpiStream &> PDBFile::getPDBIpiStream() { in getPDBIpiStream() 322 auto TempIpi = std::make_unique<TpiStream>(*this, std::move(*IpiS)); in getPDBIpiStream()
|
| H A D | NativeTypeFunctionSig.cpp | 103 TpiStream &Tpi = cantFail(Session.getPDBFile().getPDBTpiStream()); in initializeArgList()
|
| H A D | NativeTypeEnum.cpp | 66 TpiStream &Tpi = cantFail(Session.getPDBFile().getPDBTpiStream()); in NativeEnumEnumEnumerators()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | PdbIndex.h | 27 class TpiStream; variable 64 llvm::pdb::TpiStream *m_tpi = nullptr; 65 llvm::pdb::TpiStream *m_ipi = nullptr; 124 llvm::pdb::TpiStream &tpi() { return *m_tpi; } in tpi() 125 const llvm::pdb::TpiStream &tpi() const { return *m_tpi; } in tpi() 127 llvm::pdb::TpiStream &ipi() { return *m_ipi; } in ipi() 128 const llvm::pdb::TpiStream &ipi() const { return *m_ipi; } in ipi()
|
| H A D | PdbUtil.h | 28 class TpiStream; variable 132 bool IsForwardRefUdt(const PdbTypeSymId &id, llvm::pdb::TpiStream &tpi); 133 bool IsTagRecord(const PdbTypeSymId &id, llvm::pdb::TpiStream &tpi); 150 PdbTypeSymId GetBestPossibleDecl(PdbTypeSymId id, llvm::pdb::TpiStream &tpi); 152 size_t GetSizeOfType(PdbTypeSymId id, llvm::pdb::TpiStream &tpi);
|
| H A D | DWARFLocationExpression.h | 24 class TpiStream; variable 48 llvm::codeview::TypeIndex underlying_ti, llvm::pdb::TpiStream &tpi,
|
| H A D | DWARFLocationExpression.cpp | 78 TpiStream &tpi) { in GetIntegralTypeInfo() 228 TypeIndex underlying_ti, TpiStream &tpi, const llvm::APSInt &constant, in MakeConstantLocationExpression()
|
| H A D | PdbUtil.cpp | 541 TpiStream &tpi) { in IsForwardRefUdt() 547 bool lldb_private::npdb::IsTagRecord(const PdbTypeSymId &id, TpiStream &tpi) { in IsTagRecord() 1041 TpiStream &tpi) { in GetBestPossibleDecl() 1066 llvm::pdb::TpiStream &tpi) { in GetSizeOfType()
|
| H A D | UdtRecordCompleter.h | 28 class TpiStream; variable
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | PDBFile.h | 38 class TpiStream; variable 101 Expected<TpiStream &> getPDBTpiStream(); 102 Expected<TpiStream &> getPDBIpiStream(); 133 std::unique_ptr<TpiStream> Tpi; 134 std::unique_ptr<TpiStream> Ipi;
|
| H A D | TpiStream.h | 34 class TpiStream { 38 TpiStream(PDBFile &File, std::unique_ptr<msf::MappedBlockStream> Stream); 39 ~TpiStream();
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/ |
| H A D | MinimalTypeDumper.h | 22 class TpiStream; variable 32 pdb::TpiStream *Stream) in MinimalTypeDumpVisitor() 65 pdb::TpiStream *Stream = nullptr;
|
| H A D | TypeReferenceTracker.h | 23 class TpiStream; variable 55 TpiStream *Tpi = nullptr;
|
| H A D | YAMLOutputStyle.cpp | 283 if (!opts::pdb2yaml::TpiStream) in dumpTpiStream() 291 Obj.TpiStream.emplace(); in dumpTpiStream() 292 Obj.TpiStream->Version = TS.getTpiVersion(); in dumpTpiStream() 297 Obj.TpiStream->Records.push_back(*ExpectedRecord); in dumpTpiStream()
|
| H A D | PdbYaml.h | 102 std::optional<PdbTpiStream> TpiStream; member
|
| H A D | PdbYaml.cpp | 111 IO.mapOptional("TpiStream", Obj.TpiStream); in mapping()
|
| H A D | llvm-pdbutil.h | 197 extern llvm::cl::opt<bool> TpiStream;
|
| /openbsd-src/gnu/llvm/lld/COFF/ |
| H A D | DebugTypes.cpp | 363 Expected<pdb::TpiStream &> expectedTpi = pdbFile.getPDBTpiStream(); in mergeDebugT() 366 pdb::TpiStream *maybeIpi = nullptr; in mergeDebugT() 368 Expected<pdb::TpiStream &> expectedIpi = pdbFile.getPDBIpiStream(); in mergeDebugT() 755 Expected<pdb::TpiStream &> expectedTpi = pdbFile.getPDBTpiStream(); in loadGHashes() 765 Expected<pdb::TpiStream &> expectedIpi = pdbFile.getPDBIpiStream(); in loadGHashes() 795 pdb::TpiStream &tpi = check(pdbFile.getPDBTpiStream()); in remapTpiWithGHashes() 800 pdb::TpiStream &ipi = check(pdbFile.getPDBIpiStream()); in remapTpiWithGHashes()
|
| H A D | DebugTypes.h | 25 class TpiStream; variable
|
| /openbsd-src/gnu/llvm/llvm/docs/PDB/ |
| H A D | index.rst | 50 TpiStream 139 :doc:`TpiStream` 160 :doc:`TPI/IPI Stream <TpiStream>`.
|
| H A D | PdbStream.rst | 70 :doc:`TPI Stream <TpiStream>` has a fixed index and as such there is no need to 121 | | - PDB contains an :doc:`IPI Stream <TpiStream>` | 124 | | - PDB contains an :doc:`IPI Stream <TpiStream>` |
|
| /openbsd-src/gnu/usr.bin/clang/libLLVMDebugInfoPDB/ |
| H A D | Makefile | 80 TpiStream.cpp \
|
| /openbsd-src/gnu/llvm/llvm/utils/gn/secondary/llvm/lib/DebugInfo/PDB/ |
| H A D | BUILD.gn | 67 "Native/TpiStream.cpp",
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/ |
| H A D | CMakeLists.txt | 95 Native/TpiStream.cpp
|