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

  /external/llvm/include/llvm/Transforms/Utils/
FunctionImportUtils.h 35 DenseSet<const GlobalValue *> *GlobalsToImport;
48 bool isPerformingImport() const { return GlobalsToImport != nullptr; }
75 DenseSet<const GlobalValue *> *GlobalsToImport = nullptr)
76 : M(M), ImportIndex(Index), GlobalsToImport(GlobalsToImport) {
81 if (!GlobalsToImport)
89 DenseSet<const GlobalValue *> *GlobalsToImport);
96 DenseSet<const GlobalValue *> *GlobalsToImport = nullptr);
  /external/llvm/include/llvm/Linker/
Linker.h 45 /// is passed. If \p GlobalsToImport is provided, only the globals that
50 DenseSet<const GlobalValue *> *GlobalsToImport = nullptr);
  /external/llvm/lib/Transforms/Utils/
FunctionImportUtils.cpp 24 const GlobalValue *SGV, DenseSet<const GlobalValue *> *GlobalsToImport) {
34 GO, GlobalsToImport);
37 if (GlobalsToImport->count(SGV))
48 GlobalsToImport);
240 DenseSet<const GlobalValue *> *GlobalsToImport) {
241 FunctionImportGlobalProcessing ThinLTOProcessing(M, Index, GlobalsToImport);
  /external/llvm/lib/Transforms/IPO/
FunctionImport.cpp 593 DenseSet<const GlobalValue *> GlobalsToImport;
613 GlobalsToImport.insert(&F);
626 GlobalsToImport.insert(&GV);
646 if (!GlobalsToImport.count(GO))
652 GlobalsToImport.insert(GO);
654 GlobalsToImport.insert(&GA);
659 if (renameModuleForThinLTO(*SrcModule, Index, &GlobalsToImport))
663 for (const auto *GV : GlobalsToImport)
673 if (TheLinker.linkInModule(std::move(SrcModule), Flags, &GlobalsToImport))
676 ImportedCount += GlobalsToImport.size()
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 41 DenseSet<const GlobalValue *> *GlobalsToImport;
113 bool isPerformingImport() const { return GlobalsToImport != nullptr; }
121 DenseSet<const GlobalValue *> *GlobalsToImport = nullptr)
123 GlobalsToImport(GlobalsToImport) {}
133 GlobalsToImport);
277 LinkFromSrc = GlobalsToImport->count(&Src);
605 DenseSet<const GlobalValue *> *GlobalsToImport) {
606 ModuleLinker ModLinker(Mover, std::move(Src), Flags, GlobalsToImport);
  /external/llvm/tools/llvm-link/
llvm-link.cpp 266 auto &GlobalsToImport = GlobalsToImportPerModule.second;
277 if (renameModuleForThinLTO(*SrcModule, *Index, &GlobalsToImport))
283 if (L.linkInModule(std::move(SrcModule), Flags, &GlobalsToImport))

Completed in 2288 milliseconds