]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - cddl/contrib/dtracetoolkit/Perl/pl_syscalls.d
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / cddl / contrib / dtracetoolkit / Perl / pl_syscalls.d
1 #!/usr/sbin/dtrace -Zs
2 /*
3  * pl_syscalls.d - count Perl subroutine calls and syscalls using DTrace.
4  *                 Written for the Perl DTrace provider.
5  *
6  * $Id: pl_syscalls.d 25 2007-09-12 09:51:58Z brendan $
7  *
8  * USAGE: pl_syscalls.d { -p PID | -c cmd }     # hit Ctrl-C to end
9  *
10  * FIELDS:
11  *              FILE            Filename of the Perl program
12  *              TYPE            Type of call (sub/syscall)
13  *              NAME            Name of call
14  *              COUNT           Number of calls during sample
15  *
16  * Filename and subroutine names are printed if available.
17  * The filename for syscalls may be printed as "perl", if the program
18  * was invoked using the form "perl filename" rather than running the
19  * program with an interpreter line.
20  *
21  * COPYRIGHT: Copyright (c) 2007 Brendan Gregg.
22  *
23  * CDDL HEADER START
24  *
25  *  The contents of this file are subject to the terms of the
26  *  Common Development and Distribution License, Version 1.0 only
27  *  (the "License").  You may not use this file except in compliance
28  *  with the License.
29  *
30  *  You can obtain a copy of the license at Docs/cddl1.txt
31  *  or http://www.opensolaris.org/os/licensing.
32  *  See the License for the specific language governing permissions
33  *  and limitations under the License.
34  *
35  * CDDL HEADER END
36  *
37  * 09-Sep-2007  Brendan Gregg   Created this.
38  */
39
40 #pragma D option quiet
41
42 self string filename;
43
44 dtrace:::BEGIN
45 {
46         printf("Tracing... Hit Ctrl-C to end.\n");
47 }
48
49 perl$target:::sub-entry
50 {
51         @calls[basename(copyinstr(arg1)), "sub", copyinstr(arg0)] = count();
52 }
53
54 syscall:::entry
55 /pid == $target/
56 {
57         @calls[basename(execname), "syscall", probefunc] = count();
58 }
59
60 dtrace:::END
61 {
62         printf("\nCalls for PID %d,\n\n", $target);
63         printf(" %-32s %-10s %-22s %8s\n", "FILE", "TYPE", "NAME", "COUNT");
64         printa(" %-32s %-10s %-22s %@8d\n", @calls);
65 }