Blame sysdeps/generic/machine-gmon.h

Packit Service 82fcde
/* Machine-dependent definitions for profiling support.  Generic GCC 2 version.
Packit Service 82fcde
   Copyright (C) 1996-2018 Free Software Foundation, Inc.
Packit Service 82fcde
   This file is part of the GNU C Library.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 82fcde
   modify it under the terms of the GNU Lesser General Public
Packit Service 82fcde
   License as published by the Free Software Foundation; either
Packit Service 82fcde
   version 2.1 of the License, or (at your option) any later version.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 82fcde
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 82fcde
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 82fcde
   Lesser General Public License for more details.
Packit Service 82fcde
Packit Service 82fcde
   You should have received a copy of the GNU Lesser General Public
Packit Service 82fcde
   License along with the GNU C Library; if not, see
Packit Service 82fcde
   <http://www.gnu.org/licenses/>.  */
Packit Service 82fcde
Packit Service 82fcde
/* GCC version 2 gives us a perfect magical function to get
Packit Service 82fcde
   just the information we need:
Packit Service 82fcde
     void *__builtin_return_address (unsigned int N)
Packit Service 82fcde
   returns the return address of the frame N frames up.  */
Packit Service 82fcde
Packit Service 82fcde
/* Be warned that GCC cannot usefully compile __builtin_return_address(N)
Packit Service 82fcde
   for N != 0 on all machines.  In this case, you may have to write
Packit Service 82fcde
   your own version of _mcount().  */
Packit Service 82fcde
Packit Service 82fcde
#if __GNUC__ < 2
Packit Service 82fcde
 #error "This file uses __builtin_return_address, a GCC 2 extension."
Packit Service 82fcde
#endif
Packit Service 82fcde
Packit Service 82fcde
#include <sysdep.h>
Packit Service 82fcde
/* The canonical name for the function is `_mcount' in both C and asm,
Packit Service 82fcde
   but some old asm code might assume it's `mcount'.  */
Packit Service 82fcde
void _mcount (void);
Packit Service 82fcde
weak_alias (_mcount, mcount)
Packit Service 82fcde
Packit Service 82fcde
static void mcount_internal (u_long frompc, u_long selfpc);
Packit Service 82fcde
Packit Service 82fcde
#define _MCOUNT_DECL(frompc, selfpc) \
Packit Service 82fcde
static inline void mcount_internal (u_long frompc, u_long selfpc)
Packit Service 82fcde
Packit Service 82fcde
#define MCOUNT \
Packit Service 82fcde
void _mcount (void)							      \
Packit Service 82fcde
{									      \
Packit Service 82fcde
  mcount_internal ((u_long) RETURN_ADDRESS (1), (u_long) RETURN_ADDRESS (0)); \
Packit Service 82fcde
}