Searched refs:ValuesToLink (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Linker/
H A DIRMover.h66 /// 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,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Linker/
H A DLinkModules.cpp33 SetVector<GlobalValue *> ValuesToLink; member in class:__anon3710::ModuleLinker
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(),
H A DIRMover.cpp407 DenseSet<GlobalValue *> ValuesToLink; member in class:__anon3709::IRLinker
412 if (ValuesToLink.insert(GV).second)
525 ArrayRef<GlobalValue *> ValuesToLink,
536 for (GlobalValue *GV : ValuesToLink)
948 if (ValuesToLink.count(&SGV) || SGV.hasLocalLinkage())
1585 std::unique_ptr<Module> Src, ArrayRef<GlobalValue *> ValuesToLink,
1589 std::move(Src), ValuesToLink, std::move(AddLazyFor),
523 IRLinker(Module &DstM, MDMapT &SharedMDs, IRMover::IdentifiedStructTypeSet &Set, std::unique_ptr<Module> SrcM, ArrayRef<GlobalValue *> ValuesToLink, std::function<void(GlobalValue &, IRMover::ValueAdder)> AddLazyFor, bool IsPerformingImport) argument
1584 move( std::unique_ptr<Module> Src, ArrayRef<GlobalValue *> ValuesToLink, std::function<void(GlobalValue &, ValueAdder Add)> AddLazyFor, bool IsPerformingImport) argument

Completed in 107 milliseconds