Searched refs:Dependency (Results 1 - 15 of 15) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/plugins/CheckerDependencyHandling/
H A DCheckerDependencyHandling.cpp10 struct Dependency : public Checker<check::BeginFunction> { struct in namespace:__anon1653
20 registry.addChecker<Dependency>("example.Dependency", "", "");
24 registry.addDependency("example.DependendentChecker", "example.Dependency");
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistry.cpp191 // Dependency resolving.
266 for (const CheckerInfo *Dependency : Deps) {
267 if (!IsEnabled(Dependency))
271 if (!collectStrongDependencies(Dependency->Dependencies, Mgr, Ret,
274 Ret.insert(Dependency);
286 for (const CheckerInfo *Dependency : WeakDeps) {
289 collectWeakDependencies(Dependency->WeakDependencies, Mgr, Ret, IsEnabled);
291 if (IsEnabled(Dependency) &&
292 collectStrongDependencies(Dependency->Dependencies, Mgr, Ret,
294 Ret.insert(Dependency);
327 addDependency(StringRef FullName, StringRef Dependency) argument
331 addWeakDependency(StringRef FullName, StringRef Dependency) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Frontend/
H A DCheckerRegistry.h139 void addDependency(StringRef FullName, StringRef Dependency);
143 void addWeakDependency(StringRef FullName, StringRef Dependency);
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerRegistryData.cpp60 for (const CheckerInfo *Dependency : Dependencies) {
61 Out << " " << Dependency->FullName << '\n';
64 for (const CheckerInfo *Dependency : WeakDependencies) {
65 Out << " " << Dependency->FullName << '\n';
/freebsd-13-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangSACheckersEmitter.cpp272 for (const Record *Dependency :
278 OS.write_escaped(getCheckerFullName(Dependency)) << '\"';
297 for (const Record *Dependency :
303 OS.write_escaped(getCheckerFullName(Dependency)) << '\"';
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DBottleneckAnalysis.h43 /// Instruction Dependency Information
182 // Dependency edge descriptor.
185 struct Dependency { struct in struct:llvm::mca::DependencyEdge
190 Dependency Dep;
209 // performance (see field DependencyEdge::Dependency::Cost). In general, the
237 DependencyEdge::Dependency &&DE);
H A DBottleneckAnalysis.cpp154 const DependencyEdge::Dependency &DE = DepEdge.Dep;
327 FOS << "Dependency Information";
368 const DependencyEdge::Dependency &Dep = DE->Dep;
431 DependencyEdge::Dependency &&Dep) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp807 if (auto *Dependency = Count.dyn_cast<DIVariable *>())
808 Result.push_back(Dependency);
810 if (auto *Dependency = LB.dyn_cast<DIVariable *>())
811 Result.push_back(Dependency);
813 if (auto *Dependency = UB.dyn_cast<DIVariable *>())
814 Result.push_back(Dependency);
816 if (auto *Dependency = ST.dyn_cast<DIVariable *>())
817 Result.push_back(Dependency);
849 // Dependency is in a different lexical scope or a global.
874 for (auto *Dependency
[all...]
/freebsd-13-stable/contrib/sqlite3/
H A Ddepcomp41 depmode Dependency tracking mode.
45 depfile Dependency file to output.
/freebsd-13-stable/contrib/libevent/
H A Ddepcomp41 depmode Dependency tracking mode.
45 depfile Dependency file to output.
/freebsd-13-stable/contrib/file/
H A Ddepcomp41 depmode Dependency tracking mode.
45 depfile Dependency file to output.
/freebsd-13-stable/contrib/openpam/
H A Ddepcomp41 depmode Dependency tracking mode.
45 depfile Dependency file to output.
/freebsd-13-stable/contrib/ntp/sntp/libevent/build-aux/
H A Ddepcomp41 depmode Dependency tracking mode.
45 depfile Dependency file to output.
/freebsd-13-stable/contrib/openbsm/config/
H A Ddepcomp41 depmode Dependency tracking mode.
45 depfile Dependency file to output.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp752 Instruction *Dependency = Dep.getInst(); local
753 if (!hasAnalyzableMemoryWrite(Dependency, *TLI) ||
754 !isRemovable(Dependency))
758 GetUnderlyingObject(getStoredPointerOperand(Dependency), DL);
766 << *Dependency << '\n');
769 BasicBlock::iterator BBI(Dependency);
770 deleteDeadInstruction(Dependency, &BBI, *MD, *TLI, IOL,
775 // Inst's old Dependency is now deleted. Compute the next dependency,

Completed in 112 milliseconds