HomeSort by: relevance | last modified time | path
    Searched refs:OldPrefix (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/gold/
gold-plugin.cpp 182 // If specified, expects a string of the form "oldprefix:newprefix", and
185 // bitcode file's path prefix matching oldprefix with newprefix.
851 /// Parse the thinlto_prefix_replace option into the \p OldPrefix and
853 static void getThinLTOOldAndNewPrefix(std::string &OldPrefix,
858 OldPrefix = std::string(Split.first);
895 std::string OldPrefix, NewPrefix;
896 getThinLTOOldAndNewPrefix(OldPrefix, NewPrefix);
897 Backend = createWriteIndexesThinBackend(OldPrefix, NewPrefix,
980 const std::string &OldPrefix,
984 getThinLTOOutputFile(ModulePath, OldPrefix, NewPrefix)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-lto/
llvm-lto.cpp 135 "created. Expects 'oldprefix;newprefix' and if path "
136 "prefix of output file is oldprefix it will be "
457 /// Parse the thinlto_prefix_replace option into the \p OldPrefix and
459 static void getThinLTOOldAndNewPrefix(std::string &OldPrefix,
465 OldPrefix = Split.first.str();
470 /// prefix matching \p OldPrefix with \p NewPrefix. Also, create the
473 const std::string &OldPrefix,
475 if (OldPrefix.empty() && NewPrefix.empty())
478 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix);
628 std::string OldPrefix, NewPrefix
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/LTO/
LTO.h 78 /// prefix matching \p OldPrefix with \p NewPrefix. Also, create the
81 const std::string &OldPrefix,
238 /// prefix of OldPrefix; if so, it replaces that prefix with NewPrefix. It then
247 ThinBackend createWriteIndexesThinBackend(std::string OldPrefix,
  /src/external/apache2/llvm/dist/llvm/lib/LTO/
LTO.cpp 1306 // prefix matching \p OldPrefix with \p NewPrefix. Also, create the
1309 const std::string &OldPrefix,
1311 if (OldPrefix.empty() && NewPrefix.empty())
1314 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix);
1327 std::string OldPrefix, NewPrefix;
1336 std::string OldPrefix, std::string NewPrefix, bool ShouldEmitImportsFiles,
1339 OldPrefix(OldPrefix), NewPrefix(NewPrefix),
1351 getThinLTOOutputFile(std::string(ModulePath), OldPrefix, NewPrefix);
1388 std::string OldPrefix, std::string NewPrefix, bool ShouldEmitImportsFiles
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Path.h 166 /// @param Path If \a Path starts with \a OldPrefix modify to instead
168 /// @param OldPrefix The path prefix to strip from \a Path.
172 /// @result true if \a Path begins with OldPrefix
173 bool replace_path_prefix(SmallVectorImpl<char> &Path, StringRef OldPrefix,
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Path.cpp 516 bool replace_path_prefix(SmallVectorImpl<char> &Path, StringRef OldPrefix,
518 if (OldPrefix.empty() && NewPrefix.empty())
522 if (!starts_with(OrigPath, OldPrefix, style))
526 if (OldPrefix.size() == NewPrefix.size()) {
531 StringRef RelPath = OrigPath.substr(OldPrefix.size());
  /src/external/apache2/llvm/dist/llvm/lib/IR/
AutoUpgrade.cpp 4400 StringRef OldPrefix = "llvm.vectorizer.";
4401 assert(OldTag.startswith(OldPrefix) && "Expected old prefix");
4407 C, (Twine("llvm.loop.vectorize.") + OldTag.drop_front(OldPrefix.size()))

Completed in 24 milliseconds