Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp85 Compilands.resize(Dbi->modules().getModuleCount()); in SymbolCache()
601 if (Index >= Compilands.size()) in getOrCreateCompiland()
604 if (Compilands[Index] == 0) { in getOrCreateCompiland()
606 Compilands[Index] = in getOrCreateCompiland()
610 return Session.getConcreteSymbolById<PDBSymbolCompiland>(Compilands[Index]); in getOrCreateCompiland()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp184 static cl::opt<bool> Compilands("compilands",
218 cl::opt<bool> Compilands("compilands", cl::desc("Display compilands"),
1044 if (opts::diadump::Compilands) in dumpDia()
1208 if (opts::pretty::Compilands) { in dumpPretty()
1212 auto Compilands = GlobalScope->findAllChildren<PDBSymbolCompiland>(); in dumpPretty()
1214 if (Compilands) { in dumpPretty() local
1220 while (auto Compiland = Compilands->getNext()) in dumpPretty()
1240 if (auto Compilands = GlobalScope->findAllChildren<PDBSymbolCompiland>()) { in dumpPretty()
1243 while (auto Compiland = Compilands->getNext()) in dumpPretty()
1584 opts::pretty::Compilands in main()
186 static cl::opt<bool> Compilands("compilands", global() variable
220 cl::opt<bool> Compilands("compilands", cl::desc("Display compilands"), global() variable
1242 if (auto Compilands = GlobalScope->findAllChildren<PDBSymbolCompiland>()) { dumpPretty() local
[all...]
H A Dllvm-pdbutil.h80 extern llvm::cl::opt<bool> Compilands;
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DSymbolCache.h60 mutable std::vector<SymIndexId> Compilands; variable