Searched refs:NewPrefix (Results 1 – 6 of 6) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-lto/ |
| H A D | llvm-lto.cpp | 505 std::string &NewPrefix) { in getThinLTOOldAndNewPrefix() argument 511 NewPrefix = Split.second.str(); in getThinLTOOldAndNewPrefix() 518 StringRef NewPrefix) { in getThinLTOOutputFile() argument 519 if (OldPrefix.empty() && NewPrefix.empty()) in getThinLTOOutputFile() 522 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix); in getThinLTOOutputFile() 673 std::string OldPrefix, NewPrefix; in distributedIndexes() local 674 getThinLTOOldAndNewPrefix(OldPrefix, NewPrefix); in distributedIndexes() 693 OutputName = getThinLTOOutputFile(OutputName, OldPrefix, NewPrefix); in distributedIndexes() 710 std::string OldPrefix, NewPrefix; in emitImports() local 711 getThinLTOOldAndNewPrefix(OldPrefix, NewPrefix); in emitImports() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | OptParserEmitter.cpp | 215 unsigned NewPrefix = CurPrefix + 1; in EmitOptParser() local 216 std::string Prefix = (Twine("prefix_") + Twine(NewPrefix)).str(); in EmitOptParser() 218 CurPrefix = NewPrefix; in EmitOptParser()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/LTO/ |
| H A D | LTO.cpp | 1564 StringRef NewPrefix) { in getThinLTOOutputFile() argument 1565 if (OldPrefix.empty() && NewPrefix.empty()) in getThinLTOOutputFile() 1568 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix); in getThinLTOOutputFile() 1581 std::string OldPrefix, NewPrefix, NativeObjectPrefix; member in __anonad319db31311::WriteIndexesThinBackend 1588 std::string OldPrefix, std::string NewPrefix, in WriteIndexesThinBackend() argument 1593 OldPrefix(OldPrefix), NewPrefix(NewPrefix), in WriteIndexesThinBackend() 1605 getThinLTOOutputFile(ModulePath, OldPrefix, NewPrefix); in start() 1609 NativeObjectPrefix.empty() ? NewPrefix : NativeObjectPrefix; in start() 1632 std::string OldPrefix, std::string NewPrefix, in createWriteIndexesThinBackend() argument 1641 NewPrefix, NativeObjectPrefix, ShouldEmitImportsFiles, in createWriteIndexesThinBackend()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/LTO/ |
| H A D | LTO.h | 82 StringRef NewPrefix); 232 std::string NewPrefix,
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Path.cpp | 521 StringRef NewPrefix, Style style) { in replace_path_prefix() argument 522 if (OldPrefix.empty() && NewPrefix.empty()) in replace_path_prefix() 530 if (OldPrefix.size() == NewPrefix.size()) { in replace_path_prefix() 531 llvm::copy(NewPrefix, Path.begin()); in replace_path_prefix() 537 (Twine(NewPrefix) + RelPath).toVector(NewPath); in replace_path_prefix()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Path.h | 195 StringRef NewPrefix,
|