Home
last modified time | relevance | path

Searched refs:MaxDepth (Results 1 – 25 of 39) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DLongestCommonSequence.h42 MaxDepth = Size1 + Size2; in longestCommonSequence() local
43 auto Index = [&](int32_t I) { return I + MaxDepth; }; in longestCommonSequence()
45 if (MaxDepth == 0) in longestCommonSequence()
84 std::vector<int32_t> V(2 * MaxDepth + 1, -1); in longestCommonSequence()
88 for (int32_t Depth = 0; Depth <= MaxDepth; Depth++) { in longestCommonSequence()
/freebsd/sys/contrib/dev/acpica/components/utilities/
H A Dutcache.c179 UINT16 MaxDepth, in AcpiOsCreateCache() argument
206 Cache->MaxDepth = MaxDepth; in AcpiOsCreateCache()
335 if (Cache->CurrentDepth >= Cache->MaxDepth) in AcpiOsReleaseObject()
/freebsd/sys/contrib/dev/acpica/components/namespace/
H A Dnsdump.c794 UINT32 MaxDepth, in AcpiNsDumpObjects() argument
823 (void) AcpiNsWalkNamespace (Type, StartHandle, MaxDepth, in AcpiNsDumpObjects()
935 UINT32 MaxDepth, in AcpiNsDumpObjectPaths() argument
961 (void) AcpiNsWalkNamespace (Type, StartHandle, MaxDepth, in AcpiNsDumpObjectPaths()
967 (void) AcpiNsWalkNamespace (Type, StartHandle, MaxDepth, in AcpiNsDumpObjectPaths()
1026 UINT32 MaxDepth) in AcpiNsDumpTables() argument
1053 AcpiNsDumpObjects (ACPI_TYPE_ANY, ACPI_DISPLAY_OBJECTS, MaxDepth, in AcpiNsDumpTables()
H A Dnswalk.c301 UINT32 MaxDepth, in AcpiNsWalkNamespace() argument
447 (Level < MaxDepth) && in AcpiNsWalkNamespace()
H A Dnsxfeval.c751 UINT32 MaxDepth, in AcpiWalkNamespace() argument
766 (!MaxDepth) || in AcpiWalkNamespace()
809 Status = AcpiNsWalkNamespace (Type, StartObject, MaxDepth, in AcpiWalkNamespace()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h486 unsigned MaxDepth = 0; variable
584 MaxDepth = std::max(MaxDepth, SSD->getDepth(SU)); in computeNodeSetInfo()
590 unsigned getMaxDepth() { return MaxDepth; } in getMaxDepth()
597 MaxDepth = 0; in clear()
613 return MaxDepth > RHS.MaxDepth;
621 MaxDepth == RHS.MaxDepth;
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DSignals.h83 template <unsigned long MaxDepth>
84 int getStackTrace(std::array<void *, MaxDepth> &StackTrace);
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DGISelValueTracking.h39 unsigned MaxDepth; variable
62 GISelValueTracking(MachineFunction &MF, unsigned MaxDepth = 6);
141 unsigned getMaxDepth() const { return MaxDepth; } in getMaxDepth()
/freebsd/sys/contrib/dev/acpica/components/debugger/
H A Ddbstats.c235 if (List->MaxDepth > 0) in AcpiDbListInfo()
241 List->MaxDepth, in AcpiDbListInfo()
242 List->MaxDepth - List->CurrentDepth, in AcpiDbListInfo()
247 if (List->MaxDepth > 0) in AcpiDbListInfo()
H A Ddbnames.c354 UINT32 MaxDepth = ACPI_UINT32_MAX; in AcpiDbDumpNamespace() local
371 MaxDepth = strtoul (DepthArg, NULL, 0); in AcpiDbDumpNamespace()
391 AcpiNsDumpObjects (ACPI_TYPE_ANY, ACPI_DISPLAY_SUMMARY, MaxDepth, in AcpiDbDumpNamespace()
447 UINT32 MaxDepth = ACPI_UINT32_MAX; in AcpiDbDumpNamespaceByOwner() local
457 MaxDepth = strtoul (DepthArg, NULL, 0); in AcpiDbDumpNamespaceByOwner()
466 AcpiNsDumpObjects (ACPI_TYPE_ANY, ACPI_DISPLAY_SUMMARY, MaxDepth, in AcpiDbDumpNamespaceByOwner()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLoads.cpp74 unsigned MaxDepth) { in isDereferenceableAndAlignedPointer() argument
78 if (MaxDepth-- == 0) in isDereferenceableAndAlignedPointer()
108 CtxI, AC, DT, TLI, Visited, MaxDepth); in isDereferenceableAndAlignedPointer()
116 Visited, MaxDepth); in isDereferenceableAndAlignedPointer()
123 Visited, MaxDepth) && in isDereferenceableAndAlignedPointer()
126 Visited, MaxDepth); in isDereferenceableAndAlignedPointer()
165 AC, DT, TLI, Visited, MaxDepth); in isDereferenceableAndAlignedPointer()
199 TLI, Visited, MaxDepth); in isDereferenceableAndAlignedPointer()
204 Visited, MaxDepth); in isDereferenceableAndAlignedPointer()
/freebsd/sys/contrib/dev/acpica/include/
H A Dacnamesp.h236 UINT32 MaxDepth,
372 UINT32 MaxDepth);
402 UINT32 MaxDepth,
410 UINT32 MaxDepth,
H A Dacpiosxf.h388 UINT16 MaxDepth,
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp100 BoundNodesTreeBuilder *Builder, int MaxDepth, in MatchChildASTVisitor() argument
104 MaxDepth(MaxDepth), IgnoreImplicitChildren(IgnoreImplicitChildren), in MatchChildASTVisitor()
180 if (CurrentDepth == 0 || (CurrentDepth <= MaxDepth && MaxDepth < INT_MAX)) in TraverseStmt()
374 if (CurrentDepth == 0 || CurrentDepth > MaxDepth) { in match()
413 const int MaxDepth; member in clang::ast_matchers::internal::__anon17c865b50111::MatchChildASTVisitor
600 BoundNodesTreeBuilder *Builder, int MaxDepth, in memoizedMatchesRecursively() argument
604 return matchesRecursively(Node, Matcher, Builder, MaxDepth, Bind); in memoizedMatchesRecursively()
613 Key.Type = MaxDepth == 1 ? MatchType::Child : MatchType::Descendants; in memoizedMatchesRecursively()
623 matchesRecursively(Node, Matcher, &Result.Nodes, MaxDepth, Bind); in memoizedMatchesRecursively()
635 BoundNodesTreeBuilder *Builder, int MaxDepth, in matchesRecursively() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86CmovConversion.cpp441 for (DepthInfo &MaxDepth : LoopDepth) { in checkForProfitableCmovCandidates()
482 MaxDepth.Depth = std::max(MaxDepth.Depth, MIDepth); in checkForProfitableCmovCandidates()
483 MaxDepth.OptDepth = std::max(MaxDepth.OptDepth, MIDepthOpt); in checkForProfitableCmovCandidates()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugLoc.h32 static constexpr unsigned long MaxDepth = 16; member
34 SmallVector<std::pair<int, std::array<void *, MaxDepth>>, 0>;
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DWindowScheduler.cpp416 unsigned MaxDepth = 1; in getEstimatedII() local
418 MaxDepth = std::max(SU.getDepth() + SU.Latency, MaxDepth); in getEstimatedII()
419 return MaxDepth * WindowIICoeff; in getEstimatedII()
H A DEarlyIfConversion.cpp1018 unsigned MaxDepth = Slack + TailTrace.getInstrCycles(*PI.PHI).Depth; in shouldConvertIf() local
1023 if (CondDepth > MaxDepth) { in shouldConvertIf()
1024 unsigned Extra = CondDepth - MaxDepth; in shouldConvertIf()
1036 if (TDepth > MaxDepth) { in shouldConvertIf()
1037 unsigned Extra = TDepth - MaxDepth; in shouldConvertIf()
1049 if (FDepth > MaxDepth) { in shouldConvertIf()
1050 unsigned Extra = FDepth - MaxDepth; in shouldConvertIf()
H A DScheduleDAG.cpp330 unsigned MaxDepth = BestI->getSUnit()->getDepth(); in biasCriticalPath() local
333 if (I->getKind() == SDep::Data && I->getSUnit()->getDepth() > MaxDepth) { in biasCriticalPath()
334 MaxDepth = I->getSUnit()->getDepth(); in biasCriticalPath()
H A DMachineInstr.cpp1739 const MachineRegisterInfo &MRI, unsigned Depth, unsigned MaxDepth, in dumprImpl() argument
1741 if (Depth >= MaxDepth) in dumprImpl()
1759 NewMI->dumprImpl(MRI, Depth + 1, MaxDepth, AlreadySeenInstrs); in dumprImpl()
1764 unsigned MaxDepth) const { in dumpr()
1766 dumprImpl(MRI, 0, MaxDepth, AlreadySeenInstrs); in dumpr()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUSplitModule.cpp74 static cl::opt<unsigned> MaxDepth( variable
976 if (MaxDepth > 16) in RecursiveSearchSplitting()
978 Twine(MaxDepth) + " is too high!"); in RecursiveSearchSplitting()
1098 else if (Depth >= MaxDepth) { in pickPartition()
1161 assert(NumProposalsSubmitted <= (2u << MaxDepth) && in pickPartition()
H A DAMDGPULowerModuleLDSPass.cpp1441 MDNode *NoAlias, unsigned MaxDepth = 5) { in refineUsesAlignmentAndAA() argument
1442 if (!MaxDepth || (A == 1 && !AliasScope)) in refineUsesAlignmentAndAA()
1517 MaxDepth - 1); in refineUsesAlignmentAndAA()
1524 refineUsesAlignmentAndAA(I, A, DL, AliasScope, NoAlias, MaxDepth - 1); in refineUsesAlignmentAndAA()
H A DSIISelLowering.h541 unsigned MaxDepth = 5) const;
543 unsigned MaxDepth = 5) const;
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DGISelValueTracking.cpp51 GISelValueTracking::GISelValueTracking(MachineFunction &MF, unsigned MaxDepth) in GISelValueTracking() argument
53 DL(MF.getFunction().getDataLayout()), MaxDepth(MaxDepth) {} in GISelValueTracking()
2069 unsigned MaxDepth = in get() local
2071 Info = std::make_unique<GISelValueTracking>(MF, MaxDepth); in get()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowEnvironment.h674 bool canDescend(unsigned MaxDepth, const FunctionDecl *Callee) const;

12