Searched defs:stack_max (Results 1 - 5 of 5) sorted by relevance

/external/valgrind/main/drd/
H A Ddrd_thread.h76 Addr stack_max; /**< Top of stack. */ member in struct:__anon28393
296 /* before drd_post_thread_create() has filled in stack_max. */
298 < DRD_(g_threadinfo)[tid].stack_max
299 || DRD_(g_threadinfo)[tid].stack_max == 0);
315 && a < DRD_(g_threadinfo)[DRD_(g_drd_running_tid)].stack_max);
331 && a < DRD_(g_threadinfo)[i].stack_max)
H A Ddrd_main.c627 Addr stack_max; local
634 stack_max = DRD_(thread_get_stack_max)(drd_created);
635 drd_start_using_mem_stack2(drd_created, stack_max, 0);
/external/valgrind/main/coregrind/
H A Dm_machine.c354 /*OUT*/Addr* stack_max)
363 *stack_max = VG_(threads)[i].client_stack_highest_word;
352 thread_stack_next( ThreadId* tid, Addr* stack_min, Addr* stack_max) argument
/external/valgrind/main/memcheck/
H A Dmc_errors.c1105 Addr stack_min, stack_max; local
1201 while ( VG_(thread_stack_next)(&tid, &stack_min, &stack_max) ) {
1202 if (stack_min - VG_STACK_REDZONE_SZB <= a && a <= stack_max) {
/external/valgrind/main/coregrind/m_debuginfo/
H A Ddebuginfo.c3177 Addr stack_min, stack_max; local
3273 while ( VG_(thread_stack_next)(&tid, &stack_min, &stack_max) ) {
3274 if (stack_min >= stack_max)
3291 while ( VG_(thread_stack_next)(&tid, &stack_min, &stack_max) ) {
3292 if (stack_min >= stack_max)
3295 && data_addr <= stack_max) {

Completed in 559 milliseconds