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

/freebsd-current/contrib/llvm-project/lld/COFF/
H A DDriver.cpp1261 while (cursor < ctx.config.pdbAltPath.size()) {
1263 if ((firstMark = ctx.config.pdbAltPath.find('%', cursor)) ==
1265 (secondMark = ctx.config.pdbAltPath.find('%', firstMark + 1)) ==
1268 buf.append(ctx.config.pdbAltPath.substr(cursor));
1274 buf.append(ctx.config.pdbAltPath.substr(cursor, firstMark - cursor));
1276 ctx.config.pdbAltPath.substr(firstMark, secondMark - firstMark + 1);
1290 ctx.config.pdbAltPath = buf;
1687 config->pdbAltPath = arg->getValue();
2341 if (config->pdbAltPath.empty()) {
2342 config->pdbAltPath
[all...]
H A DConfig.h146 llvm::SmallString<128> pdbAltPath; member in struct:lld::coff::Configuration
H A DWriter.cpp150 return sizeof(codeview::DebugInfo) + ctx.config.pdbAltPath.size() + 1;
160 if (!ctx.config.pdbAltPath.empty())
161 memcpy(p, ctx.config.pdbAltPath.data(), ctx.config.pdbAltPath.size());
162 p[ctx.config.pdbAltPath.size()] = '\0';

Completed in 118 milliseconds