annotate src/profile.c @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents 8626e4521993
children 697ef44129c6
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
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
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
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
71 static Lisp_Object QSin_redisplay;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
72 static Lisp_Object QSin_garbage_collection;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
73 static Lisp_Object QSprocessing_events_at_top_level;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
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
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
122 if (!SYMBOLP (fun)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
123 && !COMPILED_FUNCTIONP (fun)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
124 && !SUBRP (fun)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
125 && !CONSP (fun))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
126 fun = QSunknown;
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
127 }
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
128 else
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
129 fun = QSprocessing_events_at_top_level;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
131 {
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
132 /* #### see comment about memory allocation in start-profiling.
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
133 Allocating memory in a signal handler is BAD BAD BAD.
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
134 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
135 lose because of this. Even worse, if the memory allocation
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
136 fails, the `error' generated whacks everything hard. */
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
137 long count;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
138 const void *vval;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
139
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
140 if (gethash (LISP_TO_VOID (fun), big_profile_table, &vval))
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
141 count = (long) vval;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
142 else
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
143 count = 0;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
144 count++;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
145 vval = (const void *) count;
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
146 puthash (LISP_TO_VOID (fun), (void *) vval, big_profile_table);
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
147 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
148
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
149 inside_profiling = 0;
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
150 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
153 DEFUN ("start-profiling", Fstart_profiling, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 Start profiling, with profile queries every MICROSECS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 If MICROSECS is nil or omitted, the value of `default-profiling-interval'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 is used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 You can retrieve the recorded profiling info using `get-profiling-info'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 Starting and stopping profiling does not clear the currently recorded
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 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
162 will be properly accumulated.
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
163 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
164 (microsecs))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
166 /* This function can GC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 int msecs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 struct itimerval foo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 /* #### 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
171 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
172 realloc(), which is not (in general) re-entrant. We'll just be
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 sleazy and make the table large enough that it (hopefully) won't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 need to be realloc()ed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 if (!big_profile_table)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
176 big_profile_table = make_hash_table (10000);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
177
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 if (NILP (microsecs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 msecs = default_profiling_interval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 CHECK_NATNUM (microsecs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 msecs = XINT (microsecs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 if (msecs <= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 msecs = 1000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 signal (SIGPROF, sigprof_handler);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 foo.it_value.tv_sec = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 foo.it_value.tv_usec = msecs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 EMACS_NORMALIZE_TIME (foo.it_value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 foo.it_interval = foo.it_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 profiling_active = 1;
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
194 inside_profiling = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 setitimer (ITIMER_PROF, &foo, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
199 DEFUN ("stop-profiling", Fstop_profiling, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 Stop profiling.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
201 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
202 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
204 /* This function does not GC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 struct itimerval foo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 foo.it_value.tv_sec = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 foo.it_value.tv_usec = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 foo.it_interval = foo.it_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 setitimer (ITIMER_PROF, &foo, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 profiling_active = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 signal (SIGPROF, fatal_error_signal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
216 static Lisp_Object
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
217 profile_lock_unwind (Lisp_Object ignore)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
218 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
219 inside_profiling = 0;
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
220 return Qnil;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
221 }
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
222
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 struct get_profiling_info_closure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 Lisp_Object accum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
228 static int
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
229 get_profiling_info_maphash (const void *void_key,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 void *void_val,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 void *void_closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
233 /* This function does not GC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 Lisp_Object key;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
235 struct get_profiling_info_closure *closure
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
236 = (struct get_profiling_info_closure *) void_closure;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 EMACS_INT val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 CVOID_TO_LISP (key, void_key);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 val = (EMACS_INT) void_val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 149
diff changeset
242 closure->accum = Fcons (Fcons (key, make_int (val)), closure->accum);
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
243 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
246 DEFUN ("get-profiling-info", Fget_profiling_info, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 Return the profiling info as an alist.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
248 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
249 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
251 /* This function does not GC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 struct get_profiling_info_closure closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 closure.accum = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 if (big_profile_table)
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
256 {
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
257 int count = specpdl_depth ();
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
258 record_unwind_protect (profile_lock_unwind, Qnil);
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
259 inside_profiling = 1;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
260 maphash (get_profiling_info_maphash, big_profile_table, &closure);
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
261 unbind_to (count, Qnil);
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
262 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 return closure.accum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
266 static int
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
267 mark_profiling_info_maphash (const void *void_key,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 void *void_val,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 void *void_closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 Lisp_Object key;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 CVOID_TO_LISP (key, void_key);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
274 mark_object (key);
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
275 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 void
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
279 mark_profiling_info (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
281 /* This function does not GC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 if (big_profile_table)
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
283 {
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
284 inside_profiling = 1;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
285 maphash (mark_profiling_info_maphash, big_profile_table, 0);
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
286 inside_profiling = 0;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
287 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
199
169c0442b401 Import from CVS: tag r20-3b26
cvs
parents: 185
diff changeset
290 DEFUN ("clear-profiling-info", Fclear_profiling_info, 0, 0, "", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 Clear out the recorded profiling info.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
292 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
293 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
295 /* This function does not GC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 if (big_profile_table)
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
297 {
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
298 inside_profiling = 1;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
299 clrhash (big_profile_table);
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
300 inside_profiling = 0;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
301 }
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
302 if (!NILP (Vcall_count_profile_table))
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
303 Fclrhash (Vcall_count_profile_table);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
307 DEFUN ("profiling-active-p", Fprofiling_active_p, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 Return non-nil if profiling information is currently being recorded.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
309 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
310 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 return profiling_active ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 syms_of_profile (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 {
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
318 DEFSUBR (Fstart_profiling);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
319 DEFSUBR (Fstop_profiling);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
320 DEFSUBR (Fget_profiling_info);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
321 DEFSUBR (Fclear_profiling_info);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
322 DEFSUBR (Fprofiling_active_p);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 vars_of_profile (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 DEFVAR_INT ("default-profiling-interval", &default_profiling_interval /*
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 241
diff changeset
329 Default CPU time in microseconds between profiling sampling.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 Used when the argument to `start-profiling' is nil or omitted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 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
332 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
333 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 default_profiling_interval = 1000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
336 DEFVAR_LISP ("call-count-profile-table", &Vcall_count_profile_table /*
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
337 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
338 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
339 values are their call counts (integers).
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
340 */ );
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
341 Vcall_count_profile_table = Qnil;
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 207
diff changeset
342
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
343 inside_profiling = 0;
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 70
diff changeset
344
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 QSin_redisplay = build_string ("(in redisplay)");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 staticpro (&QSin_redisplay);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 QSin_garbage_collection = build_string ("(in garbage collection)");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 staticpro (&QSin_garbage_collection);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 QSunknown = build_string ("(unknown)");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 staticpro (&QSunknown);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 QSprocessing_events_at_top_level =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 build_string ("(processing events at top level)");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 staticpro (&QSprocessing_events_at_top_level);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 }