2 * Copyright (C) 2000 Anton Blanchard (anton@linuxcare.com)
4 * This file implements mcount(), which is used to collect profiling data.
5 * This can also be tweaked for kernel stack overflow detection.
8 #include <linux/linkage.h>
10 #include <asm/ptrace.h>
11 #include <asm/thread_info.h>
14 * This is the main variant and is called by C code. GCC's -pg option
15 * automatically instruments every C function with a call to this.
18 #ifdef CONFIG_STACK_DEBUG
20 #define OVSTACKSIZE 4096 /* lets hope this is enough */
25 .asciz "Stack overflow\n"
32 .globl mcount, _mcount
35 #ifdef CONFIG_STACK_DEBUG
37 * Check whether %sp is dangerously low.
39 ldub [%g6 + TI_FPDEPTH], %g1
42 sllx %g3, 8, %g3 ! each fpregs frame is 256b
44 add %g6, %g3, %g3 ! where does task_struct+frame end?
45 sub %g3, STACK_BIAS, %g3
48 sethi %hi(panicstring), %g3
49 sethi %hi(ovstack), %g7 ! cant move to panic stack fast enough
50 or %g7, %lo(ovstack), %g7
51 add %g7, OVSTACKSIZE, %g7
52 sub %g7, STACK_BIAS, %g7
55 or %g3, %lo(panicstring), %o0