HomeSort by relevance Sort by last modified time
    Searched refs:stack_max (Results 1 - 7 of 7) sorted by null

  /external/valgrind/drd/
drd_thread.h 76 Addr stack_max; /**< Top of stack. */ member in struct:__anon35882
312 /* before drd_post_thread_create() has filled in stack_max. */
314 <= DRD_(g_threadinfo)[tid].stack_max
315 || DRD_(g_threadinfo)[tid].stack_max == 0);
331 && a < DRD_(g_threadinfo)[DRD_(g_drd_running_tid)].stack_max);
347 && a < DRD_(g_threadinfo)[i].stack_max)
drd_thread.c 203 DRD_(g_threadinfo)[i].stack_max = 0;
348 DRD_(g_threadinfo)[created].stack_max
351 = DRD_(g_threadinfo)[created].stack_max;
353 = DRD_(g_threadinfo)[created].stack_max;
355 = DRD_(g_threadinfo)[created].stack_max;
358 tl_assert(DRD_(g_threadinfo)[created].stack_max != 0);
439 * Any conflicting accesses in the range stack_startup..stack_max will be
448 tl_assert(stack_startup <= DRD_(g_threadinfo)[tid].stack_max);
476 return DRD_(g_threadinfo)[tid].stack_max;
560 DRD_(g_threadinfo)[tid].stack_min = DRD_(g_threadinfo)[tid].stack_max;
    [all...]
drd_main.c 659 Addr stack_max; local
666 stack_max = DRD_(thread_get_stack_max)(drd_created);
667 drd_start_using_mem_stack2(drd_created, stack_max, 0);
    [all...]
  /external/valgrind/include/
pub_tool_machine.h 152 // stack_max is the address of the highest stack byte.
153 // In other words, the live stack is [stack_min, stack_max].
156 /*OUT*/Addr* stack_max );
  /external/valgrind/coregrind/
m_addrinfo.c 73 Addr stack_min, stack_max; local
76 while ( VG_(thread_stack_next)(&tid, &stack_min, &stack_max) ) {
77 if (stack_min <= end && end <= stack_max)
139 Addr stack_min, stack_max; local
141 while ( VG_(thread_stack_next)(&tid, &stack_min, &stack_max) ) {
142 if (stack_min - VG_STACK_REDZONE_SZB <= a && a <= stack_max) {
171 && sps[f+1] <= stack_max
m_machine.c 437 /*OUT*/Addr* stack_max)
446 *stack_max = VG_(threads)[i].client_stack_highest_byte;
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
debuginfo.c 3678 Addr stack_min, stack_max; local
    [all...]

Completed in 235 milliseconds