Lines Matching refs:pdb
33 using namespace llvm::pdb;
39 llvm::pdb::getModuleDebugStream(PDBFile &File, StringRef &ModuleName, in getModuleDebugStream()
69 Expected<ModuleDebugStreamRef> llvm::pdb::getModuleDebugStream(PDBFile &File, in getModuleDebugStream()
198 auto StringTable = File->pdb().getStringTable(); in initializeForPdb()
206 auto MDS = getModuleDebugStream(File->pdb(), Name, Modi); in initializeForPdb()
322 if (Magic == file_magic::pdb) { in open()
349 PDBFile &InputFile::pdb() { in pdb() function in InputFile
354 const PDBFile &InputFile::pdb() const { in pdb() function in InputFile
381 return pdb().getFilePath(); in getFilePath()
390 return pdb().hasPDBTpiStream(); in hasTypes()
403 return pdb().hasPDBIpiStream(); in hasIds()
422 assert(isPdb() && pdb().hasPDBIpiStream()); in getOrCreateTypeCollection()
429 auto &Stream = cantFail((Kind == kIds) ? pdb().getPDBIpiStream() in getOrCreateTypeCollection()
430 : pdb().getPDBTpiStream()); in getOrCreateTypeCollection()
465 if (isObj() || !pdb().hasPDBIpiStream()) in ids()
549 DbiStream &Dbi = cantFail(Value.File->pdb().getPDBDbiStream()); in isEnd()
577 bool llvm::pdb::shouldDumpSymbolGroup(uint32_t Idx, const SymbolGroup &Group, in shouldDumpSymbolGroup()