Home
last modified time | relevance | path

Searched refs:OldPrefix (Results 1 – 7 of 7) sorted by relevance

/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp459 static void getThinLTOOldAndNewPrefix(std::string &OldPrefix, in getThinLTOOldAndNewPrefix() argument
465 OldPrefix = Split.first.str(); in getThinLTOOldAndNewPrefix()
473 const std::string &OldPrefix, in getThinLTOOutputFile() argument
475 if (OldPrefix.empty() && NewPrefix.empty()) in getThinLTOOutputFile()
478 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix); in getThinLTOOutputFile()
628 std::string OldPrefix, NewPrefix; in distributedIndexes() local
629 getThinLTOOldAndNewPrefix(OldPrefix, NewPrefix); in distributedIndexes()
648 OutputName = getThinLTOOutputFile(OutputName, OldPrefix, NewPrefix); in distributedIndexes()
665 std::string OldPrefix, NewPrefix; in emitImports() local
666 getThinLTOOldAndNewPrefix(OldPrefix, NewPrefix); in emitImports()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/tools/gold/
H A Dgold-plugin.cpp853 static void getThinLTOOldAndNewPrefix(std::string &OldPrefix, in getThinLTOOldAndNewPrefix() argument
858 OldPrefix = std::string(Split.first); in getThinLTOOldAndNewPrefix()
895 std::string OldPrefix, NewPrefix; in createLTO() local
896 getThinLTOOldAndNewPrefix(OldPrefix, NewPrefix); in createLTO()
897 Backend = createWriteIndexesThinBackend(OldPrefix, NewPrefix, in createLTO()
980 const std::string &OldPrefix, in writeEmptyDistributedBuildOutputs() argument
984 getThinLTOOutputFile(ModulePath, OldPrefix, NewPrefix); in writeEmptyDistributedBuildOutputs()
1042 std::string OldPrefix, NewPrefix; in runLTO() local
1044 getThinLTOOldAndNewPrefix(OldPrefix, NewPrefix); in runLTO()
1064 writeEmptyDistributedBuildOutputs(Identifier, OldPrefix, NewPrefix, in runLTO()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/LTO/
H A DLTO.cpp1309 const std::string &OldPrefix, in getThinLTOOutputFile() argument
1311 if (OldPrefix.empty() && NewPrefix.empty()) in getThinLTOOutputFile()
1314 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix); in getThinLTOOutputFile()
1327 std::string OldPrefix, NewPrefix; member in __anond2a51e7e1111::WriteIndexesThinBackend
1336 std::string OldPrefix, std::string NewPrefix, bool ShouldEmitImportsFiles, in WriteIndexesThinBackend() argument
1339 OldPrefix(OldPrefix), NewPrefix(NewPrefix), in WriteIndexesThinBackend()
1351 getThinLTOOutputFile(std::string(ModulePath), OldPrefix, NewPrefix); in start()
1388 std::string OldPrefix, std::string NewPrefix, bool ShouldEmitImportsFiles, in createWriteIndexesThinBackend() argument
1394 Conf, CombinedIndex, ModuleToDefinedGVSummaries, OldPrefix, NewPrefix, in createWriteIndexesThinBackend()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/LTO/
H A DLTO.h81 const std::string &OldPrefix,
247 ThinBackend createWriteIndexesThinBackend(std::string OldPrefix,
/netbsd/external/apache2/llvm/dist/llvm/lib/Support/
H A DPath.cpp516 bool replace_path_prefix(SmallVectorImpl<char> &Path, StringRef OldPrefix, in replace_path_prefix() argument
518 if (OldPrefix.empty() && NewPrefix.empty()) in replace_path_prefix()
522 if (!starts_with(OrigPath, OldPrefix, style)) in replace_path_prefix()
526 if (OldPrefix.size() == NewPrefix.size()) { in replace_path_prefix()
531 StringRef RelPath = OrigPath.substr(OldPrefix.size()); in replace_path_prefix()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DPath.h173 bool replace_path_prefix(SmallVectorImpl<char> &Path, StringRef OldPrefix,
/netbsd/external/apache2/llvm/dist/llvm/lib/IR/
H A DAutoUpgrade.cpp4400 StringRef OldPrefix = "llvm.vectorizer."; in upgradeLoopTag() local
4401 assert(OldTag.startswith(OldPrefix) && "Expected old prefix"); in upgradeLoopTag()
4407 C, (Twine("llvm.loop.vectorize.") + OldTag.drop_front(OldPrefix.size())) in upgradeLoopTag()