/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SDNodeDbgValue.h | 157 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 D | Checkers.td | 210 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 D | CheckerBase.td | 113 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 D | AMDGPUSplitModule.cpp | 372 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 D | DependencyGraph.cpp | 36 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 D | DependencyFile.cpp | 191 Dependencies.push_back(std::string(Filename)); in addDependency()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | ObjectLinkingLayer.cpp | 541 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 D | Core.cpp | 1195 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 D | RTDyldObjectLinkingLayer.cpp | 370 SDG.Dependencies = std::move(*Deps); in onObjEmit()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | GlobalModuleIndex.cpp | 216 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 D | DAGDeltaAlgorithm.cpp | 138 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 D | README | 11 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 D | BlockCoverageInference.cpp | 67 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 D | TGLexer.h | 210 DependenciesSetTy Dependencies; 220 return Dependencies; in getDependencies()
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/ |
H A D | CheckerRegistryData.h | 113 ConstCheckerInfoList Dependencies; member 209 llvm::SmallVector<std::pair<StringRef, StringRef>, 0> Dependencies; member
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | DAGDeltaAlgorithm.h | 65 const std::vector<edge_ty> &Dependencies);
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
H A D | DWARFLinkerCompileUnit.cpp | 92 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 D | INSTALL | 4 Dependencies:
|
/freebsd/contrib/capsicum-test/ |
H A D | README.md | 40 ## Other Dependencies
|
/freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
H A D | Orc.h | 189 LLVMOrcCDependenceMapPairs Dependencies; member
|
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
H A D | OMPIRBuilder.cpp | 1717 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 D | README.adoc | 45 === Dependencies subsection
|
/freebsd/contrib/ntp/scripts/update-leap/ |
H A D | update-leap.in | 464 External Dependencies
|
/freebsd/crypto/openssh/ |
H A D | README.md | 30 ### Dependencies subsection
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
H A D | OMPIRBuilder.h | 1229 SmallVector<DependData> Dependencies = {}); 2343 SmallVector<OpenMPIRBuilder::DependData> &Dependencies, bool HasNoWait); 2839 SmallVector<DependData> Dependencies = {});
|