xref: /netbsd-src/external/cddl/dtracetoolkit/dist/Shell/sh_calltime.d (revision c29d51755812ace2e87aeefdb06cb2b4dac7087a)
1 #!/usr/sbin/dtrace -Zs
2 /*
3  * sh_calltime.d - measure Bourne shell elapsed times for types of operation.
4  *                 Written for the sh DTrace provider.
5  *
6  * $Id: sh_calltime.d,v 1.1.1.1 2015/09/30 22:01:09 christos Exp $
7  *
8  * This traces shell activity from all Bourne shells on the system that are
9  * running with sh provider support.
10  *
11  * USAGE: sh_calltime.d 	# hit Ctrl-C to end
12  *
13  * FIELDS:
14  *		FILE		Filename of the shell or shellscript
15  *		TYPE		Type of call (func/builtin/cmd/total)
16  *		NAME		Name of call
17  *		TOTAL		Total elapsed time for calls (us)
18  *
19  * Filename and call names are printed if available.
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 dtrace:::BEGIN
43 {
44 	printf("Tracing... Hit Ctrl-C to end.\n");
45 }
46 
47 sh*:::function-entry
48 {
49 	self->depth++;
50 	self->exclude[self->depth] = 0;
51 	self->function[self->depth] = timestamp;
52 }
53 
54 sh*:::function-return
55 /self->function[self->depth]/
56 {
57 	this->elapsed_incl = timestamp - self->function[self->depth];
58 	this->elapsed_excl = this->elapsed_incl - self->exclude[self->depth];
59 	self->function[self->depth] = 0;
60 	self->exclude[self->depth] = 0;
61 	this->file = basename(copyinstr(arg0));
62 	this->name = copyinstr(arg1);
63 
64 	@num[this->file, "func", this->name] = count();
65 	@num["-", "total", "-"] = count();
66 	@types_incl[this->file, "func", this->name] = sum(this->elapsed_incl);
67 	@types_excl[this->file, "func", this->name] = sum(this->elapsed_excl);
68 	@types_excl["-", "total", "-"] = sum(this->elapsed_excl);
69 
70 	self->depth--;
71 	self->exclude[self->depth] += this->elapsed_incl;
72 }
73 
74 sh*:::builtin-entry
75 {
76 	self->builtin = timestamp;
77 }
78 
79 sh*:::builtin-return
80 /self->builtin/
81 {
82 	this->elapsed = timestamp - self->builtin;
83 	self->builtin = 0;
84 	this->file = basename(copyinstr(arg0));
85 	this->name = copyinstr(arg1);
86 
87 	@num[this->file, "builtin", this->name] = count();
88 	@num["-", "total", "-"] = count();
89 	@types[this->file, "builtin", this->name] = sum(this->elapsed);
90 	@types["-", "total", "-"] = sum(this->elapsed);
91 
92 	self->exclude[self->depth] += this->elapsed;
93 }
94 
95 sh*:::command-entry
96 {
97 	self->command = timestamp;
98 }
99 
100 sh*:::command-return
101 /self->command/
102 {
103 	this->elapsed = timestamp - self->command;
104 	self->command = 0;
105 	this->file = basename(copyinstr(arg0));
106 	this->name = copyinstr(arg1);
107 
108 	@num[this->file, "cmd", this->name] = count();
109 	@num["-", "total", "-"] = count();
110 	@types[this->file, "cmd", this->name] = sum(this->elapsed);
111 	@types["-", "total", "-"] = sum(this->elapsed);
112 
113 	self->exclude[self->depth] += this->elapsed;
114 }
115 
116 dtrace:::END
117 {
118 	printf("\nCounts,\n");
119 	printf("   %-20s %-10s %-32s %8s\n", "FILE", "TYPE", "NAME", "COUNT");
120 	printa("   %-20s %-10s %-32s %@8d\n", @num);
121 
122 	normalize(@types, 1000);
123 	printf("\nElapsed times (us),\n");
124 	printf("   %-20s %-10s %-32s %8s\n", "FILE", "TYPE", "NAME", "TOTAL");
125 	printa("   %-20s %-10s %-32s %@8d\n", @types);
126 
127 	normalize(@types_excl, 1000);
128 	printf("\nExclusive function elapsed times (us),\n");
129 	printf("   %-20s %-10s %-32s %8s\n", "FILE", "TYPE", "NAME", "TOTAL");
130 	printa("   %-20s %-10s %-32s %@8d\n", @types_excl);
131 
132 	normalize(@types_incl, 1000);
133 	printf("\nInclusive function elapsed times (us),\n");
134 	printf("   %-20s %-10s %-32s %8s\n", "FILE", "TYPE", "NAME", "TOTAL");
135 	printa("   %-20s %-10s %-32s %@8d\n", @types_incl);
136 }
137