Searched refs:MaxDepth (Results 1 - 7 of 7) sorted by relevance

/external/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp121 int MaxDepth,
128 MaxDepth(MaxDepth),
224 if (CurrentDepth < MaxDepth) {
241 if (CurrentDepth < MaxDepth) {
253 const int MaxDepth; member in class:clang::ast_matchers::internal::__anon3535::MatchChildASTVisitor
320 BoundNodesTreeBuilder *Builder, int MaxDepth,
331 MaxDepth, Traversal, Bind);
342 BoundNodesTreeBuilder *Builder, int MaxDepth,
345 &Matcher, this, Builder, MaxDepth, Traversa
118 MatchChildASTVisitor(const DynTypedMatcher *Matcher, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder, int MaxDepth, ASTMatchFinder::TraversalKind Traversal, ASTMatchFinder::BindKind Bind) argument
318 memoizedMatchesRecursively(const ast_type_traits::DynTypedNode &Node, const DynTypedMatcher &Matcher, BoundNodesTreeBuilder *Builder, int MaxDepth, TraversalKind Traversal, BindKind Bind) argument
340 matchesRecursively(const ast_type_traits::DynTypedNode &Node, const DynTypedMatcher &Matcher, BoundNodesTreeBuilder *Builder, int MaxDepth, TraversalKind Traversal, BindKind Bind) argument
[all...]
/external/llvm/lib/CodeGen/
H A DEarlyIfConversion.cpp720 unsigned MaxDepth = Slack + TailTrace.getInstrCycles(PI.PHI).Depth; local
725 if (CondDepth > MaxDepth) {
726 unsigned Extra = CondDepth - MaxDepth;
736 if (TDepth > MaxDepth) {
737 unsigned Extra = TDepth - MaxDepth;
747 if (FDepth > MaxDepth) {
748 unsigned Extra = FDepth - MaxDepth;
/external/clang/lib/AST/
H A DStmtDumper.cpp34 /// MaxDepth - When doing a normal dump (not dumpAll) we only want to dump
37 unsigned MaxDepth; member in class:__anon3523::StmtDumper
46 : SM(sm), OS(os), IndentLevel(0-1), MaxDepth(maxDepth) {
53 if (MaxDepth == 0) return;
/external/clang/lib/Parse/
H A DRAIIObjectsForParser.h374 enum { MaxDepth = 256 }; enumerator in enum:clang::BalancedDelimiterTracker::__anon139
410 if (getDepth() < MaxDepth) {
H A DParser.cpp1897 if (getDepth() < MaxDepth)
/external/llvm/lib/Analysis/
H A DValueTracking.cpp35 const unsigned MaxDepth = 6; variable
231 assert(Depth <= MaxDepth && "Limit Search Depth");
322 if (Depth == MaxDepth)
695 if (Depth < MaxDepth - 1 && !KnownZero && !KnownOne) {
711 MaxDepth-1);
820 if (Depth++ == MaxDepth)
874 if (Depth++ >= MaxDepth)
1179 const unsigned MaxDepth = 6; local
1182 assert(Depth <= MaxDepth && "Limit Search Depth");
1210 if (Depth == MaxDepth) retur
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp1382 size_t MaxDepth = Tree.lookup(*J); local
1386 MaxDepth << " and size " << Tree.size() << "\n");
1408 MaxDepth << " and size " << PrunedTree.size() <<
1410 if (MaxDepth >= Config.ReqChainDepth && EffSize > BestEffSize) {
1411 BestMaxDepth = MaxDepth;

Completed in 161 milliseconds