Lines Matching defs:bottom
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;
576 bottom = ((uptr)&local_stack - page_size) & ~(page_size - 1);
581 GetThreadStackAndTls(/*main=*/false, &bottom, &top, &tls_begin, &tls_end);
584 UnpoisonStack(bottom, top, "default");
621 uptr bottom = t->stack_bottom();
622 PoisonShadow(bottom, (uptr)sp - bottom, 0);