Home
last modified time | relevance | path

Searched refs:Compilands (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASession.cpp326 auto Compilands = findCompilandsForSourceFile(Pattern, Flags); in findOneCompilandForSourceFile() local
327 if (!Compilands || Compilands->getChildCount() == 0) in findOneCompilandForSourceFile()
329 return Compilands->getNext(); in findOneCompilandForSourceFile()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp80 Compilands.resize(Dbi->modules().getModuleCount()); in SymbolCache()
596 if (Index >= Compilands.size()) in getOrCreateCompiland()
599 if (Compilands[Index] == 0) { in getOrCreateCompiland()
601 Compilands[Index] = in getOrCreateCompiland()
605 return Session.getConcreteSymbolById<PDBSymbolCompiland>(Compilands[Index]); in getOrCreateCompiland()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp184 static cl::opt<bool> Compilands("compilands", variable
216 cl::opt<bool> Compilands("compilands", cl::desc("Display compilands"), variable
1020 if (opts::diadump::Compilands) in dumpDia()
1184 if (opts::pretty::Compilands) { in dumpPretty()
1188 auto Compilands = GlobalScope->findAllChildren<PDBSymbolCompiland>(); in dumpPretty() local
1190 if (Compilands) { in dumpPretty()
1196 while (auto Compiland = Compilands->getNext()) in dumpPretty()
1216 if (auto Compilands = GlobalScope->findAllChildren<PDBSymbolCompiland>()) { in dumpPretty() local
1219 while (auto Compiland = Compilands->getNext()) in dumpPretty()
1520 opts::pretty::Compilands = true; in main()
[all …]
H A Dllvm-pdbutil.h79 extern llvm::cl::opt<bool> Compilands;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
H A DSymbolCache.h54 mutable std::vector<SymIndexId> Compilands; variable