Home
last modified time | relevance | path

Searched refs:stack_begin (Results 1 – 7 of 7) sorted by relevance

/external/compiler-rt/lib/lsan/
Dlsan_thread.cc61 uptr stack_begin, stack_end, member
68 stack_begin_ = args->stack_begin; in OnStarted()
89 GetThreadStackAndTls(tid == 0, &args.stack_begin, &stack_size, in ThreadStart()
91 args.stack_end = args.stack_begin + stack_size; in ThreadStart()
133 bool GetThreadRangesLocked(uptr os_id, uptr *stack_begin, uptr *stack_end, in GetThreadRangesLocked() argument
139 *stack_begin = context->stack_begin(); in GetThreadRangesLocked()
Dlsan_common.cc187 uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end; in ProcessThreads() local
188 bool thread_found = GetThreadRangesLocked(os_id, &stack_begin, &stack_end, in ProcessThreads()
203 sp = stack_begin; in ProcessThreads()
211 LOG_THREADS("Stack at %p-%p (SP = %p).\n", stack_begin, stack_end, sp); in ProcessThreads()
212 if (sp < stack_begin || sp >= stack_end) { in ProcessThreads()
219 stack_begin = sp; in ProcessThreads()
221 ScanRangeForPointers(stack_begin, stack_end, frontier, "STACK", in ProcessThreads()
Dlsan.h25 stack_bottom = t->stack_begin(); \
Dlsan_thread.h27 uptr stack_begin() { return stack_begin_; } in stack_begin() function
Dlsan_common.h143 bool GetThreadRangesLocked(uptr os_id, uptr *stack_begin, uptr *stack_end,
/external/google-breakpad/src/processor/
Dstackwalk_common.cc124 uint64_t stack_begin = 0, stack_end = 0; in PrintStackContents() local
132 stack_begin = frame_x86->context.esp; in PrintStackContents()
144 stack_begin = frame_amd64->context.rsp; in PrintStackContents()
154 stack_begin = frame_arm->context.iregs[13]; in PrintStackContents()
166 stack_begin = frame_arm64->context.iregs[31]; in PrintStackContents()
170 if (!word_length || !stack_begin || !stack_end) in PrintStackContents()
175 for(uint64_t address = stack_begin; address < stack_end; ) { in PrintStackContents()
202 for (uint64_t address = stack_begin; address < stack_end; in PrintStackContents()
/external/compiler-rt/lib/asan/
Dasan_thread.cc324 bool GetThreadRangesLocked(uptr os_id, uptr *stack_begin, uptr *stack_end, in GetThreadRangesLocked() argument
329 *stack_begin = t->stack_bottom(); in GetThreadRangesLocked()