Lines Matching defs:bottom
552 void UnpoisonStack(uptr bottom, uptr top, const char *type) {
554 if (top - bottom > kMaxExpectedCleanupSize) {
561 "stack type: %s top: %p; bottom %p; size: %p (%zd)\n"
565 type, (void *)top, (void *)bottom, (void *)(top - bottom),
566 top - bottom);
569 PoisonShadow(bottom, RoundUpTo(top - bottom, ASAN_SHADOW_GRANULARITY), 0);
573 uptr bottom, top;
579 bottom = ((uptr)&local_stack - page_size) & ~(page_size - 1);
584 GetThreadStackAndTls(/*main=*/false, &bottom, &stack_size, &tls_addr,
586 top = bottom + stack_size;
589 UnpoisonStack(bottom, top, "default");
626 uptr bottom = t->stack_bottom();
627 PoisonShadow(bottom, (uptr)sp - bottom, 0);