Home
last modified time | relevance | path

Searched refs:NewPrefix (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp568 std::string &NewPrefix) { in getThinLTOOldAndNewPrefix() argument
574 NewPrefix = Split.second.str(); in getThinLTOOldAndNewPrefix()
581 StringRef NewPrefix) { in getThinLTOOutputFile() argument
582 if (OldPrefix.empty() && NewPrefix.empty()) in getThinLTOOutputFile()
585 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix); in getThinLTOOutputFile()
736 std::string OldPrefix, NewPrefix; in distributedIndexes() local
737 getThinLTOOldAndNewPrefix(OldPrefix, NewPrefix); in distributedIndexes()
757 OutputName = getThinLTOOutputFile(OutputName, OldPrefix, NewPrefix); in distributedIndexes()
774 std::string OldPrefix, NewPrefix; in emitImports() local
775 getThinLTOOldAndNewPrefix(OldPrefix, NewPrefix); in emitImports()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp1786 StringRef NewPrefix) { in getThinLTOOutputFile() argument
1787 if (OldPrefix.empty() && NewPrefix.empty()) in getThinLTOOutputFile()
1790 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix); in getThinLTOOutputFile()
1803 std::string OldPrefix, NewPrefix, NativeObjectPrefix; member in __anona29527bd1a11::WriteIndexesThinBackend
1811 std::string OldPrefix, std::string NewPrefix, in WriteIndexesThinBackend() argument
1816 OldPrefix(OldPrefix), NewPrefix(NewPrefix), in WriteIndexesThinBackend()
1834 NativeObjectPrefix.empty() ? NewPrefix : NativeObjectPrefix; in start()
1843 const std::string &OldPrefix, const std::string &NewPrefix) { in start() argument
1845 getThinLTOOutputFile(ModulePath, OldPrefix, NewPrefix); in start()
1856 ModulePath, ImportList, OldPrefix, NewPrefix); in start()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp519 StringRef NewPrefix, Style style) { in replace_path_prefix() argument
520 if (OldPrefix.empty() && NewPrefix.empty()) in replace_path_prefix()
528 if (OldPrefix.size() == NewPrefix.size()) { in replace_path_prefix()
529 llvm::copy(NewPrefix, Path.begin()); in replace_path_prefix()
535 (Twine(NewPrefix) + RelPath).toVector(NewPath); in replace_path_prefix()
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h91 StringRef NewPrefix);
353 std::string NewPrefix, std::string NativeObjectPrefix,
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DPath.h200 StringRef OldPrefix, StringRef NewPrefix,