Home
last modified time | relevance | path

Searched refs:Dependencies (Results 1 – 25 of 56) sorted by relevance

123

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h157 ArrayRef<SDDbgOperand> L, ArrayRef<SDNode *> Dependencies, in SDDbgValue() argument
161 NumAdditionalDependencies(Dependencies.size()), in SDDbgValue()
162 AdditionalDependencies(Alloc.Allocate<SDNode *>(Dependencies.size())), in SDDbgValue()
168 std::copy(Dependencies.begin(), Dependencies.end(), AdditionalDependencies); in SDDbgValue()
195 SmallVector<SDNode *> Dependencies; in getSDNodes() local
198 Dependencies.push_back(DbgOp.getSDNode()); in getSDNodes()
200 Dependencies.push_back(Node); in getSDNodes()
201 return Dependencies; in getSDNodes()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/
H A DCheckers.td210 Dependencies<[CallAndMessageModeling]>;
247 Dependencies<[StackAddrEscapeBase]>,
311 Dependencies<[StackAddrEscapeBase]>,
321 Dependencies<[PthreadLockBase]>,
344 Dependencies<[NullabilityBase]>,
350 Dependencies<[NullabilityBase]>,
355 Dependencies<[NullabilityBase]>,
361 Dependencies<[NullabilityBase]>,
367 Dependencies<[NullabilityBase]>,
471 Dependencies<[CStringModeling]>,
[all …]
H A DCheckerBase.td113 list<Checker> Dependencies;
129 /// enabled if none of its dependencies (transitively) is disabled. Dependencies
137 /// Dependencies<[MallocBase]>;
138 class Dependencies<list<Checker> Deps = []> {
139 list<Checker> Dependencies = Deps;
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUSplitModule.cpp372 addAllDependencies(SML, CG, *Fn, Dependencies, in FunctionWithDependencies()
375 for (const auto *Dep : Dependencies) { in FunctionWithDependencies()
386 DenseSet<const Function *> Dependencies; member
397 return TotalCost > Threshold && !Dependencies.empty(); in isLarge()
491 FnsInPart.insert(FWD.Dependencies.begin(), FWD.Dependencies.end()); in doPartitioning()
494 if (!FWD.Dependencies.empty()) { in doPartitioning()
495 SML << FWD.Dependencies.size() << " dependencies added\n"; in doPartitioning()
551 float Overlap = calculateOverlap(CurFn.Dependencies, Fns); in doPartitioning()
677 SeenFunctions.insert(FWD.Dependencies.begin(), FWD.Dependencies.end()); in splitAMDGPUModule()
708 SortedDepNames.reserve(FWD.Dependencies.size()); in splitAMDGPUModule()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DDependencyGraph.cpp36 DependencyMap Dependencies; member in __anoncc7c34da0111::DependencyGraphCallback
87 Dependencies[*FromFile].push_back(*File); in InclusionDirective()
105 Dependencies[*FromFile].push_back(*File); in EmbedDirective()
142 for (DependencyMap::iterator F = Dependencies.begin(), in OutputGraphFile()
143 FEnd = Dependencies.end(); in OutputGraphFile()
H A DDependencyFile.cpp191 Dependencies.push_back(std::string(Filename)); in addDependency()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DObjectLinkingLayer.cpp541 SDG.Dependencies[&TargetJD] = BDeps.Internal; in registerDependencies()
545 SDG.Dependencies[DepSrcItr->second].insert(Dep); in registerDependencies()
564 SynthSDG.Dependencies[&TargetJD].insert(S); in registerDependencies()
569 SynthSDG.Dependencies[DepSrcItr->second].insert(S); in registerDependencies()
577 .Dependencies[SymbolSourceJDs[NonOwningSymbolStringPtr( in registerDependencies()
581 SynthSDG.Dependencies[&TargetJD].insert(SymName); in registerDependencies()
591 if (!SDG.Dependencies.empty()) in registerDependencies()
594 if (!SynthSDG.Symbols.empty() && !SynthSDG.Dependencies.empty()) in registerDependencies()
603 DenseSet<Block *> Dependencies; in computeBlockNonLocalDeps() member
624 BI.Dependencies.insert(&TgtB); in computeBlockNonLocalDeps()
[all …]
H A DCore.cpp1195 if (!KV.second.DefiningEDU->Dependencies.empty()) { in dump()
1196 for (auto &[DepJD, Deps] : KV.second.DefiningEDU->Dependencies) { in dump()
2138 for (auto &[DepJD, Symbols] : EDU->Dependencies) { in verifySessionState()
2937 auto &UserEDUDepsForJD = UserEDU->Dependencies[DepJD]; in propagateExtraEmitDeps()
2978 if (DG.Dependencies.empty()) in simplifyDepGroups()
3035 if (DG.Dependencies.empty()) in simplifyDepGroups()
3044 for (auto &[DepJD, Deps] : DG.Dependencies) { in simplifyDepGroups()
3072 EDU.Dependencies[DepJD] = std::move(NewDepsForJD); in simplifyDepGroups()
3081 if (!EDU->Dependencies.empty()) { in simplifyDepGroups()
3086 EDUInfo.NewDeps = EDU->Dependencies; in simplifyDepGroups()
[all …]
H A DRTDyldObjectLinkingLayer.cpp370 SDG.Dependencies = std::move(*Deps); in onObjEmit()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp216 Modules[ID].Dependencies.insert(Modules[ID].Dependencies.end(), in GlobalModuleIndex()
285 SmallVectorImpl<ModuleFile *> &Dependencies) { in getModuleDependencies() argument
293 Dependencies.clear(); in getModuleDependencies()
294 ArrayRef<unsigned> StoredDependencies = Modules[Known->second].Dependencies; in getModuleDependencies()
297 Dependencies.push_back(MF); in getModuleDependencies()
389 SmallVector<unsigned, 4> Dependencies; member
672 getModuleFileInfo(File).Dependencies.push_back(DependsOnID); in loadModuleFile()
803 Record.push_back(M->second.Dependencies.size()); in writeIndex()
804 Record.append(M->second.Dependencies.begin(), M->second.Dependencies.end()); in writeIndex()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDAGDeltaAlgorithm.cpp138 const std::vector<edge_ty> &Dependencies);
180 const std::vector<edge_ty> &Dependencies) in DAGDeltaAlgorithmImpl() argument
186 for (const edge_ty &Dep : Dependencies) { in DAGDeltaAlgorithmImpl()
350 const std::vector<edge_ty> &Dependencies) { in Run() argument
351 return DAGDeltaAlgorithmImpl(*this, Changes, Dependencies).Run(); in Run()
/freebsd/tools/kerneldoc/subsys/
H A DREADME11 The file 'Dependencies' contains dependencies for the .tag files.
14 the necessary dependencies to the file 'Dependencies'.
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DBlockCoverageInference.cpp67 BlockSet Dependencies; in getDependencies() local
70 Dependencies.set_union(It->second); in getDependencies()
73 Dependencies.set_union(It->second); in getDependencies()
74 return Dependencies; in getDependencies()
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DTGLexer.h210 DependenciesSetTy Dependencies;
220 return Dependencies; in getDependencies()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerRegistryData.h113 ConstCheckerInfoList Dependencies; member
209 llvm::SmallVector<std::pair<StringRef, StringRef>, 0> Dependencies; member
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDAGDeltaAlgorithm.h65 const std::vector<edge_ty> &Dependencies);
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerCompileUnit.cpp92 Dependencies.reset(nullptr); in maybeResetToLoadedStage()
247 Dependencies.reset(nullptr); in cleanupDataAfterClonning()
1834 if (!Dependencies) in resolveDependenciesAndMarkLiveness()
1835 Dependencies.reset(new DependencyTracker(*this)); in resolveDependenciesAndMarkLiveness()
1837 return Dependencies->resolveDependenciesAndMarkLiveness( in resolveDependenciesAndMarkLiveness()
1842 assert(Dependencies.get()); in updateDependenciesCompleteness()
1844 return Dependencies->updateDependenciesCompleteness(); in updateDependenciesCompleteness()
1848 assert(Dependencies.get()); in verifyDependencies()
1850 Dependencies->verifyKeepChain(); in verifyDependencies()
/freebsd/contrib/unifdef/
H A DINSTALL4 Dependencies:
/freebsd/contrib/capsicum-test/
H A DREADME.md40 ## Other Dependencies
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DOrc.h189 LLVMOrcCDependenceMapPairs Dependencies; member
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp1717 SmallVectorImpl<OpenMPIRBuilder::DependData> &Dependencies) { in emitTaskDependencies() argument
1719 if (Dependencies.empty()) in emitTaskDependencies()
1747 Type *DepArrayTy = ArrayType::get(DependInfo, Dependencies.size()); in emitTaskDependencies()
1750 for (const auto &[DepIdx, Dep] : enumerate(Dependencies)) { in emitTaskDependencies()
1782 SmallVector<DependData> Dependencies) { in createTask() argument
1826 OI.PostOutlineCB = [this, Ident, Tied, Final, IfCondition, Dependencies, in createTask()
1902 if (Dependencies.size()) { in createTask()
1907 Type *DepArrayTy = ArrayType::get(DependInfo, Dependencies.size()); in createTask()
1911 for (const DependData &Dep : Dependencies) { in createTask()
1971 if (Dependencies.size()) { in createTask()
[all …]
/freebsd/contrib/libfido2/
H A DREADME.adoc45 === Dependencies subsection
/freebsd/contrib/ntp/scripts/update-leap/
H A Dupdate-leap.in464 External Dependencies
/freebsd/crypto/openssh/
H A DREADME.md30 ### Dependencies subsection
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h1229 SmallVector<DependData> Dependencies = {});
2343 SmallVector<OpenMPIRBuilder::DependData> &Dependencies, bool HasNoWait);
2839 SmallVector<DependData> Dependencies = {});

123