Home
last modified time | relevance | path

Searched refs:RefModuleUnit (Results 1 – 4 of 4) sorted by relevance

/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerImpl.h166 struct RefModuleUnit { struct
167 RefModuleUnit(DWARFFile &File, std::unique_ptr<CompileUnit> Unit);
168 RefModuleUnit(RefModuleUnit &&Other);
169 RefModuleUnit(const RefModuleUnit &) = delete;
174 using ModuleUnitListTy = SmallVector<RefModuleUnit>;
235 void addModulesCompileUnit(RefModuleUnit &&Unit);
H A DDWARFLinkerImpl.cpp49 DWARFLinkerImpl::LinkContext::RefModuleUnit::RefModuleUnit( in RefModuleUnit() function in DWARFLinkerImpl::LinkContext::RefModuleUnit
53 DWARFLinkerImpl::LinkContext::RefModuleUnit::RefModuleUnit( in RefModuleUnit() function in DWARFLinkerImpl::LinkContext::RefModuleUnit
54 LinkContext::RefModuleUnit &&Other) in RefModuleUnit()
58 LinkContext::RefModuleUnit &&Unit) { in addModulesCompileUnit()
439 ModulesCompileUnits.emplace_back(RefModuleUnit{*ErrOrObj, std::move(Unit)}); in loadClangModule()
457 parallelForEach(ModulesCompileUnits, [&](RefModuleUnit &RefModule) { in link()
1057 for (LinkContext::RefModuleUnit &ModuleUnit : Context->ModulesCompileUnits) in forEachObjectSectionsSet()
1080 for (LinkContext::RefModuleUnit &ModuleUnit : Context->ModulesCompileUnits) in forEachCompileAndTypeUnit()
1095 for (LinkContext::RefModuleUnit &ModuleUnit : Context->ModulesCompileUnits) in forEachCompileUnit()
/llvm-project/llvm/include/llvm/DWARFLinker/Classic/
H A DDWARFLinker.h401 struct RefModuleUnit { struct
402 RefModuleUnit(DWARFFile &File, std::unique_ptr<CompileUnit> Unit) in RefModuleUnit() argument
404 RefModuleUnit(RefModuleUnit &&Other) in RefModuleUnit() function
406 RefModuleUnit(const RefModuleUnit &) = delete;
411 using ModuleUnitListTy = std::vector<RefModuleUnit>; argument
497 Error cloneModuleUnit(LinkContext &Context, RefModuleUnit &Unit,
/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFLinker.cpp2603 Context.ModuleUnits.emplace_back(RefModuleUnit{*ErrOrObj, std::move(Unit)}); in cloneAllCompileUnits()
3031 Error DWARFLinker::cloneModuleUnit(LinkContext &Context, RefModuleUnit &Unit, in cloneModuleUnit()