More tweaks of skeleton documentation wrt \n behavior at bol/eol.
[bpt/emacs.git] / lisp / emacs-lisp / elp.el
CommitLineData
231d8498 1;;; elp.el --- Emacs Lisp Profiler -*- lexical-binding: t -*-
20f5d145 2
ba318903 3;; Copyright (C) 1994-1995, 1997-1998, 2001-2014 Free Software
ab422c4d 4;; Foundation, Inc.
c0fd04c8 5
60370d40 6;; Author: Barry A. Warsaw
34dc21db 7;; Maintainer: emacs-devel@gnu.org
60370d40
PJ
8;; Created: 26-Feb-1994
9;; Keywords: debugging lisp tools
20f5d145 10
c0fd04c8 11;; This file is part of GNU Emacs.
20f5d145 12
d6cba7ae 13;; GNU Emacs is free software: you can redistribute it and/or modify
20f5d145 14;; it under the terms of the GNU General Public License as published by
d6cba7ae
GM
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
c0fd04c8
RS
17
18;; GNU Emacs is distributed in the hope that it will be useful,
20f5d145
RS
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
20f5d145 22
c0fd04c8 23;; You should have received a copy of the GNU General Public License
d6cba7ae 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
20f5d145
RS
25
26;;; Commentary:
27;;
b96bffd7
RS
28;; If you want to profile a bunch of functions, set elp-function-list
29;; to the list of symbols, then do a M-x elp-instrument-list. This
30;; hacks those functions so that profiling information is recorded
31;; whenever they are called. To print out the current results, use
9b267eba
RS
32;; M-x elp-results. If you want output to go to standard-output
33;; instead of a separate buffer, setq elp-use-standard-output to
34;; non-nil. With elp-reset-after-results set to non-nil, profiling
35;; information will be reset whenever the results are displayed. You
36;; can also reset all profiling info at any time with M-x
37;; elp-reset-all.
c0fd04c8
RS
38;;
39;; You can also instrument all functions in a package, provided that
f2f22d26 40;; the package follows the GNU coding standard of a common textual
b96bffd7 41;; prefix. Use M-x elp-instrument-package for this.
20f5d145
RS
42;;
43;; If you want to sort the results, set elp-sort-by-function to some
44;; predicate function. The three most obvious choices are predefined:
45;; elp-sort-by-call-count, elp-sort-by-average-time, and
b96bffd7
RS
46;; elp-sort-by-total-time. Also, you can prune from the output, all
47;; functions that have been called fewer than a given number of times
48;; by setting elp-report-limit.
20f5d145
RS
49;;
50;; Elp can instrument byte-compiled functions just as easily as
c0fd04c8 51;; interpreted functions, but it cannot instrument macros. However,
5fe4899a 52;; when you redefine a function (e.g. with eval-defun), you'll need to
b96bffd7
RS
53;; re-instrument it with M-x elp-instrument-function. This will also
54;; reset profiling information for that function. Elp can handle
55;; interactive functions (i.e. commands), but of course any time spent
56;; idling for user prompts will show up in the timing results.
20f5d145
RS
57;;
58;; You can also designate a `master' function. Profiling times will
59;; be gathered for instrumented functions only during execution of
60;; this master function. Thus, if you have some defuns like:
61;;
62;; (defun foo () (do-something-time-intensive))
63;; (defun bar () (foo))
64;; (defun baz () (bar) (foo))
65;;
66;; and you want to find out the amount of time spent in bar and foo,
5fe4899a 67;; but only during execution of bar, make bar the master. The call of
b96bffd7
RS
68;; foo from baz will not add to foo's total timing sums. Use M-x
69;; elp-set-master and M-x elp-unset-master to utilize this feature.
70;; Only one master function can be set at a time.
20f5d145
RS
71
72;; You can restore any function's original function definition with
73;; elp-restore-function. The other instrument, restore, and reset
74;; functions are provided for symmetry.
75
5b689f60
RS
76;; Here is a list of variable you can use to customize elp:
77;; elp-function-list
78;; elp-reset-after-results
79;; elp-sort-by-function
80;; elp-report-limit
81;;
82;; Here is a list of the interactive commands you can use:
83;; elp-instrument-function
84;; elp-restore-function
85;; elp-instrument-list
86;; elp-restore-list
87;; elp-instrument-package
88;; elp-restore-all
89;; elp-reset-function
90;; elp-reset-list
91;; elp-reset-all
92;; elp-set-master
93;; elp-unset-master
94;; elp-results
5b689f60 95
b96bffd7
RS
96;; Note that there are plenty of factors that could make the times
97;; reported unreliable, including the accuracy and granularity of your
98;; system clock, and the overhead spent in lisp calculating and
99;; recording the intervals. I figure the latter is pretty constant,
100;; so while the times may not be entirely accurate, I think they'll
101;; give you a good feel for the relative amount of work spent in the
102;; various lisp routines you are profiling. Note further that times
103;; are calculated using wall-clock time, so other system load will
9b267eba 104;; affect accuracy too.
b96bffd7 105
5b689f60
RS
106;;; Background:
107
d83cce6d
RS
108;; This program was inspired by the only two existing Emacs Lisp
109;; profilers that I'm aware of, Boaz Ben-Zvi's profile.el, and Root
110;; Boy Jim's profiler.el. Both were written for Emacs 18 and both were
111;; pretty good first shots at profiling, but I found that they didn't
112;; provide the functionality or interface that I wanted, so I wrote
113;; this. I've tested elp in XEmacs 19 and Emacs 19. There's no point
114;; in even trying to make this work with Emacs 18.
5b689f60
RS
115
116;; Unlike previous profilers, elp uses Emacs 19's built-in function
117;; current-time to return interval times. This obviates the need for
118;; both an external C program and Emacs processes to communicate with
b96bffd7 119;; such a program, and thus simplifies the package as a whole.
5fe4899a 120
9b267eba
RS
121;; TBD:
122;; Make this act like a real profiler, so that it records time spent
123;; in all branches of execution.
124
20f5d145
RS
125;;; Code:
126
231d8498 127(eval-when-compile (require 'cl-lib))
20f5d145 128\f
d83cce6d 129;; start of user configuration variables
20f5d145
RS
130;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
131
9e5b444e 132(defgroup elp nil
667ab8c4 133 "Emacs Lisp Profiler."
9e5b444e 134 :group 'lisp)
20f5d145 135
9e5b444e 136(defcustom elp-function-list nil
cb711556 137 "List of functions to profile.
9e5b444e
RS
138Used by the command `elp-instrument-list'."
139 :type '(repeat function)
140 :group 'elp)
141
142(defcustom elp-reset-after-results t
cb711556 143 "Non-nil means reset all profiling info after results are displayed.
9e5b444e
RS
144Results are displayed with the `elp-results' command."
145 :type 'boolean
146 :group 'elp)
20f5d145 147
9e5b444e 148(defcustom elp-sort-by-function 'elp-sort-by-total-time
cb711556 149 "Non-nil specifies ELP results sorting function.
20f5d145
RS
150These functions are currently available:
151
231d8498
SM
152 `elp-sort-by-call-count' -- sort by the highest call count
153 `elp-sort-by-total-time' -- sort by the highest total time
154 `elp-sort-by-average-time' -- sort by the highest average times
20f5d145 155
1cc5b8f8
JB
156You can write your own sort function. It should adhere to the
157interface specified by the PREDICATE argument for `sort'.
158Each \"element of LIST\" is really a 4 element vector where element 0 is
20f5d145
RS
159the call count, element 1 is the total time spent in the function,
160element 2 is the average time spent in the function, and element 3 is
9e5b444e
RS
161the symbol's name string."
162 :type 'function
163 :group 'elp)
20f5d145 164
9e5b444e 165(defcustom elp-report-limit 1
cb711556 166 "Prevent some functions from being displayed in the results buffer.
c0fd04c8
RS
167If a number, no function that has been called fewer than that number
168of times will be displayed in the output buffer. If nil, all
9e5b444e
RS
169functions will be displayed."
170 :type '(choice integer
231d8498 171 (const :tag "Show All" nil))
9e5b444e 172 :group 'elp)
c0fd04c8 173
9e5b444e 174(defcustom elp-use-standard-output nil
cb711556 175 "If non-nil, output to `standard-output' instead of a buffer."
9e5b444e
RS
176 :type 'boolean
177 :group 'elp)
9b267eba 178
9e5b444e 179(defcustom elp-recycle-buffers-p t
cb711556 180 "If nil, don't recycle the `elp-results-buffer'.
9b267eba 181In other words, a new unique buffer is create every time you run
9e5b444e
RS
182\\[elp-results]."
183 :type 'boolean
184 :group 'elp)
9b267eba 185
20f5d145
RS
186
187;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9b267eba 188;; end of user configuration variables
20f5d145
RS
189
190\f
20f5d145
RS
191(defvar elp-results-buffer "*ELP Profiling Results*"
192 "Buffer name for outputting profiling results.")
193
194(defconst elp-timer-info-property 'elp-info
195 "ELP information property name.")
196
20f5d145
RS
197(defvar elp-record-p t
198 "Controls whether functions should record times or not.
199This variable is set by the master function.")
200
201(defvar elp-master nil
202 "Master function symbol.")
203
5848fe5c 204(defvar elp-not-profilable
d9532403 205 ;; First, the functions used inside each instrumented function:
231d8498 206 '(called-interactively-p
d9532403
SM
207 ;; Then the functions used by the above functions. I used
208 ;; (delq nil (mapcar (lambda (x) (and (symbolp x) (fboundp x) x))
209 ;; (aref (symbol-function 'elp-wrapper) 2)))
210 ;; to help me find this list.
30194d4d
CY
211 error call-interactively apply current-time
212 ;; Andreas Politz reports problems profiling these (Bug#4233):
213 + byte-code-function-p functionp byte-code subrp
214 indirect-function fboundp)
5848fe5c
SM
215 "List of functions that cannot be profiled.
216Those functions are used internally by the profiling code and profiling
217them would thus lead to infinite recursion.")
218
d9532403
SM
219(defun elp-profilable-p (fun)
220 (and (symbolp fun)
221 (fboundp fun)
222 (not (or (memq fun elp-not-profilable)
223 (keymapp fun)
231d8498
SM
224 (autoloadp (symbol-function fun)) ;FIXME: Why not just load it?
225 (special-form-p fun)))))
5848fe5c 226
231d8498 227(defconst elp--advice-name 'ELP-instrumentation\ )
d83cce6d 228\f
62f91105 229;;;###autoload
20f5d145
RS
230(defun elp-instrument-function (funsym)
231 "Instrument FUNSYM for profiling.
232FUNSYM must be a symbol of a defined function."
233 (interactive "aFunction to instrument: ")
231d8498 234 (let* ((infovec (vector 0 0)))
d9532403
SM
235 ;; We cannot profile functions used internally during profiling.
236 (unless (elp-profilable-p funsym)
237 (error "ELP cannot profile the function: %s" funsym))
231d8498 238 ;; The info vector data structure is a 2 element vector. The 0th
20f5d145
RS
239 ;; element is the call-count, i.e. the total number of times this
240 ;; function has been entered. This value is bumped up on entry to
241 ;; the function so that non-local exists are still recorded. TBD:
242 ;; I haven't tested non-local exits at all, so no guarantees.
243 ;;
3103f8b6 244 ;; The 1st element is the total amount of time in seconds that has
20f5d145
RS
245 ;; been spent inside this function. This number is added to on
246 ;; function exit.
20f5d145 247
231d8498 248 ;; Put the info vector on the property list.
20f5d145
RS
249 (put funsym elp-timer-info-property infovec)
250
cebf1b97 251 ;; Set the symbol's new profiling function definition to run
231d8498
SM
252 ;; ELP wrapper.
253 (advice-add funsym :around (elp--make-wrapper funsym)
cb3a1380 254 `((name . ,elp--advice-name) (depth . -99)))))
231d8498
SM
255
256(defun elp--instrumented-p (sym)
257 (advice-member-p elp--advice-name sym))
20f5d145
RS
258
259(defun elp-restore-function (funsym)
260 "Restore an instrumented function to its original definition.
261Argument FUNSYM is the symbol of a defined function."
231d8498
SM
262 (interactive
263 (list
264 (intern
265 (completing-read "Function to restore: " obarray
266 #'elp--instrumented-p t))))
267 ;; If the function was the master, reset the master.
268 (if (eq funsym elp-master)
269 (setq elp-master nil
270 elp-record-p t))
271
272 ;; Zap the properties.
273 (put funsym elp-timer-info-property nil)
274
275 (advice-remove funsym elp--advice-name))
20f5d145 276
62f91105 277;;;###autoload
20f5d145 278(defun elp-instrument-list (&optional list)
edad5f97
CY
279 "Instrument, for profiling, all functions in `elp-function-list'.
280Use optional LIST if provided instead.
281If called interactively, read LIST using the minibuffer."
231d8498 282 (interactive "PList of functions to instrument: ") ;FIXME: Doesn't work?!
edad5f97 283 (unless (listp list)
19dd6a6c 284 (signal 'wrong-type-argument (list 'listp list)))
231d8498 285 (mapcar #'elp-instrument-function (or list elp-function-list)))
20f5d145 286
62f91105 287;;;###autoload
c0fd04c8
RS
288(defun elp-instrument-package (prefix)
289 "Instrument for profiling, all functions which start with PREFIX.
290For example, to instrument all ELP functions, do the following:
291
292 \\[elp-instrument-package] RET elp- RET"
d9532403
SM
293 (interactive
294 (list (completing-read "Prefix of package to instrument: "
295 obarray 'elp-profilable-p)))
940cf42e 296 (if (zerop (length prefix))
60370d40 297 (error "Instrumenting all Emacs functions would render Emacs unusable"))
c0fd04c8 298 (elp-instrument-list
d83cce6d
RS
299 (mapcar
300 'intern
d9532403 301 (all-completions prefix obarray 'elp-profilable-p))))
c0fd04c8 302
20f5d145
RS
303(defun elp-restore-list (&optional list)
304 "Restore the original definitions for all functions in `elp-function-list'.
305Use optional LIST if provided instead."
231d8498
SM
306 (interactive "PList of functions to restore: ") ;FIXME: Doesn't work!?
307 (mapcar #'elp-restore-function (or list elp-function-list)))
20f5d145
RS
308
309(defun elp-restore-all ()
1cc5b8f8 310 "Restore the original definitions of all functions being profiled."
20f5d145 311 (interactive)
231d8498 312 (mapatoms #'elp-restore-function))
20f5d145
RS
313\f
314(defun elp-reset-function (funsym)
315 "Reset the profiling information for FUNSYM."
316 (interactive "aFunction to reset: ")
317 (let ((info (get funsym elp-timer-info-property)))
318 (or info
60370d40 319 (error "%s is not instrumented for profiling" funsym))
20f5d145
RS
320 (aset info 0 0) ;reset call counter
321 (aset info 1 0.0) ;reset total time
322 ;; don't muck with aref 2 as that is the old symbol definition
323 ))
324
325(defun elp-reset-list (&optional list)
326 "Reset the profiling information for all functions in `elp-function-list'.
327Use optional LIST if provided instead."
231d8498 328 (interactive "PList of functions to reset: ") ;FIXME: Doesn't work!?
20f5d145
RS
329 (let ((list (or list elp-function-list)))
330 (mapcar 'elp-reset-function list)))
331
332(defun elp-reset-all ()
333 "Reset the profiling information for all functions being profiled."
334 (interactive)
231d8498
SM
335 (mapatoms (lambda (sym)
336 (if (get sym elp-timer-info-property)
337 (elp-reset-function sym)))))
20f5d145
RS
338
339(defun elp-set-master (funsym)
340 "Set the master function for profiling."
231d8498
SM
341 (interactive
342 (list
343 (intern
344 (completing-read "Master function: " obarray
345 #'elp--instrumented-p
346 t nil nil (if elp-master (symbol-name elp-master))))))
347 ;; When there's a master function, recording is turned off by default.
20f5d145
RS
348 (setq elp-master funsym
349 elp-record-p nil)
231d8498
SM
350 ;; Make sure master function is instrumented.
351 (or (elp--instrumented-p funsym)
20f5d145
RS
352 (elp-instrument-function funsym)))
353
354(defun elp-unset-master ()
1cc5b8f8 355 "Unset the master function."
5fe4899a 356 (interactive)
231d8498 357 ;; When there's no master function, recording is turned on by default.
20f5d145
RS
358 (setq elp-master nil
359 elp-record-p t))
360
361\f
9b267eba 362(defsubst elp-elapsed-time (start end)
3103f8b6 363 (float-time (time-subtract end start)))
20f5d145 364
231d8498
SM
365(defun elp--make-wrapper (funsym)
366 "Make the piece of advice that instruments FUNSYM."
367 (lambda (func &rest args)
368 "This function has been instrumented for profiling by the ELP.
20f5d145
RS
369ELP is the Emacs Lisp Profiler. To restore the function to its
370original definition, use \\[elp-restore-function] or \\[elp-restore-all]."
231d8498
SM
371 ;; turn on recording if this is the master function
372 (if (and elp-master
373 (eq funsym elp-master))
374 (setq elp-record-p t))
375 ;; get info vector and original function symbol
376 (let* ((info (get funsym elp-timer-info-property))
377 result)
378 (or func
379 (error "%s is not instrumented for profiling" funsym))
380 (if (not elp-record-p)
381 ;; when not recording, just call the original function symbol
382 ;; and return the results.
383 (setq result (apply func args))
384 ;; we are recording times
385 (let (enter-time exit-time)
386 ;; increment the call-counter
387 (cl-incf (aref info 0))
9b267eba
RS
388 (setq enter-time (current-time)
389 result (apply func args)
231d8498
SM
390 exit-time (current-time))
391 ;; calculate total time in function
392 (cl-incf (aref info 1) (elp-elapsed-time enter-time exit-time))
393 ))
394 ;; turn off recording if this is the master function
395 (if (and elp-master
396 (eq funsym elp-master))
397 (setq elp-record-p nil))
398 result)))
20f5d145
RS
399
400\f
401;; shut the byte-compiler up
402(defvar elp-field-len nil)
403(defvar elp-cc-len nil)
404(defvar elp-at-len nil)
405(defvar elp-et-len nil)
406
407(defun elp-sort-by-call-count (vec1 vec2)
408 ;; sort by highest call count. See `sort'.
409 (>= (aref vec1 0) (aref vec2 0)))
410
411(defun elp-sort-by-total-time (vec1 vec2)
412 ;; sort by highest total time spent in function. See `sort'.
413 (>= (aref vec1 1) (aref vec2 1)))
414
415(defun elp-sort-by-average-time (vec1 vec2)
416 ;; sort by highest average time spent in function. See `sort'.
417 (>= (aref vec1 2) (aref vec2 2)))
418
5fe4899a
RS
419(defsubst elp-pack-number (number width)
420 ;; pack the NUMBER string into WIDTH characters, watching out for
421 ;; very small or large numbers
422 (if (<= (length number) width)
423 number
424 ;; check for very large or small numbers
425 (if (string-match "^\\(.*\\)\\(e[+-].*\\)$" number)
426 (concat (substring
d9532403 427 (match-string 1 number)
5fe4899a
RS
428 0
429 (- width (match-end 2) (- (match-beginning 2)) 3))
430 "..."
d9532403
SM
431 (match-string 2 number))
432 (substring number 0 width))))
5fe4899a 433
20f5d145
RS
434(defun elp-output-result (resultvec)
435 ;; output the RESULTVEC into the results buffer. RESULTVEC is a 4 or
436 ;; more element vector where aref 0 is the call count, aref 1 is the
437 ;; total time spent in the function, aref 2 is the average time
438 ;; spent in the function, and aref 3 is the symbol's string
439 ;; name. All other elements in the vector are ignored.
440 (let* ((cc (aref resultvec 0))
441 (tt (aref resultvec 1))
442 (at (aref resultvec 2))
443 (symname (aref resultvec 3))
444 callcnt totaltime avetime)
20f5d145
RS
445 (setq callcnt (number-to-string cc)
446 totaltime (number-to-string tt)
447 avetime (number-to-string at))
c0fd04c8
RS
448 ;; possibly prune the results
449 (if (and elp-report-limit
450 (numberp elp-report-limit)
451 (< cc elp-report-limit))
452 nil
2b8d823f 453 (elp-output-insert-symname symname)
c0fd04c8
RS
454 (insert-char 32 (+ elp-field-len (- (length symname)) 2))
455 ;; print stuff out, formatting it nicely
456 (insert callcnt)
457 (insert-char 32 (+ elp-cc-len (- (length callcnt)) 2))
5fe4899a
RS
458 (let ((ttstr (elp-pack-number totaltime elp-et-len))
459 (atstr (elp-pack-number avetime elp-at-len)))
460 (insert ttstr)
461 (insert-char 32 (+ elp-et-len (- (length ttstr)) 2))
462 (insert atstr))
c0fd04c8 463 (insert "\n"))))
20f5d145 464
2b8d823f
MY
465(defvar elp-results-symname-map
466 (let ((map (make-sparse-keymap)))
d9532403 467 (define-key map [mouse-2] 'elp-results-jump-to-definition)
53112453 468 (define-key map [follow-link] 'mouse-face)
2b8d823f
MY
469 (define-key map "\C-m" 'elp-results-jump-to-definition)
470 map)
471 "Keymap used on the function name column." )
472
d9532403 473(defun elp-results-jump-to-definition (&optional event)
2b8d823f 474 "Jump to the definition of the function under the point."
d9532403
SM
475 (interactive (list last-nonmenu-event))
476 (if event (posn-set-point (event-end event)))
2b8d823f
MY
477 (find-function (get-text-property (point) 'elp-symname)))
478
479(defun elp-output-insert-symname (symname)
480 ;; Insert SYMNAME with text properties.
481 (insert (propertize symname
482 'elp-symname (intern symname)
483 'keymap elp-results-symname-map
484 'mouse-face 'highlight
2764748c 485 'face 'link
d9532403 486 'help-echo "mouse-2 or RET jumps to definition")))
2b8d823f 487
62f91105 488;;;###autoload
20f5d145
RS
489(defun elp-results ()
490 "Display current profiling results.
491If `elp-reset-after-results' is non-nil, then current profiling
1cc5b8f8 492information for all instrumented functions is reset after results are
20f5d145
RS
493displayed."
494 (interactive)
495 (let ((curbuf (current-buffer))
9b267eba
RS
496 (resultsbuf (if elp-recycle-buffers-p
497 (get-buffer-create elp-results-buffer)
498 (generate-new-buffer elp-results-buffer))))
20f5d145
RS
499 (set-buffer resultsbuf)
500 (erase-buffer)
20f5d145
RS
501 ;; get the length of the longest function name being profiled
502 (let* ((longest 0)
503 (title "Function Name")
504 (titlelen (length title))
505 (elp-field-len titlelen)
506 (cc-header "Call Count")
507 (elp-cc-len (length cc-header))
508 (et-header "Elapsed Time")
509 (elp-et-len (length et-header))
510 (at-header "Average Time")
511 (elp-at-len (length at-header))
231d8498 512 (resvec '())
20f5d145 513 ) ; end let*
231d8498
SM
514 (mapatoms
515 (lambda (funsym)
516 (when (elp--instrumented-p funsym)
517 (let* ((info (get funsym elp-timer-info-property))
518 (symname (format "%s" funsym))
519 (cc (aref info 0))
520 (tt (aref info 1)))
521 (if (not info)
522 (insert "No profiling information found for: "
523 symname)
524 (setq longest (max longest (length symname)))
525 (push
526 (vector cc tt (if (zerop cc)
527 0.0 ;avoid arithmetic div-by-zero errors
528 (/ (float tt) (float cc)))
529 symname)
530 resvec))))))
1fb7205b
NR
531 ;; If printing to stdout, insert the header so it will print.
532 ;; Otherwise use header-line-format.
533 (setq elp-field-len (max titlelen longest))
534 (if (or elp-use-standard-output noninteractive)
231d8498
SM
535 (progn
536 (insert title)
537 (if (> longest titlelen)
538 (progn
539 (insert-char 32 (- longest titlelen))))
540 (insert " " cc-header " " et-header " " at-header "\n")
541 (insert-char ?= elp-field-len)
542 (insert " ")
543 (insert-char ?= elp-cc-len)
544 (insert " ")
545 (insert-char ?= elp-et-len)
546 (insert " ")
547 (insert-char ?= elp-at-len)
548 (insert "\n"))
549 (let ((column 0))
550 (setq header-line-format
551 (mapconcat
552 (lambda (title)
553 (prog1
554 (concat
555 (propertize " "
556 'display (list 'space :align-to column)
557 'face 'fixed-pitch)
558 title)
559 (setq column (+ column 2
560 (if (= column 0)
561 elp-field-len
562 (length title))))))
563 (list title cc-header et-header at-header) ""))))
20f5d145
RS
564 ;; if sorting is enabled, then sort the results list. in either
565 ;; case, call elp-output-result to output the result in the
566 ;; buffer
567 (if elp-sort-by-function
568 (setq resvec (sort resvec elp-sort-by-function)))
9eaacc84 569 (mapc 'elp-output-result resvec))
20f5d145
RS
570 ;; now pop up results buffer
571 (set-buffer curbuf)
572 (pop-to-buffer resultsbuf)
9b267eba
RS
573 ;; copy results to standard-output?
574 (if (or elp-use-standard-output noninteractive)
231d8498 575 (princ (buffer-substring (point-min) (point-max)))
1fb7205b 576 (goto-char (point-min)))
20f5d145
RS
577 ;; reset profiling info if desired
578 (and elp-reset-after-results
579 (elp-reset-all))))
4edc4a39 580
41a79faa
JB
581(defun elp-unload-function ()
582 "Unload the Emacs Lisp Profiler."
583 (elp-restore-all)
584 ;; continue standard unloading
585 nil)
20f5d145
RS
586\f
587(provide 'elp)
5b689f60 588
60370d40 589;;; elp.el ends here