Lines Matching defs:depth
171 Dwarf_Addr addr, int depth)
176 print_expr (attr, &exprs[i], addr, depth);
193 print_expr (Dwarf_Attribute *attr, Dwarf_Op *expr, Dwarf_Addr addr, int depth)
196 if (depth++ > MAX_DEPTH)
197 error (EXIT_FAILURE, 0, "print_expr recursion depth exceeded");
280 print_expr_block (NULL, cfa_ops, cfa_nops, 0, depth);
349 print_expr_block (&call_attr, call_ops, call_len, addr, depth);
464 print_expr_block (&attrval, exprval, exprval_len, addr, depth);
504 print_expr_block (&attrval, exprval, exprval_len, addr, depth);
533 print_expr_block (attr, entry_ops, entry_len, addr, depth);
918 int depth;
925 int depth = ((struct attr_arg *) arg)->depth;
931 printf ("%*s%s (%s)", depth * 2, "",
966 printf ("%*s", depth * 2, "");
979 handle_die (Dwarf_Die *die, int depth, bool outer_has_frame_base,
983 if (depth > 0)
987 printf ("%*s[%" PRIx64 "] %s \"%s\"\n", depth * 2, "",
991 printf ("%*s[%" PRIx64 "] %s\n", depth * 2, "",
996 arg.depth = depth + 1;
1025 /* Handle children and siblings recursively depth first. */
1028 handle_die (&child, depth + 1, die_has_frame_base, die_entrypc);
1032 handle_die (&sibling, depth, outer_has_frame_base, outer_entrypc);