HomeSort by relevance Sort by last modified time
    Searched refs:linkModules (Results 1 - 21 of 21) sorted by null

  /external/llvm/include/llvm/Linker/
Linker.h 52 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Linker/
Linker.h 51 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Linker/
Linker.h 51 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Linker/
Linker.h 51 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Linker/
Linker.h 51 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Linker/
Linker.h 51 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Linker/
Linker.h 51 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Linker/
Linker.h 51 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Linker/
Linker.h 51 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Linker/
Linker.h 51 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Linker/
Linker.h 51 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Linker/
Linker.h 51 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Linker/
Linker.h 51 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Linker/
Linker.h 51 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Linker/
Linker.h 51 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
  /external/llvm/unittests/Linker/
LinkModulesTest.cpp 102 Linker::linkModules(*LinkedModule, std::move(M));
176 Linker::linkModules(*EmptyM, std::move(InternalM));
183 Linker::linkModules(*InternalM, std::move(EmptyM));
199 Linker::linkModules(*M1, std::move(M2));
284 Linker::linkModules(*Dst, std::move(Src));
353 bool Failed = Linker::linkModules(*Foo, std::move(Bar));
  /external/llvm/tools/bugpoint/
BugDriver.cpp 135 if (Linker::linkModules(*Program, std::move(M)))
Miscompilation.cpp 225 if (Linker::linkModules(*M1, std::move(M2)))
391 if (Linker::linkModules(*ToNotOptimize,
419 if (Linker::linkModules(*ToNotOptimize, std::move(ToOptimizeLoopExtracted)))
587 if (Linker::linkModules(*ProgClone, std::move(Extracted)))
    [all...]
  /frameworks/compile/libbcc/lib/
Source.cpp 213 if (llvm::Linker::linkModules(*mModule, std::unique_ptr<llvm::Module>(&pSource.getModule())) != 0) {
  /external/llvm/lib/Linker/
LinkModules.cpp 1 //===- lib/Linker/LinkModules.cpp - Module Linker Implementation ----------===//
27 /// This is an implementation class for the LinkModules function, which is the
611 // LinkModules entrypoint.
619 bool Linker::linkModules(Module &Dest, std::unique_ptr<Module> Src,
632 return Linker::linkModules(*D, std::move(M));
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 57 LinkModules;
70 const SmallVectorImpl<std::pair<unsigned, llvm::Module *>> &LinkModules,
79 for (auto &I : LinkModules)
80 this->LinkModules.push_back(
88 for (auto &I : LinkModules)
169 for (auto &I : LinkModules) {
172 if (Linker::linkModules(*getModule(), std::move(I.second), LinkFlags))
678 if (!LinkModules.empty())
722 if (LinkModules.empty())
730 LinkModules.clear()
    [all...]

Completed in 320 milliseconds