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

/haiku-buildtools/gcc/libsanitizer/sanitizer_common/
H A Dsanitizer_stacktrace_libcdep.cc54 void BufferedStackTrace::Unwind(uptr max_depth, uptr pc, uptr bp, void *context, argument
57 top_frame_bp = (max_depth > 0) ? bp : 0;
58 // Avoid doing any work for small max_depth.
59 if (max_depth == 0) {
63 if (max_depth == 1) {
70 SlowUnwindStackWithContext(pc, context, max_depth);
72 SlowUnwindStack(pc, max_depth);
74 FastUnwindStack(pc, bp, stack_top, stack_bottom, max_depth);
H A Dsanitizer_unwind_posix_libcdep.cc41 backtrace_frame_t *backtrace, uptr ignore_depth, uptr max_depth);
97 uptr max_depth; member in struct:__sanitizer::UnwindTraceArg
102 CHECK_LT(arg->stack->size, arg->max_depth);
105 if (arg->stack->size == arg->max_depth) return UNWIND_STOP;
109 void BufferedStackTrace::SlowUnwindStack(uptr pc, uptr max_depth) { argument
110 CHECK_GE(max_depth, 2);
112 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)};
124 uptr max_depth) {
125 CHECK_GE(max_depth, 2);
127 SlowUnwindStack(pc, max_depth);
123 SlowUnwindStackWithContext(uptr pc, void *context, uptr max_depth) argument
[all...]
H A Dsanitizer_stacktrace.h71 void Unwind(uptr max_depth, uptr pc, uptr bp, void *context, uptr stack_top,
76 uptr max_depth);
77 void SlowUnwindStack(uptr pc, uptr max_depth);
79 uptr max_depth);
H A Dsanitizer_stacktrace.cc76 uptr stack_bottom, uptr max_depth) {
77 CHECK_GE(max_depth, 2);
88 size < max_depth) {
75 FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom, uptr max_depth) argument
H A Dsanitizer_win.cc445 void BufferedStackTrace::SlowUnwindStack(uptr pc, uptr max_depth) { argument
446 CHECK_GE(max_depth, 2);
450 size = CaptureStackBackTrace(2, Min(max_depth, kStackTraceMax),
461 uptr max_depth) {
483 size < Min(max_depth, kStackTraceMax)) {
460 SlowUnwindStackWithContext(uptr pc, void *context, uptr max_depth) argument
/haiku-buildtools/gcc/libsanitizer/asan/
H A Dasan_stack.h26 void GetStackTraceWithPcBpAndContext(BufferedStackTrace *stack, uptr max_depth, argument
30 stack->Unwind(max_depth, pc, bp, context, 0, 0, fast);
43 stack->Unwind(max_depth, pc, bp, context, stack_top, stack_bottom, fast);
46 stack->Unwind(max_depth, pc, bp, context, 0, 0, false);
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr44063.c10 static __attribute__((always_inline)) inline int get_vlc2(GetBitContext *s, int16_t (*table)[2], int bits, int max_depth) { argument
18 if(max_depth > 1 && n < 0){
/haiku-buildtools/gcc/gcc/testsuite/jit.dg/
H A Dtest-fuzzer.c72 get_random_lvalue (function_fuzzer *ff, int max_depth);
75 get_random_rvalue (function_fuzzer *ff, int max_depth);
340 static gcc_jit_lvalue *get_random_lvalue (function_fuzzer *ff, int max_depth) argument
358 static gcc_jit_rvalue *get_random_rvalue (function_fuzzer *ff, int max_depth) argument
362 return gcc_jit_lvalue_as_rvalue (get_random_lvalue (ff, max_depth));
389 get_random_rvalue (ff, max_depth - 1));
397 get_random_rvalue (ff, max_depth - 1),
398 get_random_rvalue (ff, max_depth - 1));
401 get_random_lvalue (ff, max_depth - 1),
/haiku-buildtools/gcc/gcc/
H A Dcselib.c1426 int max_depth)
1472 result = cselib_expand_value_rtx_1 (p->loc, evd, max_depth - 1);
1485 result = cselib_expand_value_rtx_1 (reg_result, evd, max_depth - 1);
1523 cselib_expand_value_rtx (rtx orig, bitmap regs_active, int max_depth)
1532 return cselib_expand_value_rtx_1 (orig, &evd, max_depth);
1542 cselib_expand_value_rtx_cb (rtx orig, bitmap regs_active, int max_depth,
1552 return cselib_expand_value_rtx_1 (orig, &evd, max_depth);
1560 cselib_dummy_expand_value_rtx_cb (rtx orig, bitmap regs_active, int max_depth,
1570 return cselib_expand_value_rtx_1 (orig, &evd, max_depth) != NULL;
1578 int max_depth)
1424 expand_loc(struct elt_loc_list *p, struct expand_value_data *evd, int max_depth) argument
1522 cselib_expand_value_rtx(rtx orig, bitmap regs_active, int max_depth) argument
1541 cselib_expand_value_rtx_cb(rtx orig, bitmap regs_active, int max_depth, cselib_expand_callback cb, void *data) argument
1559 cselib_dummy_expand_value_rtx_cb(rtx orig, bitmap regs_active, int max_depth, cselib_expand_callback cb, void *data) argument
1576 cselib_expand_value_rtx_1(rtx orig, struct expand_value_data *evd, int max_depth) argument
[all...]
H A Dgenrecog.c210 static int max_depth; variable
717 if (pos->depth > max_depth)
718 max_depth = pos->depth;
2259 for (i = 1; i <= max_depth; i++)
H A Dipa-inline.c874 int max_depth = PARAM_VALUE (PARAM_MAX_INLINE_RECURSIVE_DEPTH_AUTO); local
877 max_depth = PARAM_VALUE (PARAM_MAX_INLINE_RECURSIVE_DEPTH);
889 else if (depth > max_depth)
913 We ensure that the frequency of recursing is at most 1 - (1/max_depth).
914 This way the expected number of recision is at most max_depth. */
917 int max_prob = CGRAPH_FREQ_BASE - ((CGRAPH_FREQ_BASE + max_depth - 1)
918 / max_depth);
H A Dvar-tracking.c8219 int max_depth, void *data);
8393 int max_depth ATTRIBUTE_UNUSED,
/haiku-buildtools/isl/
H A Disl_map_piplib.c269 int max_depth; local
291 max_depth = 0;
295 quast_count(q, &nexist, 0, &max_depth, &n_sol, &n_nosol);
312 keep_dim, nexist, keep, max_depth+2*nexist);
/haiku-buildtools/legacy/gcc/gcc/
H A Dgenrecog.c134 static int max_depth; variable
343 if (depth > max_depth)
344 max_depth = depth;
1065 for (i = 1; i < max_depth; i++)
1068 printf ("x%d ATTRIBUTE_UNUSED;\n", max_depth);
/haiku-buildtools/binutils/bfd/
H A Delf32-spu.c378 unsigned int max_depth; member in struct:call_info
3296 unsigned int max_depth = depth; local
3305 call->max_depth = depth + !call->is_pasted;
3308 if (!remove_cycles (call->fun, info, &call->max_depth))
3310 if (max_depth < call->max_depth)
3311 max_depth = call->max_depth;
3334 *(unsigned int *) param = max_depth;
3395 /* qsort predicate to sort calls by priority, max_depth the
[all...]

Completed in 148 milliseconds