annotate src/profile.c @ 424:11054d720c21 r21-2-20

Import from CVS: tag r21-2-20
author cvs
date Mon, 13 Aug 2007 11:26:11 +0200
parents 697ef44129c6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Why the hell is XEmacs so fucking slow?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1996 Ben Wing.
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
3 Copyright (C) 1998 Free Software Foundation, Inc.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #include "backtrace.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #include "bytecode.h"
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
27 #include "elhash.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include "hash.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "syssignal.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include "systime.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
33 /* We implement our own profiling scheme so that we can determine
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
34 things like which Lisp functions are occupying the most time. Any
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
35 standard OS-provided profiling works on C functions, which is
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
36 somewhat useless.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
38 The basic idea is simple. We set a profiling timer using setitimer
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
39 (ITIMER_PROF), which generates a SIGPROF every so often. (This
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
40 runs not in real time but rather when the process is executing or
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
41 the system is running on behalf of the process.) When the signal
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
42 goes off, we see what we're in, and add 1 to the count associated
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
43 with that function.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
45 It would be nice to use the Lisp allocation mechanism etc. to keep
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
46 track of the profiling information, but we can't because that's not
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
47 safe, and trying to make it safe would be much more work than it's
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
48 worth.
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
49
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
51 Jan 1998: In addition to this, I have added code to remember call
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
52 counts of Lisp funcalls. The profile_increase_call_count()
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
53 function is called from Ffuncall(), and serves to add data to
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
54 Vcall_count_profile_table. This mechanism is much simpler and
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
55 independent of the SIGPROF-driven one. It uses the Lisp allocation
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
56 mechanism normally, since it is not called from a handler. It may
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
57 even be useful to provide a way to turn on only one profiling
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
58 mechanism, but I haven't done so yet. --hniksic */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
60 static struct hash_table *big_profile_table;
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
61 Lisp_Object Vcall_count_profile_table;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 int default_profiling_interval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 int profiling_active;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 /* The normal flag in_display is used as a critical-section flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 and is not set the whole time we're in redisplay. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 int profiling_redisplay_flag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
71 static Lisp_Object QSin_redisplay;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
72 static Lisp_Object QSin_garbage_collection;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
73 static Lisp_Object QSprocessing_events_at_top_level;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
74 static Lisp_Object QSunknown;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
76 /* We use inside_profiling to prevent the handler from writing to
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
77 the table while another routine is operating on it. We also set
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
78 inside_profiling in case the timeout between signal calls is short
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
79 enough to catch us while we're already in there. */
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 116
diff changeset
80 static volatile int inside_profiling;
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
81
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
82 /* Increase the value of OBJ in Vcall_count_profile_table hash table.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
83 If the hash table is nil, create it first. */
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
84 void
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
85 profile_increase_call_count (Lisp_Object obj)
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
86 {
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
87 Lisp_Object count;
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
88
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
89 if (NILP (Vcall_count_profile_table))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
90 Vcall_count_profile_table =
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
91 make_lisp_hash_table (100, HASH_TABLE_NON_WEAK, HASH_TABLE_EQ);
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
92
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
93 count = Fgethash (obj, Vcall_count_profile_table, Qzero);
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
94 if (!INTP (count))
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
95 count = Qzero;
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
96 Fputhash (obj, make_int (1 + XINT (count)), Vcall_count_profile_table);
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
97 }
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
98
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 static SIGTYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 sigprof_handler (int signo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
102 /* Don't do anything if we are shutting down, or are doing a maphash
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
103 or clrhash on the table. */
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
104 if (!inside_profiling && !preparing_for_armageddon)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
105 {
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
106 Lisp_Object fun;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
107
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
108 /* If something below causes an error to be signaled, we'll
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
109 not correctly reset this flag. But we'll be in worse shape
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
110 than that anyways, since we'll longjmp back to the last
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
111 condition case. */
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
112 inside_profiling = 1;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
113
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
114 if (profiling_redisplay_flag)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
115 fun = QSin_redisplay;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
116 else if (gc_in_progress)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
117 fun = QSin_garbage_collection;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
118 else if (backtrace_list)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
119 {
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
120 fun = *backtrace_list->function;
44
8d2a9b52c682 Import from CVS: tag r19-15prefinal
cvs
parents: 20
diff changeset
121
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
122 if (!SYMBOLP (fun) &&
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
123 !COMPILED_FUNCTIONP (fun) &&
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
124 !SUBRP (fun))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
125 fun = QSunknown;
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
126 }
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
127 else
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
128 fun = QSprocessing_events_at_top_level;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
130 {
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
131 /* #### see comment about memory allocation in start-profiling.
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
132 Allocating memory in a signal handler is BAD BAD BAD.
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
133 If you are using the non-mmap rel-alloc code, you might
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
134 lose because of this. Even worse, if the memory allocation
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
135 fails, the `error' generated whacks everything hard. */
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
136 long count;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
137 CONST void *vval;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
138
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
139 if (gethash (LISP_TO_VOID (fun), big_profile_table, &vval))
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
140 count = (long) vval;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
141 else
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
142 count = 0;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
143 count++;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
144 vval = (CONST void *) count;
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
145 puthash (LISP_TO_VOID (fun), (void *) vval, big_profile_table);
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
146 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
147
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
148 inside_profiling = 0;
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
149 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
152 DEFUN ("start-profiling", Fstart_profiling, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 Start profiling, with profile queries every MICROSECS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 If MICROSECS is nil or omitted, the value of `default-profiling-interval'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 is used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 You can retrieve the recorded profiling info using `get-profiling-info'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 Starting and stopping profiling does not clear the currently recorded
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 info. Thus you can start and stop as many times as you want and everything
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
161 will be properly accumulated.
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
162 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
163 (microsecs))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
165 /* This function can GC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 int msecs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 struct itimerval foo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 /* #### The hash code can safely be called from a signal handler
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
170 except when it has to grow the hash table. In this case, it calls
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
171 realloc(), which is not (in general) re-entrant. We'll just be
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 sleazy and make the table large enough that it (hopefully) won't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 need to be realloc()ed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 if (!big_profile_table)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
175 big_profile_table = make_hash_table (10000);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
176
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 if (NILP (microsecs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 msecs = default_profiling_interval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 CHECK_NATNUM (microsecs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 msecs = XINT (microsecs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 if (msecs <= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 msecs = 1000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 signal (SIGPROF, sigprof_handler);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 foo.it_value.tv_sec = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 foo.it_value.tv_usec = msecs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 EMACS_NORMALIZE_TIME (foo.it_value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 foo.it_interval = foo.it_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 profiling_active = 1;
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
193 inside_profiling = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 setitimer (ITIMER_PROF, &foo, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
198 DEFUN ("stop-profiling", Fstop_profiling, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 Stop profiling.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
200 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
201 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
203 /* This function does not GC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 struct itimerval foo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 foo.it_value.tv_sec = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 foo.it_value.tv_usec = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 foo.it_interval = foo.it_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 setitimer (ITIMER_PROF, &foo, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 profiling_active = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 signal (SIGPROF, fatal_error_signal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
215 static Lisp_Object
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
216 profile_lock_unwind (Lisp_Object ignore)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
217 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
218 inside_profiling = 0;
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
219 return Qnil;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
220 }
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
221
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 struct get_profiling_info_closure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 Lisp_Object accum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
227 static int
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
228 get_profiling_info_maphash (CONST void *void_key,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 void *void_val,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 void *void_closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
232 /* This function does not GC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 Lisp_Object key;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
234 struct get_profiling_info_closure *closure
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
235 = (struct get_profiling_info_closure *) void_closure;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 EMACS_INT val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 CVOID_TO_LISP (key, void_key);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 val = (EMACS_INT) void_val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
241 closure->accum = Fcons (Fcons (key, make_int (val)), closure->accum);
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
242 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
245 DEFUN ("get-profiling-info", Fget_profiling_info, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 Return the profiling info as an alist.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
247 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
248 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
250 /* This function does not GC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 struct get_profiling_info_closure closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 closure.accum = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 if (big_profile_table)
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
255 {
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
256 int count = specpdl_depth ();
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
257 record_unwind_protect (profile_lock_unwind, Qnil);
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
258 inside_profiling = 1;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
259 maphash (get_profiling_info_maphash, big_profile_table, &closure);
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
260 unbind_to (count, Qnil);
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
261 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 return closure.accum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
265 static int
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
266 mark_profiling_info_maphash (CONST void *void_key,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 void *void_val,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 void *void_closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 Lisp_Object key;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 CVOID_TO_LISP (key, void_key);
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
273 mark_object (key);
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
274 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 void
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
278 mark_profiling_info (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 {
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
280 /* This function does not GC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 if (big_profile_table)
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
282 {
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
283 inside_profiling = 1;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
284 maphash (mark_profiling_info_maphash, big_profile_table, 0);
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
285 inside_profiling = 0;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
286 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288
199
169c0442b401 Import from CVS: tag r20-3b26
cvs
parents: 185
diff changeset
289 DEFUN ("clear-profiling-info", Fclear_profiling_info, 0, 0, "", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 Clear out the recorded profiling info.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
291 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
292 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
294 /* This function does not GC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 if (big_profile_table)
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
296 {
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
297 inside_profiling = 1;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
298 clrhash (big_profile_table);
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
299 inside_profiling = 0;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
300 }
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
301 if (!NILP (Vcall_count_profile_table))
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
302 Fclrhash (Vcall_count_profile_table);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
306 DEFUN ("profiling-active-p", Fprofiling_active_p, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 Return non-nil if profiling information is currently being recorded.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
308 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
309 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 return profiling_active ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 syms_of_profile (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 {
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
317 DEFSUBR (Fstart_profiling);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
318 DEFSUBR (Fstop_profiling);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
319 DEFSUBR (Fget_profiling_info);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
320 DEFSUBR (Fclear_profiling_info);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
321 DEFSUBR (Fprofiling_active_p);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 vars_of_profile (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 DEFVAR_INT ("default-profiling-interval", &default_profiling_interval /*
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
328 Default CPU time in microseconds between profiling sampling.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 Used when the argument to `start-profiling' is nil or omitted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 Note that the time in question is CPU time (when the program is executing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 or the kernel is executing on behalf of the program) and not real time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 default_profiling_interval = 1000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
335 DEFVAR_LISP ("call-count-profile-table", &Vcall_count_profile_table /*
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
336 The table where call-count information is stored by the profiling primitives.
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
337 This is a hash table whose keys are funcallable objects, and whose
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
338 values are their call counts (integers).
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
339 */ );
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
340 Vcall_count_profile_table = Qnil;
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
341
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
342 inside_profiling = 0;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
343
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 QSin_redisplay = build_string ("(in redisplay)");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 staticpro (&QSin_redisplay);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 QSin_garbage_collection = build_string ("(in garbage collection)");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 staticpro (&QSin_garbage_collection);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 QSunknown = build_string ("(unknown)");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 staticpro (&QSunknown);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 QSprocessing_events_at_top_level =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 build_string ("(processing events at top level)");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 staticpro (&QSprocessing_events_at_top_level);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 }