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

  /src/external/apache2/llvm/dist/llvm/include/llvm/Linker/
IRMover.h 66 /// Move in the provide values in \p ValuesToLink from \p Src.
69 /// value is referenced by one of the ValuesToLink (transitively) but was
70 /// not present in ValuesToLink. The GlobalValue and a ValueAdder callback
72 /// if the GlobalValue needs to be added to the \p ValuesToLink and linked.
75 Error move(std::unique_ptr<Module> Src, ArrayRef<GlobalValue *> ValuesToLink,
  /src/external/apache2/llvm/dist/llvm/lib/Linker/
LinkModules.cpp 33 SetVector<GlobalValue *> ValuesToLink;
392 ValuesToLink.insert(&GV);
530 for (unsigned I = 0; I < ValuesToLink.size(); ++I) {
531 GlobalValue *GV = ValuesToLink[I];
541 ValuesToLink.insert(GV2);
546 for (GlobalValue *GV : ValuesToLink)
553 if (Error E = Mover.move(std::move(SrcM), ValuesToLink.getArrayRef(),
IRMover.cpp 398 DenseSet<GlobalValue *> ValuesToLink;
403 if (ValuesToLink.insert(GV).second)
524 ArrayRef<GlobalValue *> ValuesToLink,
535 for (GlobalValue *GV : ValuesToLink)
964 if (ValuesToLink.count(&SGV) || SGV.hasLocalLinkage())
1627 std::unique_ptr<Module> Src, ArrayRef<GlobalValue *> ValuesToLink,
1631 std::move(Src), ValuesToLink, std::move(AddLazyFor),

Completed in 34 milliseconds