Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lld/COFF/
H A DInputFiles.cpp846 static std::optional<std::string> findPdbPath(StringRef pdbPath, in findPdbPath() argument
852 if (llvm::sys::fs::exists(pdbPath)) in findPdbPath()
853 return normalizePdbPath(pdbPath); in findPdbPath()
854 std::string ret = getPdbBaseName(dependentFile, pdbPath); in findPdbPath()
H A DConfig.h148 llvm::SmallString<128> pdbPath; member
H A DDriver.cpp1248 sys::path::filename(ctx.config.pdbPath, sys::path::Style::windows); in parsePDBAltPath()
1685 config->pdbPath = arg->getValue(); in linkerMain()
2334 if (config->pdbPath.empty()) { in linkerMain()
2335 config->pdbPath = config->outputFile; in linkerMain()
2336 sys::path::replace_extension(config->pdbPath, ".pdb"); in linkerMain()
2342 config->pdbAltPath = config->pdbPath; in linkerMain()
H A DPDB.cpp1310 tsis.back().typeIndex.getIndex(), ctx.config.pdbPath); in printStats()
1678 nativePath = ctx.config.pdbPath; in addSections()
1717 if (Error e = builder.commit(ctx.config.pdbPath, guid)) { in commit()
1725 error("failed to write PDB file " + Twine(ctx.config.pdbPath)); in commit()
H A DWriter.cpp773 if (!ctx.config.pdbPath.empty() && ctx.config.debug) { in run()