Home
last modified time | relevance | path

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

/external/llvm-project/lld/COFF/
DDriver.cpp1101 config->pdbAltPath = buf; in parsePDBAltPath()
1370 config->pdbAltPath = arg->getValue(); in link()
1933 if (config->pdbAltPath.empty()) { in link()
1934 config->pdbAltPath = config->pdbPath; in link()
1939 sys::fs::make_absolute(config->pdbAltPath); in link()
1940 sys::path::remove_dots(config->pdbAltPath); in link()
1943 parsePDBAltPath(config->pdbAltPath); in link()
DConfig.h116 llvm::SmallString<128> pdbAltPath; member
DWriter.cpp154 return sizeof(codeview::DebugInfo) + config->pdbAltPath.size() + 1; in getSize()
164 if (!config->pdbAltPath.empty()) in writeTo()
165 memcpy(p, config->pdbAltPath.data(), config->pdbAltPath.size()); in writeTo()
166 p[config->pdbAltPath.size()] = '\0'; in writeTo()