annotate src/profile.c @ 241:f955c73f5258 r20-5b19

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