1 /* Low-level statistical profiling support function. Mach/Hurd version.
2 Copyright (C) 1995-2015 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, see
17 <http://www.gnu.org/licenses/>. */
19 #include <sys/types.h>
23 #include <mach/mach4.h>
24 #include <mach/pc_sample.h>
27 #include <libc-internal.h>
30 #define MAX_PC_SAMPLES 512 /* XXX ought to be exported in kernel hdr */
32 static thread_t profile_thread
= MACH_PORT_NULL
;
33 static u_short
*samples
;
34 static size_t maxsamples
;
35 static size_t pc_offset
;
36 static size_t sample_scale
;
37 static sampled_pc_seqno_t seqno
;
38 static spin_lock_t lock
= SPIN_LOCK_INITIALIZER
;
39 static mach_msg_timeout_t collector_timeout
; /* ms between collections. */
40 static int profile_tick
;
42 /* Reply port used by profiler thread */
43 static mach_port_t profil_reply_port
;
46 static kern_return_t
profil_task_get_sampled_pcs (mach_port_t
,
49 mach_msg_type_number_t
*);
50 static void fetch_samples (void);
51 static void profile_waiter (void);
53 /* Enable statistical profiling, writing samples of the PC into at most
54 SIZE bytes of SAMPLE_BUFFER; every processor clock tick while profiling
55 is enabled, the system examines the user PC and increments
56 SAMPLE_BUFFER[((PC - OFFSET) / 2) * SCALE / 65536]. If SCALE is zero,
57 disable profiling. Returns zero on success, -1 on error. */
60 update_waiter (u_short
*sample_buffer
, size_t size
, size_t offset
, u_int scale
)
64 if (profile_thread
== MACH_PORT_NULL
)
66 /* Set up the profiling collector thread. */
67 err
= __thread_create (__mach_task_self (), &profile_thread
);
69 err
= __mach_setup_thread (__mach_task_self (), profile_thread
,
70 &profile_waiter
, NULL
, NULL
);
77 err
= __task_enable_pc_sampling (__mach_task_self (), &profile_tick
,
79 if (!err
&& sample_scale
== 0)
80 /* Profiling was not turned on, so the collector thread was
81 suspended. Resume it. */
82 err
= __thread_resume (profile_thread
);
85 samples
= sample_buffer
;
86 maxsamples
= size
/ sizeof *sample_buffer
;
89 /* Calculate a good period for the collector thread. From TICK
90 and the kernel buffer size we get the length of time it takes
91 to fill the buffer; translate that to milliseconds for
92 mach_msg, and chop it in half for general lag factor. */
93 collector_timeout
= MAX_PC_SAMPLES
* profile_tick
/ 1000 / 2;
101 __profile_frequency (void)
105 libc_hidden_def (__profile_frequency
)
108 __profil (u_short
*sample_buffer
, size_t size
, size_t offset
, u_int scale
)
116 /* Disable profiling. */
119 if (profile_thread
!= MACH_PORT_NULL
)
120 __thread_suspend (profile_thread
);
122 /* Fetch the last set of samples */
126 err
= __task_disable_pc_sampling (__mach_task_self (), &count
);
131 err
= update_waiter (sample_buffer
, size
, offset
, scale
);
133 __spin_unlock (&lock
);
135 return err
? __hurd_fail (err
) : 0;
137 weak_alias (__profil
, profil
)
139 /* Fetch PC samples. This function must be very careful not to depend
140 on Hurd threadvar variables. We arrange that by using a special
141 stub arranged for at the end of this file. */
145 sampled_pc_t pc_samples
[MAX_PC_SAMPLES
];
146 mach_msg_type_number_t nsamples
, i
;
149 nsamples
= MAX_PC_SAMPLES
;
151 err
= profil_task_get_sampled_pcs (__mach_task_self (), &seqno
,
152 pc_samples
, &nsamples
);
155 static error_t special_profil_failure
;
156 static volatile int a
, b
, c
;
158 special_profil_failure
= err
;
165 for (i
= 0; i
< nsamples
; ++i
)
167 /* Do arithmetic in long long to avoid overflow problems. */
168 long long pc_difference
= pc_samples
[i
].pc
- pc_offset
;
169 size_t idx
= ((pc_difference
/ 2) * sample_scale
) / 65536;
170 if (idx
< maxsamples
)
176 /* This function must be very careful not to depend on Hurd threadvar
177 variables. We arrange that by using special stubs arranged for at the
180 profile_waiter (void)
182 mach_msg_header_t msg
;
183 mach_port_t timeout_reply_port
;
185 profil_reply_port
= __mach_reply_port ();
186 timeout_reply_port
= __mach_reply_port ();
194 __spin_unlock (&lock
);
196 __mach_msg (&msg
, MACH_RCV_MSG
|MACH_RCV_TIMEOUT
, 0, sizeof msg
,
197 timeout_reply_port
, collector_timeout
, MACH_PORT_NULL
);
201 /* Fork interaction */
203 /* Before fork, lock the interlock so that we are in a clean state. */
205 fork_profil_prepare (void)
209 text_set_element (_hurd_fork_prepare_hook
, fork_profil_prepare
);
211 /* In the parent, unlock the interlock once fork is complete. */
213 fork_profil_parent (void)
215 __spin_unlock (&lock
);
217 text_set_element (_hurd_fork_parent_hook
, fork_profil_parent
);
219 /* In the child, unlock the interlock, and start a profiling thread up
222 fork_profil_child (void)
228 __spin_unlock (&lock
);
230 if (profile_thread
!= MACH_PORT_NULL
)
232 __mach_port_deallocate (__mach_task_self (), profile_thread
);
233 profile_thread
= MACH_PORT_NULL
;
247 err
= update_waiter (sb
, n
* sizeof *sb
, o
, ss
);
251 text_set_element (_hurd_fork_child_hook
, fork_profil_child
);
256 /* Special RPC stubs for profile_waiter are made by including the normal
257 source code, with special CPP state to prevent it from doing the
260 /* Include these first; then our #define's will take full effect, not
262 #include <mach/mig_support.h>
264 /* This need not do anything; it is always associated with errors, which
265 are fatal in profile_waiter anyhow. */
266 #define __mig_put_reply_port(foo)
268 /* Use our static variable instead of the usual threadvar mechanism for
270 #define __mig_get_reply_port() profil_reply_port
272 /* Make the functions show up as static */
273 #define mig_external static
275 /* Turn off the attempt to generate ld aliasing records. */
277 #define weak_alias(a,b)
279 /* And change their names to avoid confusing disasters. */
280 #define __vm_deallocate_rpc profil_vm_deallocate
281 #define __task_get_sampled_pcs profil_task_get_sampled_pcs
283 /* And include the source code */
284 #include <../mach/RPC_task_get_sampled_pcs.c>