Blame sysdeps/generic/machine-gmon.h

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