Mercurial > emacs
annotate lisp/emacs-lisp/disass.el @ 13442:7609e8a05862
Fexpt): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 10 Nov 1995 04:29:21 +0000 |
parents | 53bbedbefdb2 |
children | 83f275dcd93a |
rev | line source |
---|---|
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
1 ;;; disass.el --- disassembler for compiled Emacs Lisp code |
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
2 |
845 | 3 ;;; Copyright (C) 1986, 1991 Free Software Foundation, Inc. |
4 | |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
5 ;; Author: Doug Cutting <doug@csli.stanford.edu> |
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
6 ;; Jamie Zawinski <jwz@lucid.com> |
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
7 ;; Maintainer: Jamie Zawinski <jwz@lucid.com> |
2247
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1821
diff
changeset
|
8 ;; Keywords: internal |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
9 |
757 | 10 ;; This file is part of GNU Emacs. |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
806 | 14 ;; the Free Software Foundation; either version 2, or (at your option) |
757 | 15 ;; any later version. |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
24 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
25 | |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
26 ;;; Commentary: |
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
27 |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
28 ;; The single entry point, `disassemble', disassembles a code object generated |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
29 ;; by the Emacs Lisp byte-compiler. This doesn't invert the compilation |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
30 ;; operation, not by a long shot, but it's useful for debugging. |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
31 |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
32 ;; |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
33 ;; Original version by Doug Cutting (doug@csli.stanford.edu) |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
34 ;; Substantially modified by Jamie Zawinski <jwz@lucid.com> for |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
35 ;; the new lapcode-based byte compiler. |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
36 |
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
37 ;;; Code: |
757 | 38 |
39 ;;; The variable byte-code-vector is defined by the new bytecomp.el. | |
802 | 40 ;;; The function byte-decompile-lapcode is defined in byte-opt.el. |
41 ;;; Since we don't use byte-decompile-lapcode, let's try not loading byte-opt. | |
1606
4303c30b29de
* disass.el (byte-compile): Specify that the 'byte-compile feature
Jim Blandy <jimb@redhat.com>
parents:
845
diff
changeset
|
42 (require 'byte-compile "bytecomp") |
757 | 43 |
8293
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
44 (defvar disassemble-column-1-indent 8 "*") |
757 | 45 (defvar disassemble-column-2-indent 10 "*") |
46 | |
47 (defvar disassemble-recursive-indent 3 "*") | |
48 | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1606
diff
changeset
|
49 ;;;###autoload |
757 | 50 (defun disassemble (object &optional buffer indent interactive-p) |
51 "Print disassembled code for OBJECT in (optional) BUFFER. | |
52 OBJECT can be a symbol defined as a function, or a function itself | |
53 \(a lambda expression or a compiled-function object). | |
54 If OBJECT is not already compiled, we compile it, but do not | |
55 redefine OBJECT if it is a symbol." | |
56 (interactive (list (intern (completing-read "Disassemble function: " | |
57 obarray 'fboundp t)) | |
58 nil 0 t)) | |
59 (if (eq (car-safe object) 'byte-code) | |
60 (setq object (list 'lambda () object))) | |
61 (or indent (setq indent 0)) ;Default indent to zero | |
62 (save-excursion | |
63 (if (or interactive-p (null buffer)) | |
64 (with-output-to-temp-buffer "*Disassemble*" | |
65 (set-buffer "*Disassemble*") | |
66 (disassemble-internal object indent (not interactive-p))) | |
67 (set-buffer buffer) | |
68 (disassemble-internal object indent nil))) | |
69 nil) | |
70 | |
71 | |
72 (defun disassemble-internal (obj indent interactive-p) | |
73 (let ((macro 'nil) | |
74 (name 'nil) | |
75 (doc 'nil) | |
76 args) | |
77 (while (symbolp obj) | |
78 (setq name obj | |
79 obj (symbol-function obj))) | |
80 (if (subrp obj) | |
81 (error "Can't disassemble #<subr %s>" name)) | |
3767
660b7b4e3e40
(disassemble-internal): If function is autoload, load it.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
82 (if (and (listp obj) (eq (car obj) 'autoload)) |
660b7b4e3e40
(disassemble-internal): If function is autoload, load it.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
83 (progn |
660b7b4e3e40
(disassemble-internal): If function is autoload, load it.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
84 (load (nth 1 obj)) |
660b7b4e3e40
(disassemble-internal): If function is autoload, load it.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
85 (setq obj (symbol-function name)))) |
757 | 86 (if (eq (car-safe obj) 'macro) ;handle macros |
87 (setq macro t | |
88 obj (cdr obj))) | |
4789
86318d7728f5
(disassemble-internal): Allow a call to byte-code as argument.
Richard M. Stallman <rms@gnu.org>
parents:
3767
diff
changeset
|
89 (if (and (listp obj) (eq (car obj) 'byte-code)) |
86318d7728f5
(disassemble-internal): Allow a call to byte-code as argument.
Richard M. Stallman <rms@gnu.org>
parents:
3767
diff
changeset
|
90 (setq obj (list 'lambda nil obj))) |
757 | 91 (if (and (listp obj) (not (eq (car obj) 'lambda))) |
92 (error "not a function")) | |
93 (if (consp obj) | |
94 (if (assq 'byte-code obj) | |
95 nil | |
96 (if interactive-p (message (if name | |
97 "Compiling %s's definition..." | |
98 "Compiling definition...") | |
99 name)) | |
100 (setq obj (byte-compile obj)) | |
101 (if interactive-p (message "Done compiling. Disassembling...")))) | |
102 (cond ((consp obj) | |
103 (setq obj (cdr obj)) ;throw lambda away | |
104 (setq args (car obj)) ;save arg list | |
105 (setq obj (cdr obj))) | |
106 (t | |
107 (setq args (aref obj 0)))) | |
108 (if (zerop indent) ; not a nested function | |
109 (progn | |
110 (indent-to indent) | |
111 (insert (format "byte code%s%s%s:\n" | |
112 (if (or macro name) " for" "") | |
113 (if macro " macro" "") | |
114 (if name (format " %s" name) ""))))) | |
115 (let ((doc (if (consp obj) | |
116 (and (stringp (car obj)) (car obj)) | |
13340
53bbedbefdb2
(disassemble-internal): Handle lazy-loaded doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
8293
diff
changeset
|
117 ;; Use documentation to get lazy-loaded doc string |
53bbedbefdb2
(disassemble-internal): Handle lazy-loaded doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
8293
diff
changeset
|
118 (documentation obj t)))) |
757 | 119 (if (and doc (stringp doc)) |
120 (progn (and (consp obj) (setq obj (cdr obj))) | |
121 (indent-to indent) | |
122 (princ " doc: " (current-buffer)) | |
123 (if (string-match "\n" doc) | |
124 (setq doc (concat (substring doc 0 (match-beginning 0)) | |
125 " ..."))) | |
126 (insert doc "\n")))) | |
127 (indent-to indent) | |
128 (insert " args: ") | |
129 (prin1 args (current-buffer)) | |
130 (insert "\n") | |
131 (let ((interactive (cond ((consp obj) | |
132 (assq 'interactive obj)) | |
133 ((> (length obj) 5) | |
134 (list 'interactive (aref obj 5)))))) | |
135 (if interactive | |
136 (progn | |
137 (setq interactive (nth 1 interactive)) | |
138 (if (eq (car-safe (car-safe obj)) 'interactive) | |
139 (setq obj (cdr obj))) | |
140 (indent-to indent) | |
141 (insert " interactive: ") | |
142 (if (eq (car-safe interactive) 'byte-code) | |
143 (progn | |
144 (insert "\n") | |
145 (disassemble-1 interactive | |
146 (+ indent disassemble-recursive-indent))) | |
147 (let ((print-escape-newlines t)) | |
148 (prin1 interactive (current-buffer)))) | |
149 (insert "\n")))) | |
150 (cond ((and (consp obj) (assq 'byte-code obj)) | |
151 (disassemble-1 (assq 'byte-code obj) indent)) | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1606
diff
changeset
|
152 ((byte-code-function-p obj) |
757 | 153 (disassemble-1 obj indent)) |
154 (t | |
155 (insert "Uncompiled body: ") | |
156 (let ((print-escape-newlines t)) | |
157 (prin1 (if (cdr obj) (cons 'progn obj) (car obj)) | |
158 (current-buffer)))))) | |
159 (if interactive-p | |
160 (message ""))) | |
161 | |
162 | |
163 (defun disassemble-1 (obj indent) | |
164 "Prints the byte-code call OBJ in the current buffer. | |
165 OBJ should be a call to BYTE-CODE generated by the byte compiler." | |
166 (let (bytes constvec) | |
167 (if (consp obj) | |
168 (setq bytes (car (cdr obj)) ;the byte code | |
169 constvec (car (cdr (cdr obj)))) ;constant vector | |
13340
53bbedbefdb2
(disassemble-internal): Handle lazy-loaded doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
8293
diff
changeset
|
170 ;; If it is lazy-loaded, load it now |
53bbedbefdb2
(disassemble-internal): Handle lazy-loaded doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
8293
diff
changeset
|
171 (fetch-bytecode obj) |
757 | 172 (setq bytes (aref obj 1) |
173 constvec (aref obj 2))) | |
174 (let ((lap (byte-decompile-bytecode bytes constvec)) | |
8293
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
175 op arg opname pc-value) |
757 | 176 (let ((tagno 0) |
177 tmp | |
178 (lap lap)) | |
179 (while (setq tmp (assq 'TAG lap)) | |
180 (setcar (cdr tmp) (setq tagno (1+ tagno))) | |
181 (setq lap (cdr (memq tmp lap))))) | |
182 (while lap | |
8293
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
183 ;; Take off the pc value of the next thing |
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
184 ;; and put it in pc-value. |
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
185 (setq pc-value nil) |
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
186 (if (numberp (car lap)) |
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
187 (setq pc-value (car lap) |
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
188 lap (cdr lap))) |
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
189 ;; Fetch the next op and its arg. |
757 | 190 (setq op (car (car lap)) |
191 arg (cdr (car lap))) | |
8293
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
192 (setq lap (cdr lap)) |
757 | 193 (indent-to indent) |
194 (if (eq 'TAG op) | |
8293
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
195 (progn |
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
196 ;; We have a label. Display it, but first its pc value. |
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
197 (if pc-value |
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
198 (insert (format "%d:" pc-value))) |
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
199 (insert (int-to-string (car arg)))) |
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
200 ;; We have an instruction. Display its pc value first. |
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
201 (if pc-value |
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
202 (insert (format "%d" pc-value))) |
757 | 203 (indent-to (+ indent disassemble-column-1-indent)) |
204 (if (and op | |
205 (string-match "^byte-" (setq opname (symbol-name op)))) | |
206 (setq opname (substring opname 5)) | |
207 (setq opname "<not-an-opcode>")) | |
208 (if (eq op 'byte-constant2) | |
209 (insert " #### shouldn't have seen constant2 here!\n ")) | |
210 (insert opname) | |
211 (indent-to (+ indent disassemble-column-1-indent | |
212 disassemble-column-2-indent | |
213 -1)) | |
214 (insert " ") | |
215 (cond ((memq op byte-goto-ops) | |
216 (insert (int-to-string (nth 1 arg)))) | |
217 ((memq op '(byte-call byte-unbind | |
218 byte-listN byte-concatN byte-insertN)) | |
219 (insert (int-to-string arg))) | |
220 ((memq op '(byte-varref byte-varset byte-varbind)) | |
221 (prin1 (car arg) (current-buffer))) | |
222 ((memq op '(byte-constant byte-constant2)) | |
223 ;; it's a constant | |
224 (setq arg (car arg)) | |
225 ;; but if the value of the constant is compiled code, then | |
226 ;; recursively disassemble it. | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1606
diff
changeset
|
227 (cond ((or (byte-code-function-p arg) |
757 | 228 (and (eq (car-safe arg) 'lambda) |
229 (assq 'byte-code arg)) | |
230 (and (eq (car-safe arg) 'macro) | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1606
diff
changeset
|
231 (or (byte-code-function-p (cdr arg)) |
757 | 232 (and (eq (car-safe (cdr arg)) 'lambda) |
233 (assq 'byte-code (cdr arg)))))) | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1606
diff
changeset
|
234 (cond ((byte-code-function-p arg) |
757 | 235 (insert "<compiled-function>\n")) |
236 ((eq (car-safe arg) 'lambda) | |
237 (insert "<compiled lambda>")) | |
238 (t (insert "<compiled macro>\n"))) | |
239 (disassemble-internal | |
240 arg | |
241 (+ indent disassemble-recursive-indent 1) | |
242 nil)) | |
243 ((eq (car-safe arg) 'byte-code) | |
244 (insert "<byte code>\n") | |
245 (disassemble-1 ;recurse on byte-code object | |
246 arg | |
247 (+ indent disassemble-recursive-indent))) | |
248 ((eq (car-safe (car-safe arg)) 'byte-code) | |
249 (insert "(<byte code>...)\n") | |
250 (mapcar ;recurse on list of byte-code objects | |
251 '(lambda (obj) | |
252 (disassemble-1 | |
253 obj | |
254 (+ indent disassemble-recursive-indent))) | |
255 arg)) | |
256 (t | |
257 ;; really just a constant | |
258 (let ((print-escape-newlines t)) | |
259 (prin1 arg (current-buffer)))))) | |
260 ) | |
8293
74218ea236fe
(disassemble-1): Display the pc values.
Richard M. Stallman <rms@gnu.org>
parents:
4789
diff
changeset
|
261 (insert "\n"))))) |
757 | 262 nil) |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
263 |
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
806
diff
changeset
|
264 ;;; disass.el ends here |