Home
last modified time | relevance | path

Searched refs:Dbi (Results 1 – 8 of 8) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DNativeExeSymbol.cpp34 Dbi(getDbiStreamPtr(Session)) {} in NativeExeSymbol()
88 auto Dbi = Session.getPDBFile().getPDBDbiStream(); in hasCTypes() local
89 if (Dbi) in hasCTypes()
90 return Dbi->hasCTypes(); in hasCTypes()
91 consumeError(Dbi.takeError()); in hasCTypes()
96 auto Dbi = Session.getPDBFile().getPDBDbiStream(); in hasPrivateSymbols() local
97 if (Dbi) in hasPrivateSymbols()
98 return !Dbi->isStripped(); in hasPrivateSymbols()
99 consumeError(Dbi.takeError()); in hasPrivateSymbols()
DPDBFileBuilder.cpp58 if (!Dbi) in getDbiBuilder()
59 Dbi = std::make_unique<DbiStreamBuilder>(*Msf); in getDbiBuilder()
60 return *Dbi; in getDbiBuilder()
144 if (Dbi) { in finalizeMsfLayout()
145 Dbi->setPublicsStreamIndex(Gsi->getPublicsStreamIndex()); in finalizeMsfLayout()
146 Dbi->setGlobalsStreamIndex(Gsi->getGlobalsStreamIndex()); in finalizeMsfLayout()
147 Dbi->setSymbolRecordStreamIndex(Gsi->getRecordStreamIdx()); in finalizeMsfLayout()
154 if (Dbi) { in finalizeMsfLayout()
155 if (auto EC = Dbi->finalizeMsfLayout()) in finalizeMsfLayout()
302 if (Dbi) { in commit()
[all …]
DSymbolCache.cpp64 SymbolCache::SymbolCache(NativeSession &Session, DbiStream *Dbi) in SymbolCache() argument
65 : Session(Session), Dbi(Dbi) { in SymbolCache()
69 if (Dbi) in SymbolCache()
70 Compilands.resize(Dbi->modules().getModuleCount()); in SymbolCache()
252 if (!Dbi) in getNumCompilands()
255 return Dbi->modules().getModuleCount(); in getNumCompilands()
286 if (!Dbi) in getOrCreateCompiland()
293 const DbiModuleList &Modules = Dbi->modules(); in getOrCreateCompiland()
DPDBFile.cpp289 if (!Dbi) { in getPDBDbiStream()
296 Dbi = std::move(TempDbi); in getPDBDbiStream()
298 return *Dbi; in getPDBDbiStream()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/
DSymbolCache.h29 DbiStream *Dbi = nullptr; variable
82 SymbolCache(NativeSession &Session, DbiStream *Dbi);
DNativeExeSymbol.h22 DbiStream *Dbi = nullptr; variable
DPDBFileBuilder.h93 std::unique_ptr<DbiStreamBuilder> Dbi; variable
DPDBFile.h134 std::unique_ptr<DbiStream> Dbi; variable