/* SPDX-License-Identifier: GPL-2.0 */1/*2* arch/alpha/lib/dbg_stackkill.S3* Contributed by Richard Henderson ([email protected])4*5* Clobber the balance of the kernel stack, hoping to catch6* uninitialized local variables in the act.7*/89#include <asm/asm-offsets.h>1011.text12.set noat1314.align 515.globl _mcount16.ent _mcount17_mcount:18.frame $30, 0, $28, 019.prologue 02021ldi $0, 0xdeadbeef22lda $2, -STACK_SIZE23sll $0, 32, $124and $30, $2, $225or $0, $1, $026lda $2, TASK_SIZE($2)27cmpult $2, $30, $128beq $1, 2f291: stq $0, 0($2)30addq $2, 8, $231cmpult $2, $30, $132bne $1, 1b332: ret ($28)3435.end _mcount363738