Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/lld/COFF/
HDDriver.cpp1008 config->pdbAltPath = buf; in parsePDBAltPath()
1260 config->pdbAltPath = arg->getValue(); in link()
1774 if (config->pdbAltPath.empty()) { in link()
1775 config->pdbAltPath = config->pdbPath; in link()
1780 sys::fs::make_absolute(config->pdbAltPath); in link()
1781 sys::path::remove_dots(config->pdbAltPath); in link()
1784 parsePDBAltPath(config->pdbAltPath); in link()
HDConfig.h113 llvm::SmallString<128> pdbAltPath; member
HDWriter.cpp151 return sizeof(codeview::DebugInfo) + config->pdbAltPath.size() + 1; in getSize()
161 if (!config->pdbAltPath.empty()) in writeTo()
162 memcpy(p, config->pdbAltPath.data(), config->pdbAltPath.size()); in writeTo()
163 p[config->pdbAltPath.size()] = '\0'; in writeTo()