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

  /external/valgrind/drd/
drd_thread.h 74 Addr stack_min; /**< Current stack pointer. */ member in struct:__anon20571
287 void DRD_(thread_set_stack_min)(const DrdThreadId tid, const Addr stack_min)
294 DRD_(g_threadinfo)[tid].stack_min = stack_min;
298 tl_assert(DRD_(g_threadinfo)[tid].stack_min
302 if (UNLIKELY(stack_min < DRD_(g_threadinfo)[tid].stack_min_min))
304 DRD_(g_threadinfo)[tid].stack_min_min = stack_min;
315 return (DRD_(g_threadinfo)[DRD_(g_drd_running_tid)].stack_min <= a
331 && DRD_(g_threadinfo)[i].stack_min <= a
drd_thread.c 195 DRD_(g_threadinfo)[i].stack_min = 0;
332 DRD_(g_threadinfo)[created].stack_min
427 tl_assert(DRD_(g_threadinfo)[tid].stack_min <= stack_startup);
437 return DRD_(g_threadinfo)[tid].stack_min;
540 DRD_(g_threadinfo)[tid].stack_min = DRD_(g_threadinfo)[tid].stack_max;
    [all...]
  /external/valgrind/include/
pub_tool_machine.h 151 // stack_min is the address of the lowest stack byte,
153 // In other words, the live stack is [stack_min, stack_max].
155 /*OUT*/Addr* stack_min,
  /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) {
172 && sps[f] >= stack_min - VG_STACK_REDZONE_SZB) {
m_machine.c 436 /*OUT*/Addr* stack_min,
445 *stack_min = VG_(get_SP)(i);
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
debuginfo.c 3630 Addr stack_min, stack_max; local
    [all...]

Completed in 6369 milliseconds