HomeSort by: relevance | last modified time | path
    Searched refs:Tpi (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
StreamUtil.cpp 71 auto Tpi = File.getPDBTpiStream();
107 Streams[StreamIdx] = stream(StreamPurpose::TPI, "TPI Stream", StreamIdx);
119 else if (Tpi && StreamIdx == Tpi->getTypeHashStreamIndex())
121 stream(StreamPurpose::TpiHash, "TPI Hash", StreamIdx);
122 else if (Tpi && StreamIdx == Tpi->getTypeHashStreamAuxIndex())
124 stream(StreamPurpose::Other, "TPI Aux Hash", StreamIdx);
188 if (!Tpi)
    [all...]
TypeReferenceTracker.cpp 45 Tpi = &cantFail(File.pdb().getPDBTpiStream());
46 Tpi->buildHashMap();
145 if (Tpi) {
155 cantFail(Tpi->findFullDeclForForwardRef(RefTI)));
TypeReferenceTracker.h 57 TpiStream *Tpi = nullptr;
BytesOutputStyle.cpp 299 StringRef Label = IsTpi ? "Type (TPI) Records" : "Index (IPI) Records";
451 auto Tpi = (StreamIdx == StreamTPI) ? File.getPDBTpiStream()
453 if (!Tpi)
454 return Tpi.takeError();
456 auto &Types = Tpi->typeArray();
457 uint32_t Count = Tpi->getNumTypeRecords();
458 auto Offsets = Tpi->getTypeIndexOffsets();
llvm-pdbutil.cpp 480 cl::desc("dump CodeView type records from TPI stream"),
484 cl::desc("dump CodeView type record raw bytes from TPI stream"),
664 cl::opt<bool> TpiStream("tpi-stream",
665 cl::desc("Dump the TPI Stream (Stream 3)"),
837 const auto &Tpi = YamlObj.TpiStream.getValueOr(DefaultTpiStream);
838 TpiBuilder.setVersionHeader(Tpi.Version);
840 for (const auto &R : Tpi.Records) {
1301 // Create a Tpi and Ipi type table with all types from all input files.
1308 auto &Tpi = ExitOnErr(File.getPDBTpiStream());
1310 codeview::mergeTypeRecords(MergedTpi, TypeMap, Tpi.typeArray()))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
PDBFileBuilder.cpp 62 if (!Tpi)
63 Tpi = std::make_unique<TpiStreamBuilder>(*Msf, StreamTPI);
64 return *Tpi;
148 if (Tpi) {
149 if (auto EC = Tpi->finalizeMsfLayout())
305 if (Tpi) {
306 if (auto EC = Tpi->commit(Layout, Buffer))
NativeInlineSiteSymbol.cpp 58 auto Tpi = Session.getPDBFile().getPDBTpiStream();
59 if (!Tpi) {
60 consumeError(Tpi.takeError());
69 LazyRandomTypeCollection &Types = Tpi->typeCollection();
SymbolCache.cpp 90 auto Tpi = Session.getPDBFile().getPDBTpiStream();
91 if (!Tpi) {
92 consumeError(Tpi.takeError());
95 auto &Types = Tpi->typeCollection();
168 auto Tpi = Session.getPDBFile().getPDBTpiStream();
169 if (!Tpi) {
170 consumeError(Tpi.takeError());
173 codeview::LazyRandomTypeCollection &Types = Tpi->typeCollection();
177 Expected<TypeIndex> EFD = Tpi->findFullDeclForForwardRef(Index);
NativeTypeFunctionSig.cpp 102 TpiStream &Tpi = cantFail(Session.getPDBFile().getPDBTpiStream());
103 CVType CVT = Tpi.typeCollection().getType(ArgListTI);
PDBFile.cpp 303 if (!Tpi) {
310 Tpi = std::move(TempTpi);
312 return *Tpi;
NativeTypeEnum.cpp 66 TpiStream &Tpi = cantFail(Session.getPDBFile().getPDBTpiStream());
67 LazyRandomTypeCollection &Types = Tpi.typeCollection();
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
PDBFileBuilder.h 92 std::unique_ptr<TpiStreamBuilder> Tpi;
PDBFile.h 135 std::unique_ptr<TpiStream> Tpi;

Completed in 27 milliseconds