1 /* Low-level statistical profiling support function. Mostly POSIX.1 version.
2 Copyright (C) 1996,1997,1998,2002,2004,2005,2006
3 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
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, see
18 <http://www.gnu.org/licenses/>. */
20 #include <sys/types.h>
25 #include <libc-internal.h>
29 #include <gmon/profil.c>
33 static u_short
*samples
;
34 static size_t nsamples
;
35 static size_t pc_offset
;
36 static u_int pc_scale
;
39 profil_count (void *pc
)
41 size_t i
= (pc
- pc_offset
- (void *) 0) / 2;
43 if (sizeof (unsigned long long int) > sizeof (size_t))
44 i
= (unsigned long long int) i
* pc_scale
/ 65536;
46 i
= i
/ 65536 * pc_scale
+ i
% 65536 * pc_scale
/ 65536;
52 /* Get the machine-dependent definition of `profil_counter', the signal
53 handler for SIGPROF. It calls `profil_count' (above) with the PC of the
55 #include "profil-counter.h"
57 /* Enable statistical profiling, writing samples of the PC into at most
58 SIZE bytes of SAMPLE_BUFFER; every processor clock tick while profiling
59 is enabled, the system examines the user PC and increments
60 SAMPLE_BUFFER[((PC - OFFSET) / 2) * SCALE / 65536]. If SCALE is zero,
61 disable profiling. Returns zero on success, -1 on error. */
64 __profil (u_short
*sample_buffer
, size_t size
, size_t offset
, u_int scale
)
67 struct itimerval timer
;
69 static struct sigaction oact
;
70 static struct itimerval otimer
;
71 # define oact_ptr &oact
72 # define otimer_ptr &otimer
74 if (sample_buffer
== NULL
)
76 /* Disable profiling. */
78 /* Wasn't turned on. */
81 if (__setitimer (ITIMER_PROF
, &otimer
, NULL
) < 0)
84 return __sigaction (SIGPROF
, &oact
, NULL
);
89 /* Was already turned on. Restore old timer and signal handler
91 if (__setitimer (ITIMER_PROF
, &otimer
, NULL
) < 0
92 || __sigaction (SIGPROF
, &oact
, NULL
) < 0)
96 /* In ld.so profiling should never be disabled once it runs. */
97 //assert (sample_buffer != NULL);
98 # define oact_ptr NULL
99 # define otimer_ptr NULL
102 samples
= sample_buffer
;
103 nsamples
= size
/ sizeof *samples
;
107 act
.sa_handler
= (sighandler_t
) &profil_counter
;
108 act
.sa_flags
= SA_RESTART
;
109 __sigfillset (&act
.sa_mask
);
110 if (__sigaction (SIGPROF
, &act
, oact_ptr
) < 0)
113 timer
.it_value
.tv_sec
= 0;
114 timer
.it_value
.tv_usec
= 1000000 / __profile_frequency ();
115 timer
.it_interval
= timer
.it_value
;
116 return __setitimer (ITIMER_PROF
, &timer
, otimer_ptr
);
118 weak_alias (__profil
, profil
)