annotate lisp/emacs-lisp/profile.el @ 18423:3934c0e29d14

(profile-million): Variable moved.
author Richard M. Stallman <rms@gnu.org>
date Mon, 23 Jun 1997 19:12:42 +0000
parents 11218164bc54
children db005054f15d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2233
fb0ed5a1d0f3 Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 845
diff changeset
1 ;;; profile.el --- generate run time measurements of Emacs Lisp functions
789
71d052f72ac1 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 655
diff changeset
2
7298
4fd40bd394fe Update copyright.
Karl Heuer <kwzh@gnu.org>
parents: 5790
diff changeset
3 ;; Copyright (C) 1992, 1994 Free Software Foundation, Inc.
845
213978acbc1e entered into RCS
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 814
diff changeset
4
789
71d052f72ac1 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 655
diff changeset
5 ;; Author: Boaz Ben-Zvi <boaz@lcs.mit.edu>
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 792
diff changeset
6 ;; Created: 07 Feb 1992
789
71d052f72ac1 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 655
diff changeset
7 ;; Version: 1.0
71d052f72ac1 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 655
diff changeset
8 ;; Adapted-By: ESR
814
38b2499cb3e9 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 807
diff changeset
9 ;; Keywords: lisp, tools
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
10
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
11 ;; This file is part of GNU Emacs.
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
12
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
14 ;; it under the terms of the GNU General Public License as published by
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 792
diff changeset
15 ;; the Free Software Foundation; either version 2, or (at your option)
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
16 ;; any later version.
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
17
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
18 ;; GNU Emacs is distributed in the hope that it will be useful,
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
21 ;; GNU General Public License for more details.
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
22
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
23 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
26 ;; Boston, MA 02111-1307, USA.
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
27
789
71d052f72ac1 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 655
diff changeset
28 ;;; Commentary:
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
29
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
30 ;; DESCRIPTION:
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
31 ;; ------------
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
32 ;; This program can be used to monitor running time performance of Emacs Lisp
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
33 ;; functions. It takes a list of functions and report the real time spent
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
34 ;; inside these functions. It runs a process with a separate timer program.
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
35 ;; Caveat: the C code in ../lib-src/profile.c requires BSD-compatible
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
36 ;; time-of-day functions. If you're running an AT&T version prior to SVr4,
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
37 ;; you may have difficulty getting it to work. Your X library may supply
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
38 ;; the required routines if the standard C library does not.
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
39
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
40 ;; HOW TO USE:
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
41 ;; -----------
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
42 ;; Set the variable profile-functions-list to the list of functions
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
43 ;; (as symbols) You want to profile. Call M-x profile-functions to set
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
44 ;; this list on and start using your program. Note that profile-functions
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
45 ;; MUST be called AFTER all the functions in profile-functions-list have
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
46 ;; been loaded !! (This call modifies the code of the profiled functions.
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
47 ;; Hence if you reload these functions, you need to call profile-functions
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
48 ;; again! ).
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
49 ;; To display the results do M-x profile-results . For example:
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
50 ;;-------------------------------------------------------------------
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
51 ;; (setq profile-functions-list '(sokoban-set-mode-line sokoban-load-game
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
52 ;; sokoban-move-vertical sokoban-move))
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
53 ;; (load "sokoban")
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
54 ;; M-x profile-functions
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
55 ;; ... I play the sokoban game ..........
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
56 ;; M-x profile-results
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
57 ;;
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
58 ;; Function Time (Seconds.Useconds)
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
59 ;; ======== =======================
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
60 ;; sokoban-move 0.539088
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
61 ;; sokoban-move-vertical 0.410130
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
62 ;; sokoban-load-game 0.453235
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
63 ;; sokoban-set-mode-line 1.949203
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
64 ;;-----------------------------------------------------
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
65 ;; To clear all the settings to profile use profile-finish.
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
66 ;; To set one function at a time (instead of or in addition to setting the
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 7298
diff changeset
67 ;; above list and M-x profile-functions) use M-x profile-a-function.
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
68
789
71d052f72ac1 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 655
diff changeset
69 ;;; Code:
71d052f72ac1 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 655
diff changeset
70
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
71 ;;;
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
72 ;;; User modifiable VARIABLES
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
73 ;;;
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
74
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
75 (defvar profile-functions-list nil "*List of functions to profile.")
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
76 (defvar profile-timer-program
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
77 (concat exec-directory "profile")
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
78 "*Name of the profile timer program.")
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
79
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
80 ;;;
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
81 ;;; V A R I A B L E S
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
82 ;;;
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
83
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
84 (defvar profile-timer-process nil "Process running the timer.")
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
85 (defvar profile-time-list nil
15535
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
86 "List of cumulative calls and time for each profiled function.")
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
87 (defvar profile-init-list nil
16375
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
88 "List of entry time for each function.
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
89 Both how many times invoked and real time of start.")
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
90 (defvar profile-max-fun-name 0 "Max length of name of any function profiled.")
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
91 (defvar profile-temp-result- nil "Should NOT be used anywhere else.")
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
92 (defvar profile-time (cons 0 0) "Used to return result from a filter.")
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
93 (defvar profile-buffer "*profile*" "Name of profile buffer.")
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
94
18423
3934c0e29d14 (profile-million): Variable moved.
Richard M. Stallman <rms@gnu.org>
parents: 18383
diff changeset
95 (defconst profile-million 1000000)
3934c0e29d14 (profile-million): Variable moved.
Richard M. Stallman <rms@gnu.org>
parents: 18383
diff changeset
96
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
97 ;;;
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
98 ;;; F U N C T I O N S
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
99 ;;;
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
100
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
101 (defun profile-functions (&optional flist)
16375
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
102 "Profile all the functions listed in `profile-functions-list'.
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
103 With argument FLIST, use the list FLIST instead."
15535
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
104 (interactive "P")
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
105 (if (null flist) (setq flist profile-functions-list))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
106 (mapcar 'profile-a-function flist))
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
107
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
108 (defun profile-filter (process input)
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
109 "Filter for the timer process. Sets `profile-time' to the returned time."
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
110 (if (zerop (string-match "\\." input))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
111 (error "Bad output from %s" profile-timer-program)
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
112 (setcar profile-time
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
113 (string-to-int (substring input 0 (match-beginning 0))))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
114 (setcdr profile-time
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
115 (string-to-int (substring input (match-end 0))))))
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
116
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
117
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
118 (defun profile-print (entry)
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
119 "Print one ENTRY (from `profile-time-list')."
15535
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
120 (let* ((calls (car (cdr entry)))
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
121 (timec (cdr (cdr entry)))
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
122 (time (+ (car timec) (/ (cdr timec) (float profile-million))))
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
123 (avgtime 0.0))
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
124 (insert (format (concat "%-"
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
125 (int-to-string profile-max-fun-name)
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
126 "s%8d%11d.%06d")
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
127 (car entry) calls (car timec) (cdr timec))
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
128 (if (zerop calls)
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
129 "\n"
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
130 (format "%12d.%06d\n"
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
131 (truncate (setq avgtime (/ time calls)))
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
132 (truncate (* (- avgtime (ftruncate avgtime))
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
133 profile-million))))
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
134 )))
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
135
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
136 (defun profile-results ()
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
137 "Display profiling results in the buffer `*profile*'.
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
138 \(The buffer name comes from `profile-buffer'.)"
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
139 (interactive)
15535
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
140 (switch-to-buffer profile-buffer)
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
141 (erase-buffer)
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
142 (insert "Function" (make-string (- profile-max-fun-name 6) ? ))
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
143 (insert " Calls Total time (sec) Avg time per call\n")
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
144 (insert (make-string profile-max-fun-name ?=) " ")
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
145 (insert "====== ================ =================\n")
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
146 (mapcar 'profile-print profile-time-list))
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
147
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
148 (defun profile-reset-timer ()
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
149 (process-send-string profile-timer-process "z\n"))
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
150
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
151 (defun profile-check-zero-init-times (entry)
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
152 "If ENTRY has non zero time, give an error."
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
153 (let ((time (cdr (cdr entry))))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
154 (if (and (zerop (car time)) (zerop (cdr time))) nil ; OK
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
155 (error "Process timer died while making performance profile."))))
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
156
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
157 (defun profile-get-time ()
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
158 "Get time from timer process into `profile-time'."
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
159 ;; first time or if process dies
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
160 (if (and (processp profile-timer-process)
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
161 (eq 'run (process-status profile-timer-process))) nil
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
162 (setq profile-timer-process;; [re]start the timer process
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
163 (start-process "timer"
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
164 (get-buffer-create profile-buffer)
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
165 profile-timer-program))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
166 (set-process-filter profile-timer-process 'profile-filter)
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
167 (process-kill-without-query profile-timer-process)
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
168 (profile-reset-timer)
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
169 ;; check if timer died during time measurement
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
170 (mapcar 'profile-check-zero-init-times profile-init-list))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
171 ;; make timer process return current time
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
172 (process-send-string profile-timer-process "p\n")
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
173 (accept-process-output))
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
174
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
175 (defun profile-find-function (fun flist)
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
176 "Linear search for FUN in FLIST."
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
177 (if (null flist) nil
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
178 (if (eq fun (car (car flist))) (cdr (car flist))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
179 (profile-find-function fun (cdr flist)))))
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
180
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
181 (defun profile-start-function (fun)
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
182 "On entry, keep current time for function FUN."
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
183 ;; assumes that profile-time contains the current time
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
184 (let ((init-time (profile-find-function fun profile-init-list)))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
185 (if (null init-time) (error "Function %s missing from list" fun))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
186 (if (not (zerop (car init-time)));; is it a recursive call ?
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
187 (setcar init-time (1+ (car init-time)))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
188 (setcar init-time 1) ; mark first entry
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
189 (setq init-time (cdr init-time))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
190 (setcar init-time (car profile-time))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
191 (setcdr init-time (cdr profile-time)))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
192 ))
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
193
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
194 (defun profile-update-function (fun)
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
195 "When the call to the function FUN is finished, add its run time."
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
196 ;; assumes that profile-time contains the current time
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
197 (let ((init-time (profile-find-function fun profile-init-list))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
198 (accum (profile-find-function fun profile-time-list))
15535
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
199 calls time sec usec)
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
200 (if (or (null init-time)
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
201 (null accum)) (error "Function %s missing from list" fun))
15535
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
202 (setq calls (car accum))
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
203 (setq time (cdr accum))
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
204 (setcar init-time (1- (car init-time))) ; pop one level in recursion
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
205 (if (not (zerop (car init-time)))
15535
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
206 nil ; in some recursion level,
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
207 ; do not update cumulated time
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
208 (setcar accum (1+ calls))
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
209 (setq init-time (cdr init-time))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
210 (setq sec (- (car profile-time) (car init-time))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
211 usec (- (cdr profile-time) (cdr init-time)))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
212 (setcar init-time 0) ; reset time to check for error
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
213 (setcdr init-time 0) ; in case timer process dies
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
214 (if (>= usec 0) nil
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
215 (setq usec (+ usec profile-million))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
216 (setq sec (1- sec)))
15535
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
217 (setcar time (+ sec (car time)))
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
218 (setcdr time (+ usec (cdr time)))
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
219 (if (< (cdr time) profile-million) nil
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
220 (setcar time (1+ (car time)))
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
221 (setcdr time (- (cdr time) profile-million)))
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
222 )))
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
223
14791
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
224 (defun profile-convert-byte-code (function)
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
225 (let ((defn (symbol-function function)))
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
226 (if (byte-code-function-p defn)
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
227 ;; It is a compiled code object.
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
228 (let* ((contents (append defn nil))
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
229 (body
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
230 (list (list 'byte-code (nth 1 contents)
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
231 (nth 2 contents) (nth 3 contents)))))
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
232 (if (nthcdr 5 contents)
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
233 (setq body (cons (list 'interactive (nth 5 contents)) body)))
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
234 (if (nth 4 contents)
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
235 ;; Use `documentation' here, to get the actual string,
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
236 ;; in case the compiled function has a reference
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
237 ;; to the .elc file.
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
238 (setq body (cons (documentation function) body)))
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
239 (fset function (cons 'lambda (cons (car contents) body)))))))
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
240
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
241 (defun profile-a-function (fun)
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
242 "Profile the function FUN."
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
243 (interactive "aFunction to profile: ")
14791
7d2e0f0d9bf7 (profile-convert-byte-code): New function.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
244 (profile-convert-byte-code fun)
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
245 (let ((def (symbol-function fun)) (funlen (length (symbol-name fun))))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
246 (if (eq (car def) 'lambda) nil
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
247 (error "To profile: %s must be a user-defined function" fun))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
248 (setq profile-time-list ; add a new entry
15535
8895613b61dd (profile-functions): No need to assume that the
Richard M. Stallman <rms@gnu.org>
parents: 14791
diff changeset
249 (cons (cons fun (cons 0 (cons 0 0))) profile-time-list))
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
250 (setq profile-init-list ; add a new entry
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
251 (cons (cons fun (cons 0 (cons 0 0))) profile-init-list))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
252 (if (< profile-max-fun-name funlen) (setq profile-max-fun-name funlen))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
253 (fset fun (profile-fix-fun fun def))))
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
254
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
255 (defun profile-fix-fun (fun def)
16375
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
256 "Take function FUN and return it fixed for profiling.
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
257 DEF is (symbol-function FUN)."
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
258 (let (prefix first second third (count 2) inter suffix)
16375
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
259 (if (< (length def) 3)
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
260 nil ; nothing to see
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
261 (setq first (car def) second (car (cdr def))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
262 third (car (nthcdr 2 def)))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
263 (setq prefix (list first second))
16375
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
264 ;; Skip the doc string, if there is a string
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
265 ;; which serves only as a doc string,
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
266 ;; and put it in PREFIX.
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
267 (if (or (not (stringp third)) (not (nthcdr 3 def)))
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
268 ;; Either no doc string, or it is also the function value.
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
269 (setq inter third)
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
270 ;; Skip the doc string,
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
271 (setq count 3
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
272 prefix (nconc prefix (list third))
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
273 inter (car (nthcdr 3 def))))
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
274 ;; Check for an interactive spec.
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
275 ;; If found, put it inu PREFIX and skip it.
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
276 (if (not (and (listp inter)
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
277 (eq (car inter) 'interactive)))
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
278 nil
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
279 (setq prefix (nconc prefix (list inter)))
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
280 (setq count (1+ count))) ; skip this sexp for suffix
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
281 ;; Set SUFFIX to the function body forms.
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
282 (setq suffix (nthcdr count def))
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
283 (if (equal (car suffix) '(profile-get-time))
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
284 nil
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
285 ;; Prepare new function definition.
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
286 (nconc prefix
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
287 (list '(profile-get-time)) ; read time
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
288 (list (list 'profile-start-function
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
289 (list 'quote fun)))
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
290 (list (list 'setq 'profile-temp-result-
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
291 (nconc (list 'progn) suffix)))
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
292 (list '(profile-get-time)) ; read time
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
293 (list (list 'profile-update-function
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
294 (list 'quote fun)))
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
295 (list 'profile-temp-result-)
2dacebab0fd4 Delete several \n\'s.
Richard M. Stallman <rms@gnu.org>
parents: 15535
diff changeset
296 )))))
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
297
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
298 (defun profile-restore-fun (fun)
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
299 "Restore profiled function FUN to its original state."
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
300 (let ((def (symbol-function (car fun))) body index)
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
301 ;; move index beyond header
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
302 (setq index (cdr def))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
303 (if (stringp (car (cdr index))) (setq index (cdr index)))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
304 (if (and (listp (car (cdr index)))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
305 (eq (car (car (cdr index))) 'interactive))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
306 (setq index (cdr index)))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
307 (setq body (car (nthcdr 3 index)))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
308 (if (and (listp body) ; the right element ?
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
309 (eq (car (cdr body)) 'profile-temp-result-))
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
310 (setcdr index (cdr (car (cdr (cdr body))))))))
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
311
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
312 (defun profile-finish ()
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
313 "Stop profiling functions. Clear all the settings."
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
314 (interactive)
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
315 (mapcar 'profile-restore-fun profile-time-list)
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
316 (setq profile-max-fun-name 0)
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
317 (setq profile-time-list nil)
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
318 (setq profile-init-list nil))
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
319
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
320 (defun profile-quit ()
5790
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
321 "Kill the timer process."
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
322 (interactive)
a539cda9df58 Comment changes and doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 4567
diff changeset
323 (process-send-string profile-timer-process "q\n"))
655
02591d9e7ad3 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
324
18383
11218164bc54 Add provide call.
Richard M. Stallman <rms@gnu.org>
parents: 16375
diff changeset
325 (provide 'profile)
11218164bc54 Add provide call.
Richard M. Stallman <rms@gnu.org>
parents: 16375
diff changeset
326
2233
fb0ed5a1d0f3 Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 845
diff changeset
327 ;;; profile.el ends here