1 /* Machine-dependent definitions for profiling support. ARM version.
2 Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 /* GCC for the ARM cannot compile __builtin_return_address(N) for N != 0,
21 so we must use an assembly stub. */
24 #ifndef NO_UNDERSCORES
25 /* The asm symbols for C functions are `_function'.
26 The canonical name for the counter function is `mcount', no _. */
27 void _mcount (void) asm ("mcount");
29 /* The canonical name for the function is `_mcount' in both C and asm,
30 but some old asm code might assume it's `mcount'. */
32 weak_alias (_mcount
, mcount
)
35 static void mcount_internal (u_long frompc
, u_long selfpc
) __attribute_used__
;
37 #define _MCOUNT_DECL(frompc, selfpc) \
38 static void mcount_internal (u_long frompc, u_long selfpc)
40 /* This macro/func MUST save r0, r1 because the compiler inserts
41 blind calls to _mount(), ignoring the fact that _mcount may
42 clobber registers; therefore, _mcount may NOT clobber registers */
46 r1 = [r1-4] which is caller's lr
49 call mcount_internal(this_lr, caller's_lr)
56 __asm__("stmdb sp!, {r0, r1, r2, r3};" \
59 "ldrne r1, [fp, $-4];" \
60 "ldrne r0, [fp, $-12];" \
62 "ldrne r0, [r0, $-4];" \
64 "blne mcount_internal;" \
65 "ldmia sp!, {r0, r1, r2, r3}"); \