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:__anon20571
297 /* before drd_post_thread_create() has filled in stack_max. */
299 <= DRD_(g_threadinfo)[tid].stack_max
300 || DRD_(g_threadinfo)[tid].stack_max == 0);
316 && a < DRD_(g_threadinfo)[DRD_(g_drd_running_tid)].stack_max);
332 && a < DRD_(g_threadinfo)[i].stack_max)
drd_thread.c 198 DRD_(g_threadinfo)[i].stack_max = 0;
328 DRD_(g_threadinfo)[created].stack_max
331 = DRD_(g_threadinfo)[created].stack_max;
333 = DRD_(g_threadinfo)[created].stack_max;
335 = DRD_(g_threadinfo)[created].stack_max;
338 tl_assert(DRD_(g_threadinfo)[created].stack_max != 0);
419 * Any conflicting accesses in the range stack_startup..stack_max will be
428 tl_assert(stack_startup <= DRD_(g_threadinfo)[tid].stack_max);
456 return DRD_(g_threadinfo)[tid].stack_max;
540 DRD_(g_threadinfo)[tid].stack_min = DRD_(g_threadinfo)[tid].stack_max;
    [all...]
drd_main.c 654 Addr stack_max; local
661 stack_max = DRD_(thread_get_stack_max)(drd_created);
662 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 3630 Addr stack_min, stack_max; local
    [all...]

Completed in 170 milliseconds