Lines Matching defs:top
549 void UnpoisonStack(uptr bottom, uptr top, const char *type) {
551 if (top - bottom > kMaxExpectedCleanupSize) {
558 "stack type: %s top: %p; bottom %p; size: %p (%zd)\n"
562 type, (void *)top, (void *)bottom, (void *)(top - bottom),
563 top - bottom);
566 PoisonShadow(bottom, RoundUpTo(top - bottom, ASAN_SHADOW_GRANULARITY), 0);
570 uptr bottom, top;
575 top = curr_thread->stack_top();
581 GetThreadStackAndTls(/*main=*/false, &bottom, &top, &tls_begin, &tls_end);
584 UnpoisonStack(bottom, top, "default");