Searched refs:NewPrefix (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/llvm/tools/llvm-lto/ |
H A D | llvm-lto.cpp | 514 std::string &NewPrefix) { in getThinLTOOldAndNewPrefix() argument 520 NewPrefix = Split.second.str(); in getThinLTOOldAndNewPrefix() 527 StringRef NewPrefix) { in getThinLTOOutputFile() argument 528 if (OldPrefix.empty() && NewPrefix.empty()) in getThinLTOOutputFile() 531 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix); in getThinLTOOutputFile() 682 std::string OldPrefix, NewPrefix; in distributedIndexes() local 683 getThinLTOOldAndNewPrefix(OldPrefix, NewPrefix); in distributedIndexes() 703 OutputName = getThinLTOOutputFile(OutputName, OldPrefix, NewPrefix); in distributedIndexes() 720 std::string OldPrefix, NewPrefix; in emitImports() local 721 getThinLTOOldAndNewPrefix(OldPrefix, NewPrefix); in emitImports() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/LTO/ |
H A D | LTO.cpp | 1596 StringRef NewPrefix) { in getThinLTOOutputFile() argument 1597 if (OldPrefix.empty() && NewPrefix.empty()) in getThinLTOOutputFile() 1600 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix); in getThinLTOOutputFile() 1613 std::string OldPrefix, NewPrefix, NativeObjectPrefix; member in __anona29527bd1511::WriteIndexesThinBackend 1620 std::string OldPrefix, std::string NewPrefix, in WriteIndexesThinBackend() argument 1625 OldPrefix(OldPrefix), NewPrefix(NewPrefix), in WriteIndexesThinBackend() 1637 getThinLTOOutputFile(ModulePath, OldPrefix, NewPrefix); in start() 1641 NativeObjectPrefix.empty() ? NewPrefix : NativeObjectPrefix; in start() 1664 std::string OldPrefix, std::string NewPrefix, in createWriteIndexesThinBackend() argument 1673 NewPrefix, NativeObjectPrefix, ShouldEmitImportsFiles, in createWriteIndexesThinBackend()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | OptParserEmitter.cpp | 271 unsigned NewPrefix = CurPrefix + 1; in EmitOptParser() local 272 std::string Prefix = (Twine("prefix_") + Twine(NewPrefix)).str(); in EmitOptParser() 274 CurPrefix = NewPrefix; in EmitOptParser()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/ |
H A D | LTO.h | 84 StringRef NewPrefix); 234 std::string NewPrefix,
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | Path.cpp | 520 StringRef NewPrefix, Style style) { in replace_path_prefix() argument 521 if (OldPrefix.empty() && NewPrefix.empty()) in replace_path_prefix() 529 if (OldPrefix.size() == NewPrefix.size()) { in replace_path_prefix() 530 llvm::copy(NewPrefix, Path.begin()); in replace_path_prefix() 536 (Twine(NewPrefix) + RelPath).toVector(NewPath); in replace_path_prefix()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Path.h | 195 StringRef NewPrefix,
|