Home | History | Annotate | Download | only in msan

Lines Matching refs:stack

110 // Array of stack origins.
167 void GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp,
172 return stack->SlowUnwindStack(pc, max_s);
177 stack->size = 0;
178 stack->trace[0] = pc;
179 stack->max_size = max_s;
180 stack->FastUnwindStack(pc, bp, stack_top, stack_bottom);
201 StackTrace stack;
202 GetStackTrace(&stack, kStackTraceMax, pc, bp, flags()->fast_unwind_on_fatal);
206 ReportUMR(&stack, report_origin);
250 Printf("Unlimited stack, doing reexec\n");
251 // A reasonably large stack size. It is bigger than the usual 8Mb, because,
252 // well, the program could have been run with unlimited stack for a reason.
300 StackTrace stack;
301 GetStackTrace(&stack, kStackTraceMax, pc, bp,
303 ReportExpectedUMRNotFound(&stack);