Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/COFF/
H A DInputFiles.cpp873 findPdbPath(StringRef pdbPath, ObjFile *dependentFile, StringRef outputPath) { in findPdbPath() argument
878 if (llvm::sys::fs::exists(pdbPath)) in findPdbPath()
879 return normalizePdbPath(pdbPath); in findPdbPath()
887 StringRef pdbName = sys::path::filename(pdbPath, sys::path::Style::windows); in findPdbPath()
H A DConfig.h148 llvm::SmallString<128> pdbPath; member
H A DDriver.cpp1240 sys::path::filename(ctx.config.pdbPath, sys::path::Style::windows); in parsePDBAltPath()
1677 config->pdbPath = arg->getValue(); in linkerMain()
2329 if (config->pdbPath.empty()) { in linkerMain()
2330 config->pdbPath = config->outputFile; in linkerMain()
2331 sys::path::replace_extension(config->pdbPath, ".pdb"); in linkerMain()
2337 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()