Home
last modified time | relevance | path

Searched refs:maxDepth (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Analysis/AliasAnalysis/
H A DLocalAliasAnalysis.cpp28 static void collectUnderlyingAddressValues(Value value, unsigned maxDepth,
39 unsigned maxDepth, in collectUnderlyingAddressValues() argument
100 maxDepth, visited, output); in collectUnderlyingAddressValues()
120 return collectUnderlyingAddressValues(view.getViewSource(), maxDepth, in collectUnderlyingAddressValues()
158 collectUnderlyingAddressValues(operand, maxDepth, visited, output); in collectUnderlyingAddressValues()
168 maxDepth, visited, output); in collectUnderlyingAddressValues()
176 static void collectUnderlyingAddressValues(Value value, unsigned maxDepth, in collectUnderlyingAddressValues() argument
182 if (maxDepth == 0) { in collectUnderlyingAddressValues()
186 --maxDepth; in collectUnderlyingAddressValues()
189 return collectUnderlyingAddressValues(arg, maxDepth, visited, output); in collectUnderlyingAddressValues()
[all …]
/llvm-project-15.0.7/clang/bindings/python/examples/cindex/
H A Dcindex-dump.py39 if opts.maxDepth is not None and depth >= opts.maxDepth:
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp1951 SUnit *maxDepth = nullptr; in computeNodeOrder() local
1953 if (maxDepth == nullptr || getDepth(I) > getDepth(maxDepth)) in computeNodeOrder()
1954 maxDepth = I; in computeNodeOrder()
1957 maxDepth = I; in computeNodeOrder()
1960 getMOV(I) < getMOV(maxDepth)) in computeNodeOrder()
1961 maxDepth = I; in computeNodeOrder()
1963 NodeOrder.insert(maxDepth); in computeNodeOrder()
1965 R.remove(maxDepth); in computeNodeOrder()
1966 if (Nodes.isExceedSU(maxDepth)) { in computeNodeOrder()
1972 for (const auto &I : maxDepth->Preds) { in computeNodeOrder()
[all …]