1 /* S/390-specific implemetation of profiling support.
2 Copyright (C) 2000, 2001 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com)
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
24 * How profiling works on S/390:
25 * On the start of each function _mcount is called with the address of a
26 * data word in %r1 (initialized to 0, used for counting). The compiler
27 * with the option -p generates code of the form:
32 * .LC12: .long _mcount
40 * l 14,.LC12-.LT0_0(13)
41 * l 1,.LC13-.LT0_0(13)
45 * The _mcount implementation now has to call __mcount_internal with the
46 * address of .LP0 as first parameter and the return address as second
47 * parameter. &.LP0 was loaded to %r1 and the return address is in %r14.
48 * _mcount may not modify any register.
51 ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(_mcount)
52 ASM_TYPE_DIRECTIVE(C_SYMBOL_NAME(_mcount), @function)
56 /* Save the caller-clobbered registers. */
58 cfi_adjust_cfa_offset (128)
62 l %r2,132(%r15) # callers address = first parameter
63 la %r2,0(%r2) # clear bit 0
64 la %r3,0(%r14) # callees address = second parameter
68 .long _GLOBAL_OFFSET_TABLE_-.
70 l %r14,__mcount_internal@GOT(%r14)
73 .long __mcount_internal
79 * Pop the saved registers. Please note that `mcount' has no
84 cfi_adjust_cfa_offset (-128)
87 ASM_SIZE_DIRECTIVE(C_SYMBOL_NAME(_mcount))
90 weak_alias (_mcount, mcount)