Home
last modified time | relevance | path

Searched refs:pdbAltPath (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/lld/COFF/
H A DDriver.cpp1243 while (cursor < ctx.config.pdbAltPath.size()) { in parsePDBAltPath()
1245 if ((firstMark = ctx.config.pdbAltPath.find('%', cursor)) == in parsePDBAltPath()
1247 (secondMark = ctx.config.pdbAltPath.find('%', firstMark + 1)) == in parsePDBAltPath()
1250 buf.append(ctx.config.pdbAltPath.substr(cursor)); in parsePDBAltPath()
1256 buf.append(ctx.config.pdbAltPath.substr(cursor, firstMark - cursor)); in parsePDBAltPath()
1258 ctx.config.pdbAltPath.substr(firstMark, secondMark - firstMark + 1); in parsePDBAltPath()
1272 ctx.config.pdbAltPath = buf; in parsePDBAltPath()
1589 config->pdbAltPath = arg->getValue(); in linkerMain()
2175 if (config->pdbAltPath.empty()) { in linkerMain()
2176 config->pdbAltPath = config->pdbPath; in linkerMain()
[all …]
H A DConfig.h130 llvm::SmallString<128> pdbAltPath; member
H A DWriter.cpp149 return sizeof(codeview::DebugInfo) + ctx.config.pdbAltPath.size() + 1; in getSize()
159 if (!ctx.config.pdbAltPath.empty()) in writeTo()
160 memcpy(p, ctx.config.pdbAltPath.data(), ctx.config.pdbAltPath.size()); in writeTo()
161 p[ctx.config.pdbAltPath.size()] = '\0'; in writeTo()