Mercurial > hg > xemacs-beta
annotate lisp/bytecomp.el @ 5292:e4305eb6fb8c
Merge some permissions corrections to trunk.
| author | Stephen J. Turnbull <stephen@xemacs.org> |
|---|---|
| date | Mon, 18 Oct 2010 23:21:23 +0900 |
| parents | dcc34e28cd84 |
| children | bbff29a01820 |
| rev | line source |
|---|---|
| 428 | 1 ;;; bytecomp.el --- compilation of Lisp code into byte code. |
| 2 | |
| 3 ;;; Copyright (C) 1985-1987, 1991-1994 Free Software Foundation, Inc. | |
| 4 ;;; Copyright (C) 1996 Ben Wing. | |
| 5 | |
| 442 | 6 ;; Authors: Jamie Zawinski <jwz@jwz.org> |
| 428 | 7 ;; Hallvard Furuseth <hbf@ulrik.uio.no> |
| 442 | 8 ;; Ben Wing <ben@xemacs.org> |
| 9 ;; Martin Buchholz <martin@xemacs.org> | |
| 10 ;; Richard Stallman <rms@gnu.org> | |
| 11 ;; Keywords: internal lisp | |
| 12 | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
13 (defconst byte-compile-version "2.28 XEmacs; 2009-08-09.") |
| 428 | 14 |
| 15 ;; This file is part of XEmacs. | |
| 16 | |
| 17 ;; XEmacs is free software; you can redistribute it and/or modify it | |
| 18 ;; under the terms of the GNU General Public License as published by | |
| 19 ;; the Free Software Foundation; either version 2, or (at your option) | |
| 20 ;; any later version. | |
| 21 | |
| 22 ;; XEmacs is distributed in the hope that it will be useful, but | |
| 23 ;; WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 24 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 25 ;; General Public License for more details. | |
| 26 | |
| 27 ;; You should have received a copy of the GNU General Public License | |
| 28 ;; along with XEmacs; see the file COPYING. If not, write to the | |
| 29 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 30 ;; Boston, MA 02111-1307, USA. | |
| 31 | |
| 32 ;;; Synched up with: FSF 19.30. | |
| 33 | |
| 34 ;;; Commentary: | |
| 35 | |
| 36 ;; The Emacs Lisp byte compiler. This crunches lisp source into a | |
| 442 | 37 ;; sort of p-code (`bytecode') which takes up less space and can be |
| 38 ;; interpreted faster. First, the source code forms are converted to | |
| 39 ;; an intermediate form, `lapcode' [`LAP' == `Lisp Assembly Program'] | |
| 40 ;; which is much easier to manipulate than bytecode. Then the lapcode | |
| 41 ;; is converted to bytecode, which can be considered to be actual | |
| 42 ;; machine language. Optimizations can occur at either the source | |
| 43 ;; level or the lapcode level. | |
| 44 | |
| 45 ;; The user entry points are byte-compile-file, | |
| 428 | 46 ;; byte-recompile-directory and byte-compile-buffer. |
| 47 | |
| 48 ;;; Code: | |
| 49 | |
| 50 ;;; ======================================================================== | |
| 51 ;;; Entry points: | |
| 52 ;;; byte-recompile-directory, byte-compile-file, | |
| 53 ;;; batch-byte-compile, batch-byte-recompile-directory, | |
| 54 ;;; byte-compile, compile-defun, | |
| 55 ;;; display-call-tree | |
| 56 ;;; RMS says: | |
| 57 ;;; (byte-compile-buffer and byte-compile-and-load-file were turned off | |
| 58 ;;; because they are not terribly useful and get in the way of completion.) | |
| 59 ;;; But I'm leaving them. --ben | |
| 60 | |
| 61 ;;; This version of the byte compiler has the following improvements: | |
| 62 ;;; + optimization of compiled code: | |
| 63 ;;; - removal of unreachable code; | |
| 64 ;;; - removal of calls to side-effectless functions whose return-value | |
| 65 ;;; is unused; | |
| 66 ;;; - compile-time evaluation of safe constant forms, such as (consp nil) | |
| 67 ;;; and (ash 1 6); | |
| 68 ;;; - open-coding of literal lambdas; | |
| 69 ;;; - peephole optimization of emitted code; | |
| 70 ;;; - trivial functions are left uncompiled for speed. | |
| 71 ;;; + support for inline functions; | |
| 72 ;;; + compile-time evaluation of arbitrary expressions; | |
| 73 ;;; + compile-time warning messages for: | |
| 74 ;;; - functions being redefined with incompatible arglists; | |
| 75 ;;; - functions being redefined as macros, or vice-versa; | |
| 76 ;;; - functions or macros defined multiple times in the same file; | |
| 77 ;;; - functions being called with the incorrect number of arguments; | |
| 78 ;;; - functions being called which are not defined globally, in the | |
| 79 ;;; file, or as autoloads; | |
| 80 ;;; - assignment and reference of undeclared free variables; | |
| 81 ;;; - various syntax errors; | |
| 82 ;;; + correct compilation of nested defuns, defmacros, defvars and defsubsts; | |
| 83 ;;; + correct compilation of top-level uses of macros; | |
| 84 ;;; + the ability to generate a histogram of functions called. | |
| 85 | |
| 86 ;;; User customization variables: | |
| 87 ;;; | |
| 88 ;;; byte-compile-verbose Whether to report the function currently being | |
| 89 ;;; compiled in the minibuffer; | |
| 90 ;;; byte-optimize Whether to do optimizations; this may be | |
| 91 ;;; t, nil, 'source, or 'byte; | |
| 92 ;;; byte-optimize-log Whether to report (in excruciating detail) | |
| 93 ;;; exactly which optimizations have been made. | |
| 94 ;;; This may be t, nil, 'source, or 'byte; | |
| 95 ;;; byte-compile-error-on-warn Whether to stop compilation when a warning is | |
| 96 ;;; produced; | |
| 97 ;;; byte-compile-delete-errors Whether the optimizer may delete calls or | |
| 98 ;;; variable references that are side-effect-free | |
| 99 ;;; except that they may return an error. | |
| 100 ;;; byte-compile-generate-call-tree Whether to generate a histogram of | |
| 101 ;;; function calls. This can be useful for | |
| 102 ;;; finding unused functions, as well as simple | |
| 103 ;;; performance metering. | |
| 104 ;;; byte-compile-warnings List of warnings to issue, or t. May contain | |
| 105 ;;; 'free-vars (references to variables not in the | |
| 106 ;;; current lexical scope) | |
| 107 ;;; 'unused-vars (non-global variables bound but | |
| 108 ;;; not referenced) | |
| 109 ;;; 'unresolved (calls to unknown functions) | |
| 110 ;;; 'callargs (lambda calls with args that don't | |
| 111 ;;; match the lambda's definition) | |
| 112 ;;; 'subr-callargs (calls to subrs with args that | |
| 113 ;;; don't match the subr's definition) | |
| 114 ;;; 'redefine (function cell redefined from | |
| 115 ;;; a macro to a lambda or vice versa, | |
| 116 ;;; or redefined to take other args) | |
| 117 ;;; 'obsolete (obsolete variables and functions) | |
| 118 ;;; 'pedantic (references to Emacs-compatible | |
| 119 ;;; symbols) | |
|
4719
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
120 ;;; 'discarded-consing (use of mapcar instead of |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
121 ;;; mapc, and similar) |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
122 ;;; 'quoted-lambda (quoting a lambda expression |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
123 ;;; as data, not as a function, |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
124 ;;; and using it in a function |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
125 ;;; context ) |
| 428 | 126 ;;; byte-compile-emacs19-compatibility Whether the compiler should |
| 127 ;;; generate .elc files which can be loaded into | |
| 128 ;;; generic emacs 19. | |
| 129 ;;; emacs-lisp-file-regexp Regexp for the extension of source-files; | |
| 444 | 130 ;;; see also the function `byte-compile-dest-file'. |
| 428 | 131 ;;; byte-compile-overwrite-file If nil, delete old .elc files before saving. |
| 132 ;;; | |
| 133 ;;; Most of the above parameters can also be set on a file-by-file basis; see | |
| 134 ;;; the documentation of the `byte-compiler-options' macro. | |
| 135 | |
| 136 ;;; New Features: | |
| 137 ;;; | |
| 138 ;;; o The form `defsubst' is just like `defun', except that the function | |
| 139 ;;; generated will be open-coded in compiled code which uses it. This | |
| 140 ;;; means that no function call will be generated, it will simply be | |
| 141 ;;; spliced in. Lisp functions calls are very slow, so this can be a | |
| 142 ;;; big win. | |
| 143 ;;; | |
| 144 ;;; You can generally accomplish the same thing with `defmacro', but in | |
| 145 ;;; that case, the defined procedure can't be used as an argument to | |
| 146 ;;; mapcar, etc. | |
| 147 ;;; | |
| 148 ;;; o You can make a given function be inline even if it has already been | |
| 149 ;;; defined with `defun' by using the `proclaim-inline' form like so: | |
| 150 ;;; (proclaim-inline my-function) | |
| 151 ;;; This is, in fact, exactly what `defsubst' does. To make a function no | |
| 152 ;;; longer be inline, you must use `proclaim-notinline'. Beware that if | |
| 153 ;;; you define a function with `defsubst' and later redefine it with | |
| 444 | 154 ;;; `defun', it will still be open-coded until you use `proclaim-notinline'. |
| 428 | 155 ;;; |
| 156 ;;; o You can also open-code one particular call to a function without | |
| 157 ;;; open-coding all calls. Use the 'inline' form to do this, like so: | |
| 158 ;;; | |
| 159 ;;; (inline (foo 1 2 3)) ;; `foo' will be open-coded | |
| 160 ;;; or... | |
| 161 ;;; (inline ;; `foo' and `baz' will be | |
| 162 ;;; (foo 1 2 3 (bar 5)) ;; open-coded, but `bar' will not. | |
| 163 ;;; (baz 0)) | |
| 164 ;;; | |
| 165 ;;; o It is possible to open-code a function in the same file it is defined | |
| 166 ;;; in without having to load that file before compiling it. the | |
| 167 ;;; byte-compiler has been modified to remember function definitions in | |
| 168 ;;; the compilation environment in the same way that it remembers macro | |
| 169 ;;; definitions. | |
| 170 ;;; | |
| 171 ;;; o Forms like ((lambda ...) ...) are open-coded. | |
| 172 ;;; | |
| 444 | 173 ;;; o The form `eval-when-compile' is like `progn', except that the body |
| 428 | 174 ;;; is evaluated at compile-time. When it appears at top-level, this |
| 175 ;;; is analogous to the Common Lisp idiom (eval-when (compile) ...). | |
| 176 ;;; When it does not appear at top-level, it is similar to the | |
| 177 ;;; Common Lisp #. reader macro (but not in interpreted code). | |
| 178 ;;; | |
| 444 | 179 ;;; o The form `eval-and-compile' is similar to `eval-when-compile', |
| 180 ;;; but the whole form is evalled both at compile-time and at run-time. | |
| 428 | 181 ;;; |
| 182 ;;; o The command M-x byte-compile-and-load-file does what you'd think. | |
| 183 ;;; | |
| 444 | 184 ;;; o The command `compile-defun' is analogous to `eval-defun'. |
| 428 | 185 ;;; |
| 444 | 186 ;;; o If you run `byte-compile-file' on a filename which is visited in a |
| 428 | 187 ;;; buffer, and that buffer is modified, you are asked whether you want |
| 188 ;;; to save the buffer before compiling. | |
| 189 ;;; | |
| 190 ;;; o You can add this to /etc/magic to make file(1) recognize the files | |
| 191 ;;; generated by this compiler: | |
| 192 ;;; | |
| 613 | 193 ;;; 0 string ;ELC XEmacs Lisp compiled file, |
| 428 | 194 ;;; >4 byte x version %d |
| 195 ;;; | |
| 196 ;;; TO DO: | |
| 197 ;;; | |
| 198 ;;; o Should implement declarations and proclamations, notably special, | |
| 199 ;;; unspecial, and ignore. Do this in such a way as to not break cl.el. | |
| 200 ;;; o The bound-but-not-used warnings are not issued for variables whose | |
| 201 ;;; bindings were established in the arglist, due to the lack of an | |
| 202 ;;; ignore declaration. Once ignore exists, this should be turned on. | |
| 203 ;;; o Warn about functions and variables defined but not used? | |
| 204 ;;; Maybe add some kind of `export' declaration for this? | |
| 205 ;;; (With interactive functions being automatically exported?) | |
| 206 ;;; o Any reference to a variable, even one which is a no-op, will cause | |
| 207 ;;; the warning not to be given. Possibly we could use the for-effect | |
| 208 ;;; flag to determine when this reference is useless; possibly more | |
| 209 ;;; complex flow analysis would be necessary. | |
| 210 ;;; o If the optimizer deletes a variable reference, we might be left with | |
| 211 ;;; a bound-but-not-referenced warning. Generally this is ok, but not if | |
| 212 ;;; it's a synergistic result of macroexpansion. Need some way to note | |
| 213 ;;; that a varref is being optimized away? Of course it would be nice to | |
| 214 ;;; optimize away the binding too, someday, but it's unsafe today. | |
| 215 ;;; o (See byte-optimize.el for the optimization TODO list.) | |
| 216 | |
| 217 (require 'backquote) | |
| 218 | |
| 219 (or (fboundp 'defsubst) | |
| 220 ;; This really ought to be loaded already! | |
| 221 (load-library "bytecomp-runtime")) | |
| 222 | |
| 223 (eval-when-compile | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
224 (defvar byte-compile-single-version t |
| 428 | 225 "If this is true, the choice of emacs version (v19 or v20) byte-codes will |
| 226 be hard-coded into bytecomp when it compiles itself. If the compiler itself | |
| 227 is compiled with optimization, this causes a speedup.") | |
| 228 | |
| 229 (cond | |
| 230 (byte-compile-single-version | |
| 231 (defmacro byte-compile-single-version () t) | |
| 232 (defmacro byte-compile-version-cond (cond) (list 'quote (eval cond)))) | |
| 233 (t | |
| 234 (defmacro byte-compile-single-version () nil) | |
| 235 (defmacro byte-compile-version-cond (cond) cond))) | |
| 236 ) | |
| 237 | |
| 444 | 238 (defvar emacs-lisp-file-regexp "\\.el$" |
| 428 | 239 "*Regexp which matches Emacs Lisp source files. |
| 240 You may want to redefine `byte-compile-dest-file' if you change this.") | |
| 241 | |
| 242 ;; This enables file name handlers such as jka-compr | |
| 243 ;; to remove parts of the file name that should not be copied | |
| 244 ;; through to the output file name. | |
| 245 (defun byte-compiler-base-file-name (filename) | |
| 246 (let ((handler (find-file-name-handler filename | |
| 247 'byte-compiler-base-file-name))) | |
| 248 (if handler | |
| 249 (funcall handler 'byte-compiler-base-file-name filename) | |
| 250 filename))) | |
| 251 | |
| 252 (unless (fboundp 'byte-compile-dest-file) | |
| 253 ;; The user may want to redefine this along with emacs-lisp-file-regexp, | |
| 254 ;; so only define it if it is undefined. | |
| 255 (defun byte-compile-dest-file (filename) | |
| 256 "Convert an Emacs Lisp source file name to a compiled file name." | |
| 257 (setq filename (byte-compiler-base-file-name filename)) | |
| 258 (setq filename (file-name-sans-versions filename)) | |
| 259 (if (string-match emacs-lisp-file-regexp filename) | |
| 260 (concat (substring filename 0 (match-beginning 0)) ".elc") | |
| 261 (concat filename ".elc")))) | |
| 262 | |
| 263 ;; This can be the 'byte-compile property of any symbol. | |
| 264 (autoload 'byte-compile-inline-expand "byte-optimize") | |
| 265 | |
| 266 ;; This is the entrypoint to the lapcode optimizer pass1. | |
| 267 (autoload 'byte-optimize-form "byte-optimize") | |
| 268 ;; This is the entrypoint to the lapcode optimizer pass2. | |
| 269 (autoload 'byte-optimize-lapcode "byte-optimize") | |
| 270 (autoload 'byte-compile-unfold-lambda "byte-optimize") | |
| 271 | |
| 272 ;; This is the entry point to the decompiler, which is used by the | |
| 273 ;; disassembler. The disassembler just requires 'byte-compile, but | |
| 274 ;; that doesn't define this function, so this seems to be a reasonable | |
| 275 ;; thing to do. | |
| 276 (autoload 'byte-decompile-bytecode "byte-optimize") | |
| 277 | |
| 278 (defvar byte-compile-verbose | |
| 279 (and (not noninteractive) (> (device-baud-rate) search-slow-speed)) | |
| 280 "*Non-nil means print messages describing progress of byte-compiler.") | |
| 281 | |
| 282 (defvar byte-compile-emacs19-compatibility | |
| 283 (not (emacs-version>= 20)) | |
| 284 "*Non-nil means generate output that can run in Emacs 19.") | |
| 285 | |
| 286 (defvar byte-compile-print-gensym t | |
| 287 "*Non-nil means generate code that creates unique symbols at run-time. | |
| 288 This is achieved by printing uninterned symbols using the `#:SYMBOL' | |
| 289 notation, so that they will be read uninterned when run. | |
| 290 | |
| 291 With this feature, code that uses uninterned symbols in macros will | |
| 292 not be runnable under pre-21.0 XEmacsen. | |
| 293 | |
| 294 When `byte-compile-emacs19-compatibility' is non-nil, this variable is | |
| 295 ignored and considered to be nil.") | |
| 296 | |
| 297 (defvar byte-optimize t | |
| 298 "*Enables optimization in the byte compiler. | |
| 299 nil means don't do any optimization. | |
| 300 t means do all optimizations. | |
| 301 `source' means do source-level optimizations only. | |
| 302 `byte' means do code-level optimizations only.") | |
| 303 | |
| 304 (defvar byte-compile-delete-errors t | |
| 305 "*If non-nil, the optimizer may delete forms that may signal an error. | |
| 306 This includes variable references and calls to functions such as `car'.") | |
| 307 | |
| 308 ;; XEmacs addition | |
| 309 (defvar byte-compile-new-bytecodes nil | |
| 310 "This is completely ignored. It is only around for backwards | |
| 311 compatibility.") | |
| 312 | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
313 (defvar byte-compile-checks-on-load '((featurep 'xemacs)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
314 "A list of expressions to check when first loading a file. |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
315 Emacs will throw an error if any of them fail; checks will be made in |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
316 reverse order.") |
| 428 | 317 |
| 318 ;; FSF enables byte-compile-dynamic-docstrings but not byte-compile-dynamic | |
| 319 ;; by default. This would be a reasonable conservative approach except | |
| 320 ;; for the fact that if you enable either of these, you get incompatible | |
| 321 ;; byte code that can't be read by XEmacs 19.13 or before or FSF 19.28 or | |
| 322 ;; before. | |
| 323 ;; | |
| 324 ;; Therefore, neither is enabled for 19.14. Both are enabled for 20.0 | |
| 325 ;; because we have no reason to be conservative about changing the | |
| 326 ;; way things work. (Ben) | |
| 327 | |
| 328 ;; However, I don't think that defaulting byte-compile-dynamic to nil | |
| 329 ;; is a compatibility issue - rather it is a performance issue. | |
| 330 ;; Therefore I am setting byte-compile-dynamic back to nil. (mrb) | |
| 331 | |
| 332 (defvar byte-compile-dynamic nil | |
| 333 "*If non-nil, compile function bodies so they load lazily. | |
| 334 They are hidden comments in the compiled file, and brought into core when the | |
| 335 function is called. | |
| 336 | |
| 337 To enable this option, make it a file-local variable | |
| 338 in the source file you want it to apply to. | |
| 339 For example, add -*-byte-compile-dynamic: t;-*- on the first line. | |
| 340 | |
| 341 When this option is true, if you load the compiled file and then move it, | |
| 342 the functions you loaded will not be able to run.") | |
| 343 | |
| 344 (defvar byte-compile-dynamic-docstrings (emacs-version>= 20) | |
| 345 "*If non-nil, compile doc strings for lazy access. | |
| 346 We bury the doc strings of functions and variables | |
| 347 inside comments in the file, and bring them into core only when they | |
| 348 are actually needed. | |
| 349 | |
| 350 When this option is true, if you load the compiled file and then move it, | |
| 351 you won't be able to find the documentation of anything in that file. | |
| 352 | |
| 353 To disable this option for a certain file, make it a file-local variable | |
| 354 in the source file. For example, add this to the first line: | |
| 355 -*-byte-compile-dynamic-docstrings:nil;-*- | |
| 356 You can also set the variable globally. | |
| 357 | |
| 358 This option is enabled by default because it reduces Emacs memory usage.") | |
| 359 | |
| 360 (defvar byte-optimize-log nil | |
| 361 "*If true, the byte-compiler will log its optimizations into *Compile-Log*. | |
| 362 If this is 'source, then only source-level optimizations will be logged. | |
| 363 If it is 'byte, then only byte-level optimizations will be logged.") | |
| 364 | |
| 365 (defvar byte-compile-error-on-warn nil | |
| 366 "*If true, the byte-compiler reports warnings with `error'.") | |
| 367 | |
| 368 ;; byte-compile-warning-types in FSF. | |
| 369 (defvar byte-compile-default-warnings | |
|
4719
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
370 '(redefine callargs subr-callargs free-vars unresolved unused-vars obsolete |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
371 discarded-consing quoted-lambda) |
| 428 | 372 "*The warnings used when byte-compile-warnings is t.") |
| 373 | |
| 374 (defvar byte-compile-warnings t | |
| 375 "*List of warnings that the compiler should issue (t for the default set). | |
| 376 Elements of the list may be: | |
| 377 | |
| 378 free-vars references to variables not in the current lexical scope. | |
| 379 unused-vars references to non-global variables bound but not referenced. | |
| 380 unresolved calls to unknown functions. | |
| 381 callargs lambda calls with args that don't match the definition. | |
| 382 subr-callargs calls to subrs with args that don't match the definition. | |
| 383 redefine function cell redefined from a macro to a lambda or vice | |
| 384 versa, or redefined to take a different number of arguments. | |
| 385 obsolete use of an obsolete function or variable. | |
| 386 pedantic warn of use of compatible symbols. | |
|
4719
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
387 discarded-consing |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
388 calls to (some) functions that allocate memory, where that |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
389 memory is immediately discarded; canonically, the use of |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
390 mapcar instead of mapc |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
391 quoted-lambda passing a lambda expression not quoted as a function, as a |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
392 function argument |
| 428 | 393 |
| 394 The default set is specified by `byte-compile-default-warnings' and | |
| 395 normally encompasses all possible warnings. | |
| 396 | |
| 397 See also the macro `byte-compiler-options'.") | |
| 398 | |
| 399 (defvar byte-compile-generate-call-tree nil | |
| 400 "*Non-nil means collect call-graph information when compiling. | |
| 401 This records functions that were called and from where. | |
| 402 If the value is t, compilation displays the call graph when it finishes. | |
| 403 If the value is neither t nor nil, compilation asks you whether to display | |
| 404 the graph. | |
| 405 | |
| 406 The call tree only lists functions called, not macros used. Those functions | |
| 407 which the byte-code interpreter knows about directly (eq, cons, etc.) are | |
| 408 not reported. | |
| 409 | |
| 410 The call tree also lists those functions which are not known to be called | |
| 411 \(that is, to which no calls have been compiled). Functions which can be | |
| 412 invoked interactively are excluded from this list.") | |
| 413 | |
| 414 (defconst byte-compile-call-tree nil "Alist of functions and their call tree. | |
| 415 Each element looks like | |
| 416 | |
| 417 \(FUNCTION CALLERS CALLS\) | |
| 418 | |
| 419 where CALLERS is a list of functions that call FUNCTION, and CALLS | |
| 420 is a list of functions for which calls were generated while compiling | |
| 421 FUNCTION.") | |
| 422 | |
| 423 (defvar byte-compile-call-tree-sort 'name | |
| 424 "*If non-nil, sort the call tree. | |
| 425 The values `name', `callers', `calls', `calls+callers' | |
| 426 specify different fields to sort on.") | |
| 427 | |
| 428 (defvar byte-compile-overwrite-file t | |
| 429 "If nil, old .elc files are deleted before the new is saved, and .elc | |
| 430 files will have the same modes as the corresponding .el file. Otherwise, | |
| 431 existing .elc files will simply be overwritten, and the existing modes | |
| 432 will not be changed. If this variable is nil, then an .elc file which | |
| 433 is a symbolic link will be turned into a normal file, instead of the file | |
| 434 which the link points to being overwritten.") | |
| 435 | |
| 436 (defvar byte-recompile-directory-ignore-errors-p nil | |
| 437 "If true, then `byte-recompile-directory' will continue compiling even | |
| 438 when an error occurs in a file. This is bound to t by | |
| 439 `batch-byte-recompile-directory'.") | |
| 440 | |
| 502 | 441 (defvar byte-recompile-ignore-uncompilable-mule-files t |
| 442 "If non-nil, `byte-recompile-*' ignores non-ASCII .el files in a non-Mule | |
| 443 XEmacs. This assumes that such files have a -*- coding: ??? -*- magic | |
| 444 cookie in their first line or a ;;;###coding system: magic cookie | |
| 445 early in the file.") | |
| 446 | |
| 428 | 447 (defvar byte-recompile-directory-recursively t |
| 448 "*If true, then `byte-recompile-directory' will recurse on subdirectories.") | |
| 449 | |
| 450 (defvar byte-compile-constants nil | |
| 451 "list of all constants encountered during compilation of this form") | |
| 452 (defvar byte-compile-variables nil | |
| 453 "list of all variables encountered during compilation of this form") | |
| 454 (defvar byte-compile-bound-variables nil | |
| 455 "Alist of variables bound in the context of the current form, | |
| 456 that is, the current lexical environment. This list lives partly | |
| 457 on the specbind stack. The cdr of each cell is an integer bitmask.") | |
| 458 | |
|
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
459 (defvar byte-compile-force-escape-quoted nil |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
460 "If t, `byte-compile-maybe-reset-coding' always chooses `escape-quoted' |
|
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
461 |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
462 This is for situations where the byte compiler output file needs to be |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
463 able to encode character values above ?\\xFF, but this cannot be |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
464 easily determined from the input file.") |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
465 |
| 428 | 466 (defconst byte-compile-referenced-bit 1) |
| 467 (defconst byte-compile-assigned-bit 2) | |
| 468 (defconst byte-compile-arglist-bit 4) | |
| 469 (defconst byte-compile-global-bit 8) | |
| 470 | |
| 471 (defvar byte-compile-free-references) | |
| 472 (defvar byte-compile-free-assignments) | |
| 473 | |
| 474 (defvar byte-compiler-error-flag) | |
| 475 | |
| 446 | 476 ;;; A form of eval that includes the currently defined macro definitions. |
| 477 ;;; This helps implement the promise made in the Lispref: | |
| 478 ;;; | |
| 479 ;;; "If a file being compiled contains a `defmacro' form, the macro is | |
| 480 ;;; defined temporarily for the rest of the compilation of that file." | |
| 481 (defun byte-compile-eval (form) | |
| 482 (let ((save-macro-environment nil)) | |
| 483 (unwind-protect | |
| 484 (loop for (sym . def) in byte-compile-macro-environment do | |
| 485 (push | |
| 486 (if (fboundp sym) (cons sym (symbol-function sym)) sym) | |
| 487 save-macro-environment) | |
| 488 (fset sym (cons 'macro def)) | |
| 489 finally return (eval form)) | |
| 490 (dolist (elt save-macro-environment) | |
| 491 (if (symbolp elt) | |
| 492 (fmakunbound elt) | |
| 493 (fset (car elt) (cdr elt))))))) | |
| 494 | |
| 428 | 495 (defconst byte-compile-initial-macro-environment |
|
5263
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
496 `((byte-compiler-options |
|
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
497 . ,#'(lambda (&rest forms) |
|
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
498 (apply 'byte-compiler-options-handler forms))) |
|
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
499 (eval-when-compile |
|
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
500 . ,#'(lambda (&rest body) |
|
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
501 (list 'quote (byte-compile-eval (cons 'progn body))))) |
|
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
502 (eval-and-compile |
|
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
503 . ,#'(lambda (&rest body) |
|
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
504 (byte-compile-eval (cons 'progn body)) |
|
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
505 (cons 'progn body))) |
|
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
506 (the . |
|
5269
90a0084b3541
Rephrase the #'the docstring, make it nicer while byte-compiling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5265
diff
changeset
|
507 ,#'(lambda (type form) |
|
5282
dcc34e28cd84
Warn at byte-compile in #'the if FORM constant & not TYPE; fix byte-compile-constp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5269
diff
changeset
|
508 (if (cl-const-expr-p form) |
|
dcc34e28cd84
Warn at byte-compile in #'the if FORM constant & not TYPE; fix byte-compile-constp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5269
diff
changeset
|
509 (or (eval (cl-make-type-test form type)) |
|
dcc34e28cd84
Warn at byte-compile in #'the if FORM constant & not TYPE; fix byte-compile-constp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5269
diff
changeset
|
510 (byte-compile-warn |
|
dcc34e28cd84
Warn at byte-compile in #'the if FORM constant & not TYPE; fix byte-compile-constp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5269
diff
changeset
|
511 "%s is not of type %s" form type))) |
|
5263
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
512 (if byte-compile-delete-errors |
|
5269
90a0084b3541
Rephrase the #'the docstring, make it nicer while byte-compiling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5265
diff
changeset
|
513 form |
|
90a0084b3541
Rephrase the #'the docstring, make it nicer while byte-compiling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5265
diff
changeset
|
514 (funcall (cdr (symbol-function 'the)) type form))))) |
| 428 | 515 "The default macro-environment passed to macroexpand by the compiler. |
| 516 Placing a macro here will cause a macro to have different semantics when | |
| 517 expanded by the compiler as when expanded by the interpreter.") | |
| 518 | |
| 519 (defvar byte-compile-macro-environment byte-compile-initial-macro-environment | |
| 520 "Alist of macros defined in the file being compiled. | |
| 521 Each element looks like (MACRONAME . DEFINITION). It is | |
| 522 \(MACRONAME . nil) when a macro is redefined as a function.") | |
| 523 | |
| 524 (defvar byte-compile-function-environment nil | |
| 525 "Alist of functions defined in the file being compiled. | |
| 526 This is so we can inline them when necessary. | |
| 527 Each element looks like (FUNCTIONNAME . DEFINITION). It is | |
| 528 \(FUNCTIONNAME . nil) when a function is redefined as a macro.") | |
| 529 | |
| 530 (defvar byte-compile-autoload-environment nil | |
| 531 "Alist of functions and macros defined by autoload in the file being compiled. | |
| 532 This is so we can suppress warnings about calls to these functions, even though | |
| 533 they do not have `real' definitions. | |
| 534 Each element looks like (FUNCTIONNAME . CALL-TO-AUTOLOAD).") | |
| 535 | |
| 536 (defvar byte-compile-unresolved-functions nil | |
| 537 "Alist of undefined functions to which calls have been compiled (used for | |
| 538 warnings when the function is later defined with incorrect args).") | |
| 539 | |
| 540 (defvar byte-compile-file-domain) ; domain of file being compiled | |
| 541 | |
| 542 (defvar byte-compile-tag-number 0) | |
| 543 (defvar byte-compile-output nil | |
| 544 "Alist describing contents to put in byte code string. | |
| 545 Each element is (INDEX . VALUE)") | |
| 546 (defvar byte-compile-depth 0 "Current depth of execution stack.") | |
| 547 (defvar byte-compile-maxdepth 0 "Maximum depth of execution stack.") | |
| 548 | |
| 549 | |
| 550 ;;; The byte codes; this information is duplicated in bytecode.c | |
| 551 | |
| 552 (defconst byte-code-vector nil | |
| 553 "An array containing byte-code names indexed by byte-code values.") | |
| 554 | |
| 555 (defconst byte-stack+-info nil | |
| 556 "An array with the stack adjustment for each byte-code.") | |
| 557 | |
| 558 (defmacro byte-defop (opcode stack-adjust opname &optional docstring) | |
| 559 ;; This is a speed-hack for building the byte-code-vector at compile-time. | |
| 560 ;; We fill in the vector at macroexpand-time, and then after the last call | |
| 561 ;; to byte-defop, we write the vector out as a constant instead of writing | |
| 562 ;; out a bunch of calls to aset. | |
| 563 ;; Actually, we don't fill in the vector itself, because that could make | |
| 564 ;; it problematic to compile big changes to this compiler; we store the | |
| 565 ;; values on its plist, and remove them later in -extrude. | |
| 566 (let ((v1 (or (get 'byte-code-vector 'tmp-compile-time-value) | |
| 567 (put 'byte-code-vector 'tmp-compile-time-value | |
| 568 (make-vector 256 nil)))) | |
| 569 (v2 (or (get 'byte-stack+-info 'tmp-compile-time-value) | |
| 570 (put 'byte-stack+-info 'tmp-compile-time-value | |
| 571 (make-vector 256 nil))))) | |
| 572 (aset v1 opcode opname) | |
| 573 (aset v2 opcode stack-adjust)) | |
| 574 (if docstring | |
| 575 (list 'defconst opname opcode (concat "Byte code opcode " docstring ".")) | |
| 576 (list 'defconst opname opcode))) | |
| 577 | |
| 578 (defmacro byte-extrude-byte-code-vectors () | |
| 579 (prog1 (list 'setq 'byte-code-vector | |
| 580 (get 'byte-code-vector 'tmp-compile-time-value) | |
| 581 'byte-stack+-info | |
| 582 (get 'byte-stack+-info 'tmp-compile-time-value)) | |
| 583 (remprop 'byte-code-vector 'tmp-compile-time-value) | |
| 584 (remprop 'byte-stack+-info 'tmp-compile-time-value))) | |
| 585 | |
| 586 | |
| 587 ;; unused: 0-7 | |
| 588 | |
| 589 ;; These opcodes are special in that they pack their argument into the | |
| 590 ;; opcode word. | |
| 591 ;; | |
| 592 (byte-defop 8 1 byte-varref "for variable reference") | |
| 593 (byte-defop 16 -1 byte-varset "for setting a variable") | |
| 594 (byte-defop 24 -1 byte-varbind "for binding a variable") | |
| 595 (byte-defop 32 0 byte-call "for calling a function") | |
| 596 (byte-defop 40 0 byte-unbind "for unbinding special bindings") | |
| 597 ;; codes 8-47 are consumed by the preceding opcodes | |
| 598 | |
| 599 ;; unused: 48-55 | |
| 600 | |
| 601 (byte-defop 56 -1 byte-nth) | |
| 602 (byte-defop 57 0 byte-symbolp) | |
| 603 (byte-defop 58 0 byte-consp) | |
| 604 (byte-defop 59 0 byte-stringp) | |
| 605 (byte-defop 60 0 byte-listp) | |
| 606 (byte-defop 61 -1 byte-old-eq) | |
| 607 (byte-defop 62 -1 byte-old-memq) | |
| 608 (byte-defop 63 0 byte-not) | |
| 609 (byte-defop 64 0 byte-car) | |
| 610 (byte-defop 65 0 byte-cdr) | |
| 611 (byte-defop 66 -1 byte-cons) | |
| 612 (byte-defop 67 0 byte-list1) | |
| 613 (byte-defop 68 -1 byte-list2) | |
| 614 (byte-defop 69 -2 byte-list3) | |
| 615 (byte-defop 70 -3 byte-list4) | |
| 616 (byte-defop 71 0 byte-length) | |
| 617 (byte-defop 72 -1 byte-aref) | |
| 618 (byte-defop 73 -2 byte-aset) | |
| 619 (byte-defop 74 0 byte-symbol-value) | |
| 620 (byte-defop 75 0 byte-symbol-function) ; this was commented out | |
| 621 (byte-defop 76 -1 byte-set) | |
| 622 (byte-defop 77 -1 byte-fset) ; this was commented out | |
| 623 (byte-defop 78 -1 byte-get) | |
|
5089
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
624 (byte-defop 79 -2 byte-subseq) |
| 428 | 625 (byte-defop 80 -1 byte-concat2) |
| 626 (byte-defop 81 -2 byte-concat3) | |
| 627 (byte-defop 82 -3 byte-concat4) | |
| 628 (byte-defop 83 0 byte-sub1) | |
| 629 (byte-defop 84 0 byte-add1) | |
| 630 (byte-defop 85 -1 byte-eqlsign) | |
| 631 (byte-defop 86 -1 byte-gtr) | |
| 632 (byte-defop 87 -1 byte-lss) | |
| 633 (byte-defop 88 -1 byte-leq) | |
| 634 (byte-defop 89 -1 byte-geq) | |
| 635 (byte-defop 90 -1 byte-diff) | |
| 636 (byte-defop 91 0 byte-negate) | |
| 637 (byte-defop 92 -1 byte-plus) | |
| 638 (byte-defop 93 -1 byte-max) | |
| 639 (byte-defop 94 -1 byte-min) | |
| 640 (byte-defop 95 -1 byte-mult) | |
| 641 (byte-defop 96 1 byte-point) | |
| 642 (byte-defop 97 -1 byte-eq) ; new as of v20 | |
| 643 (byte-defop 98 0 byte-goto-char) | |
| 644 (byte-defop 99 0 byte-insert) | |
| 645 (byte-defop 100 1 byte-point-max) | |
| 646 (byte-defop 101 1 byte-point-min) | |
| 647 (byte-defop 102 0 byte-char-after) | |
| 648 (byte-defop 103 1 byte-following-char) | |
| 649 (byte-defop 104 1 byte-preceding-char) | |
| 650 (byte-defop 105 1 byte-current-column) | |
| 651 (byte-defop 106 0 byte-indent-to) | |
| 652 (byte-defop 107 -1 byte-equal) ; new as of v20 | |
| 653 (byte-defop 108 1 byte-eolp) | |
| 654 (byte-defop 109 1 byte-eobp) | |
| 655 (byte-defop 110 1 byte-bolp) | |
| 656 (byte-defop 111 1 byte-bobp) | |
| 657 (byte-defop 112 1 byte-current-buffer) | |
| 658 (byte-defop 113 0 byte-set-buffer) | |
| 659 (byte-defop 114 0 byte-save-current-buffer | |
| 660 "To make a binding to record the current buffer.") | |
| 661 ;;(byte-defop 114 1 byte-read-char-OBSOLETE) ;obsolete as of v19 | |
| 662 (byte-defop 115 -1 byte-memq) ; new as of v20 | |
| 663 (byte-defop 116 1 byte-interactive-p) | |
| 664 | |
| 665 (byte-defop 117 0 byte-forward-char) | |
| 666 (byte-defop 118 0 byte-forward-word) | |
| 667 (byte-defop 119 -1 byte-skip-chars-forward) | |
| 668 (byte-defop 120 -1 byte-skip-chars-backward) | |
| 669 (byte-defop 121 0 byte-forward-line) | |
| 670 (byte-defop 122 0 byte-char-syntax) | |
| 671 (byte-defop 123 -1 byte-buffer-substring) | |
| 672 (byte-defop 124 -1 byte-delete-region) | |
| 673 (byte-defop 125 -1 byte-narrow-to-region) | |
| 674 (byte-defop 126 1 byte-widen) | |
| 675 (byte-defop 127 0 byte-end-of-line) | |
| 676 | |
| 677 ;; unused: 128 | |
| 678 | |
| 679 ;; These store their argument in the next two bytes | |
| 680 (byte-defop 129 1 byte-constant2 | |
| 681 "for reference to a constant with vector index >= byte-constant-limit") | |
| 682 (byte-defop 130 0 byte-goto "for unconditional jump") | |
| 683 (byte-defop 131 -1 byte-goto-if-nil "to pop value and jump if it's nil") | |
| 684 (byte-defop 132 -1 byte-goto-if-not-nil | |
| 685 "to pop value and jump if it's not nil") | |
| 686 (byte-defop 133 -1 byte-goto-if-nil-else-pop | |
| 687 "to examine top-of-stack, jump and don't pop it if it's nil, | |
| 688 otherwise pop it") | |
| 689 (byte-defop 134 -1 byte-goto-if-not-nil-else-pop | |
| 690 "to examine top-of-stack, jump and don't pop it if it's non-nil, | |
| 691 otherwise pop it") | |
| 692 | |
| 693 (byte-defop 135 -1 byte-return "to pop a value and return it from `byte-code'") | |
| 694 (byte-defop 136 -1 byte-discard "to discard one value from stack") | |
| 695 (byte-defop 137 1 byte-dup "to duplicate the top of the stack") | |
| 696 | |
| 697 (byte-defop 138 0 byte-save-excursion | |
| 698 "to make a binding to record the buffer, point and mark") | |
|
4775
1d61580e0cf7
Remove Fsave_window_excursion from window.c, it's overridden by Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4743
diff
changeset
|
699 (byte-defop 139 0 byte-save-window-excursion ; almost obsolete |
| 428 | 700 "to make a binding to record entire window configuration") |
| 701 (byte-defop 140 0 byte-save-restriction | |
| 702 "to make a binding to record the current buffer clipping restrictions") | |
| 703 (byte-defop 141 -1 byte-catch | |
| 704 "for catch. Takes, on stack, the tag and an expression for the body") | |
| 705 (byte-defop 142 -1 byte-unwind-protect | |
| 706 "for unwind-protect. Takes, on stack, an expression for the unwind-action") | |
| 707 | |
| 708 ;; For condition-case. Takes, on stack, the variable to bind, | |
| 709 ;; an expression for the body, and a list of clauses. | |
| 710 (byte-defop 143 -2 byte-condition-case) | |
| 711 | |
| 712 ;; For entry to with-output-to-temp-buffer. | |
| 713 ;; Takes, on stack, the buffer name. | |
| 714 ;; Binds standard-output and does some other things. | |
| 715 ;; Returns with temp buffer on the stack in place of buffer name. | |
| 716 (byte-defop 144 0 byte-temp-output-buffer-setup) | |
| 717 | |
| 718 ;; For exit from with-output-to-temp-buffer. | |
| 719 ;; Expects the temp buffer on the stack underneath value to return. | |
| 720 ;; Pops them both, then pushes the value back on. | |
| 721 ;; Unbinds standard-output and makes the temp buffer visible. | |
| 722 (byte-defop 145 -1 byte-temp-output-buffer-show) | |
| 723 | |
| 724 ;; To unbind back to the beginning of this frame. | |
| 725 ;; Not used yet, but will be needed for tail-recursion elimination. | |
| 726 (byte-defop 146 0 byte-unbind-all) | |
| 727 | |
| 728 (byte-defop 147 -2 byte-set-marker) | |
| 729 (byte-defop 148 0 byte-match-beginning) | |
| 730 (byte-defop 149 0 byte-match-end) | |
| 731 (byte-defop 150 0 byte-upcase) | |
| 732 (byte-defop 151 0 byte-downcase) | |
| 733 (byte-defop 152 -1 byte-string=) | |
| 734 (byte-defop 153 -1 byte-string<) | |
| 735 (byte-defop 154 -1 byte-old-equal) | |
| 736 (byte-defop 155 -1 byte-nthcdr) | |
| 737 (byte-defop 156 -1 byte-elt) | |
| 738 (byte-defop 157 -1 byte-old-member) | |
| 739 (byte-defop 158 -1 byte-old-assq) | |
| 740 (byte-defop 159 0 byte-nreverse) | |
| 741 (byte-defop 160 -1 byte-setcar) | |
| 742 (byte-defop 161 -1 byte-setcdr) | |
| 743 (byte-defop 162 0 byte-car-safe) | |
| 744 (byte-defop 163 0 byte-cdr-safe) | |
| 745 (byte-defop 164 -1 byte-nconc) | |
| 746 (byte-defop 165 -1 byte-quo) | |
| 747 (byte-defop 166 -1 byte-rem) | |
| 748 (byte-defop 167 0 byte-numberp) | |
|
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
749 (byte-defop 168 0 byte-fixnump) |
| 428 | 750 |
| 751 ;; unused: 169 | |
| 752 | |
| 753 ;; These are not present in FSF. | |
| 754 ;; | |
| 755 (byte-defop 170 0 byte-rel-goto) | |
| 756 (byte-defop 171 -1 byte-rel-goto-if-nil) | |
| 757 (byte-defop 172 -1 byte-rel-goto-if-not-nil) | |
| 758 (byte-defop 173 -1 byte-rel-goto-if-nil-else-pop) | |
| 759 (byte-defop 174 -1 byte-rel-goto-if-not-nil-else-pop) | |
| 760 | |
| 761 (byte-defop 175 nil byte-listN) | |
| 762 (byte-defop 176 nil byte-concatN) | |
| 763 (byte-defop 177 nil byte-insertN) | |
| 764 | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
765 (byte-defop 178 1 byte-bind-multiple-value-limits) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
766 (byte-defop 179 -3 byte-multiple-value-list-internal) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
767 (byte-defop 180 0 byte-multiple-value-call) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
768 (byte-defop 181 -1 byte-throw) |
| 428 | 769 |
| 770 ;; these ops are new to v20 | |
| 771 (byte-defop 182 -1 byte-member) | |
| 772 (byte-defop 183 -1 byte-assq) | |
| 773 | |
| 774 ;; unused: 184-191 | |
| 775 | |
| 776 (byte-defop 192 1 byte-constant "for reference to a constant") | |
| 777 ;; codes 193-255 are consumed by byte-constant. | |
| 778 (defconst byte-constant-limit 64 | |
| 779 "Exclusive maximum index usable in the `byte-constant' opcode.") | |
| 780 | |
| 444 | 781 (defconst byte-goto-ops |
| 782 '(byte-goto byte-goto-if-nil byte-goto-if-not-nil | |
| 783 byte-goto-if-nil-else-pop | |
| 784 byte-goto-if-not-nil-else-pop) | |
| 428 | 785 "List of byte-codes whose offset is a pc.") |
| 786 | |
| 787 (defconst byte-goto-always-pop-ops | |
| 444 | 788 '(byte-goto-if-nil byte-goto-if-not-nil)) |
| 428 | 789 |
| 790 (defconst byte-rel-goto-ops | |
| 444 | 791 '(byte-rel-goto byte-rel-goto-if-nil byte-rel-goto-if-not-nil |
| 792 byte-rel-goto-if-nil-else-pop byte-rel-goto-if-not-nil-else-pop) | |
| 428 | 793 "byte-codes for relative jumps.") |
| 794 | |
| 795 (byte-extrude-byte-code-vectors) | |
| 796 | |
| 797 ;;; lapcode generator | |
| 798 ;;; | |
| 799 ;;; the byte-compiler now does source -> lapcode -> bytecode instead of | |
| 800 ;;; source -> bytecode, because it's a lot easier to make optimizations | |
| 801 ;;; on lapcode than on bytecode. | |
| 802 ;;; | |
| 803 ;;; Elements of the lapcode list are of the form (<instruction> . <parameter>) | |
| 804 ;;; where instruction is a symbol naming a byte-code instruction, | |
| 805 ;;; and parameter is an argument to that instruction, if any. | |
| 806 ;;; | |
| 807 ;;; The instruction can be the pseudo-op TAG, which means that this position | |
| 808 ;;; in the instruction stream is a target of a goto. (car PARAMETER) will be | |
| 809 ;;; the PC for this location, and the whole instruction "(TAG pc)" will be the | |
| 810 ;;; parameter for some goto op. | |
| 811 ;;; | |
| 812 ;;; If the operation is varbind, varref, varset or push-constant, then the | |
| 813 ;;; parameter is (variable/constant . index_in_constant_vector). | |
| 814 ;;; | |
| 815 ;;; First, the source code is macroexpanded and optimized in various ways. | |
| 816 ;;; Then the resultant code is compiled into lapcode. Another set of | |
| 817 ;;; optimizations are then run over the lapcode. Then the variables and | |
| 818 ;;; constants referenced by the lapcode are collected and placed in the | |
| 819 ;;; constants-vector. (This happens now so that variables referenced by dead | |
| 820 ;;; code don't consume space.) And finally, the lapcode is transformed into | |
| 821 ;;; compacted byte-code. | |
| 822 ;;; | |
| 823 ;;; A distinction is made between variables and constants because the variable- | |
| 824 ;;; referencing instructions are more sensitive to the variables being near the | |
| 825 ;;; front of the constants-vector than the constant-referencing instructions. | |
| 826 ;;; Also, this lets us notice references to free variables. | |
| 827 | |
| 828 (defun byte-compile-lapcode (lap) | |
| 829 "Turns lapcode into bytecode. The lapcode is destroyed." | |
| 830 ;; Lapcode modifications: changes the ID of a tag to be the tag's PC. | |
| 831 (let ((pc 0) ; Program counter | |
| 832 op off ; Operation & offset | |
| 833 (bytes '()) ; Put the output bytes here | |
| 834 (patchlist nil) ; List of tags and goto's to patch | |
| 835 rest rel tmp) | |
| 836 (while lap | |
| 837 (setq op (car (car lap)) | |
| 838 off (cdr (car lap))) | |
| 839 (cond ((not (symbolp op)) | |
| 840 (error "Non-symbolic opcode `%s'" op)) | |
| 841 ((eq op 'TAG) | |
| 842 (setcar off pc) | |
| 843 (push off patchlist)) | |
| 844 ((memq op byte-goto-ops) | |
| 845 (setq pc (+ pc 3)) | |
| 846 (setq bytes (cons (cons pc (cdr off)) | |
| 847 (cons nil | |
| 848 (cons (symbol-value op) bytes)))) | |
| 849 (push bytes patchlist)) | |
| 850 (t | |
| 851 (setq bytes | |
| 852 (cond ((cond ((consp off) | |
| 853 ;; Variable or constant reference | |
| 854 (setq off (cdr off)) | |
| 855 (eq op 'byte-constant))) | |
| 856 (cond ((< off byte-constant-limit) | |
| 857 (setq pc (1+ pc)) | |
| 858 (cons (+ byte-constant off) bytes)) | |
| 859 (t | |
| 860 (setq pc (+ 3 pc)) | |
| 861 (cons (lsh off -8) | |
| 862 (cons (logand off 255) | |
| 863 (cons byte-constant2 bytes)))))) | |
| 864 ((and (<= byte-listN (symbol-value op)) | |
| 865 (<= (symbol-value op) byte-insertN)) | |
| 866 (setq pc (+ 2 pc)) | |
| 867 (cons off (cons (symbol-value op) bytes))) | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
868 ((= byte-multiple-value-call (symbol-value op)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
869 (setq pc (1+ pc)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
870 ;; Ignore off. |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
871 (cons (symbol-value op) bytes)) |
| 428 | 872 ((< off 6) |
| 873 (setq pc (1+ pc)) | |
| 874 (cons (+ (symbol-value op) off) bytes)) | |
| 875 ((< off 256) | |
| 876 (setq pc (+ 2 pc)) | |
| 877 (cons off (cons (+ (symbol-value op) 6) bytes))) | |
| 878 (t | |
| 879 (setq pc (+ 3 pc)) | |
| 880 (cons (lsh off -8) | |
| 881 (cons (logand off 255) | |
| 882 (cons (+ (symbol-value op) 7) | |
| 883 bytes)))))))) | |
| 884 (setq lap (cdr lap))) | |
| 885 ;;(if (not (= pc (length bytes))) | |
| 886 ;; (error "Compiler error: pc mismatch - %s %s" pc (length bytes))) | |
| 887 (cond (t ;; starting with Emacs 19. | |
| 888 ;; Make relative jumps | |
| 889 (setq patchlist (nreverse patchlist)) | |
| 890 (while (progn | |
| 891 (setq off 0) ; PC change because of deleted bytes | |
| 892 (setq rest patchlist) | |
| 893 (while rest | |
| 894 (setq tmp (car rest)) | |
| 895 (and (consp (car tmp)) ; Jump | |
| 896 (prog1 (null (nth 1 tmp)) ; Absolute jump | |
| 897 (setq tmp (car tmp))) | |
| 898 (progn | |
| 899 (setq rel (- (car (cdr tmp)) (car tmp))) | |
| 900 (and (<= -129 rel) (< rel 128))) | |
| 901 (progn | |
| 902 ;; Convert to relative jump. | |
| 903 (setcdr (car rest) (cdr (cdr (car rest)))) | |
| 904 (setcar (cdr (car rest)) | |
| 905 (+ (car (cdr (car rest))) | |
| 906 (- byte-rel-goto byte-goto))) | |
| 907 (setq off (1- off)))) | |
| 908 (setcar tmp (+ (car tmp) off)) ; Adjust PC | |
| 909 (setq rest (cdr rest))) | |
| 910 ;; If optimizing, repeat until no change. | |
| 911 (and byte-optimize | |
| 912 (not (zerop off))))))) | |
| 913 ;; Patch PC into jumps | |
| 914 (let (bytes) | |
| 915 (while patchlist | |
| 916 (setq bytes (car patchlist)) | |
| 917 (cond ((atom (car bytes))) ; Tag | |
| 918 ((nth 1 bytes) ; Relative jump | |
| 919 (setcar bytes (+ (- (car (cdr (car bytes))) (car (car bytes))) | |
| 920 128))) | |
| 921 (t ; Absolute jump | |
| 922 (setq pc (car (cdr (car bytes)))) ; Pick PC from tag | |
| 923 (setcar (cdr bytes) (logand pc 255)) | |
| 924 (setcar bytes (lsh pc -8)))) | |
| 925 (setq patchlist (cdr patchlist)))) | |
| 926 (concat (nreverse bytes)))) | |
| 927 | |
| 928 | |
| 929 ;;; byte compiler messages | |
| 930 | |
| 931 (defvar byte-compile-current-form nil) | |
| 932 (defvar byte-compile-current-file nil) | |
| 933 (defvar byte-compile-dest-file nil) | |
| 934 | |
| 935 (defmacro byte-compile-log (format-string &rest args) | |
| 936 `(when (and byte-optimize (memq byte-optimize-log '(t source))) | |
| 937 (let ((print-escape-newlines t) | |
| 938 (print-level 4) | |
| 939 (print-length 4)) | |
| 940 (byte-compile-log-1 (format ,format-string ,@args))))) | |
| 941 | |
| 942 (defconst byte-compile-last-warned-form 'nothing) | |
| 943 | |
| 944 ;; Log a message STRING in *Compile-Log*. | |
| 945 ;; Also log the current function and file if not already done. | |
| 946 (defun byte-compile-log-1 (string &optional fill) | |
| 947 (let* ((this-form (or byte-compile-current-form "toplevel forms")) | |
| 948 (while-compiling-msg | |
| 949 (when (or byte-compile-current-file | |
| 950 (not (eq this-form byte-compile-last-warned-form))) | |
| 951 (format | |
| 952 "While compiling %s%s:" | |
| 953 this-form | |
| 954 (cond | |
| 955 ((stringp byte-compile-current-file) | |
| 956 (concat " in file " byte-compile-current-file)) | |
| 957 ((bufferp byte-compile-current-file) | |
| 958 (concat " in buffer " | |
| 959 (buffer-name byte-compile-current-file))) | |
| 960 ("")))))) | |
| 961 (if noninteractive | |
| 962 (progn | |
| 963 (when while-compiling-msg (message "%s" while-compiling-msg)) | |
| 964 (message " %s" string)) | |
| 965 (with-current-buffer (get-buffer-create "*Compile-Log*") | |
| 966 (goto-char (point-max)) | |
| 967 (when byte-compile-current-file | |
| 968 (when (> (point-max) (point-min)) | |
| 969 (insert "\n\^L\n")) | |
| 970 (insert (current-time-string) "\n")) | |
| 971 (when while-compiling-msg (insert while-compiling-msg "\n")) | |
| 972 (insert " " string "\n") | |
| 973 (when (and fill (not (string-match "\n" string))) | |
| 974 (let ((fill-prefix " ") | |
| 975 (fill-column 78)) | |
| 976 (fill-paragraph nil))))) | |
| 977 (setq byte-compile-current-file nil) | |
| 978 (setq byte-compile-last-warned-form this-form))) | |
| 979 | |
| 980 ;; Log the start of a file in *Compile-Log*, and mark it as done. | |
| 981 ;; But do nothing in batch mode. | |
| 982 (defun byte-compile-log-file () | |
| 983 (when (and byte-compile-current-file (not noninteractive)) | |
| 984 (with-current-buffer (get-buffer-create "*Compile-Log*") | |
| 985 (when (> (point-max) (point-min)) | |
| 986 (goto-char (point-max)) | |
| 987 (insert "\n\^L\n")) | |
| 988 (insert "Compiling " | |
| 989 (if (stringp byte-compile-current-file) | |
| 990 (concat "file " byte-compile-current-file) | |
| 991 (concat "buffer " (buffer-name byte-compile-current-file))) | |
| 992 " at " (current-time-string) "\n") | |
| 993 (setq byte-compile-current-file nil)))) | |
| 994 | |
| 502 | 995 (defvar byte-compile-inbuffer) |
| 996 (defvar byte-compile-outbuffer) | |
| 997 | |
| 428 | 998 (defun byte-compile-warn (format &rest args) |
| 999 (setq format (apply 'format format args)) | |
| 1000 (if byte-compile-error-on-warn | |
| 1001 (error "%s" format) ; byte-compile-file catches and logs it | |
| 1002 (byte-compile-log-1 (concat "** " format) t) | |
| 502 | 1003 |
| 1004 ;; This was a first attempt to add line numbers to the | |
| 1005 ;; byte-compilation output. Unfortunately, it doesn't work | |
| 1006 ;; perfectly: it reports the line number at the end of the form | |
| 1007 ;; (which may be an entire function), rather than the line number | |
| 1008 ;; of the actual problem. Doing this right is hard because we | |
| 1009 ;; currently use the built-in Lisp parser to parse the entire form | |
| 1010 ;; at once. What we basically need is a whole separate parser | |
| 1011 ;; that annotates its output with line numbers. For example, we | |
| 1012 ;; might modify the parser in lread.c so that, with the right | |
| 1013 ;; option set, it replaces every Lisp object contained in the | |
| 1014 ;; structure it returns with a cons of that object and the line | |
| 1015 ;; number it was found on (determined by counting newlines, | |
| 1016 ;; starting from some arbitrary point). You then have two | |
| 1017 ;; options: (a) Modify the byte compiler so that everything that | |
| 1018 ;; compiles a form deals with the new annotated form rather than | |
| 1019 ;; the old one, or (b) The byte compiler saves this structure | |
| 1020 ;; while converting it into a normal structure that's given to the | |
| 1021 ;; various form handlers, which need no (or less) modification. | |
| 1022 ;; In the former case, finding the line number is trivial because | |
| 1023 ;; it's in the form. In the latter case, finding the line number | |
| 1024 ;; depends on having a unique Lisp object that can be looked up in | |
| 1025 ;; the annotated structure -- i.e. a list, vector, or string. | |
| 1026 ;; You'd have to look at the various places where errors are spit | |
| 1027 ;; out (not very many, really), and make sure that such a unique | |
| 1028 ;; object is available. Then you do a depth-first search through | |
| 1029 ;; the annotated structure to find the object. | |
| 1030 ;; | |
| 1031 ;; An alternative way of doing (b) that's probably much more | |
| 1032 ;; efficient (and easier to implement) is simply to have the | |
| 1033 ;; parser in lread.c annotate every unique object using a separate | |
| 1034 ;; hash table. This also eliminates the need for a search to find | |
| 1035 ;; the line number. In order to be fine-grained enough to get at | |
| 1036 ;; every symbol in a form -- e.g. if we want to pinpoint a | |
| 1037 ;; particular undefined variable in a function call -- we need to | |
| 1038 ;; annotate every cons, not just each list. We still have | |
| 1039 ;; (probably unimportant) problems with vectors, since all we have | |
| 1040 ;; is the start of the vector. If we cared about this, we could | |
| 1041 ;; store in the hash table a list of the line numbers for each | |
| 1042 ;; item in the vector, not just its start. | |
| 1043 ;; | |
| 1044 ;; --ben | |
| 1045 | |
| 1046 ; (byte-compile-log-1 (concat "** line: " | |
| 1047 ; (save-excursion | |
| 1048 ; (set-buffer byte-compile-inbuffer) | |
| 1049 ; (int-to-string (line-number))) | |
| 1050 ; " " | |
| 1051 ; format) t) | |
| 428 | 1052 ;;; RMS says: |
| 1053 ;;; It is useless to flash warnings too fast to be read. | |
| 1054 ;;; Besides, they will all be shown at the end. | |
| 1055 ;;; and comments out the next two lines. | |
| 1056 (or noninteractive ; already written on stdout. | |
| 1057 (message "Warning: %s" format)))) | |
| 1058 | |
| 1059 ;;; This function should be used to report errors that have halted | |
| 1060 ;;; compilation of the current file. | |
| 1061 (defun byte-compile-report-error (error-info) | |
| 1062 (setq byte-compiler-error-flag t) | |
| 1063 (byte-compile-log-1 | |
| 1064 (concat "!! " | |
| 1065 (format (if (cdr error-info) "%s (%s)" "%s") | |
| 1066 (get (car error-info) 'error-message) | |
| 442 | 1067 (prin1-to-string (cdr error-info))))) |
| 1068 (if stack-trace-on-error | |
| 1069 (backtrace nil t))) | |
| 428 | 1070 |
| 1071 ;;; Used by make-obsolete. | |
| 1072 (defun byte-compile-obsolete (form) | |
| 1073 (let ((new (get (car form) 'byte-obsolete-info))) | |
| 1074 (if (memq 'obsolete byte-compile-warnings) | |
| 1075 (byte-compile-warn "%s is an obsolete function; %s" (car form) | |
| 1076 (if (stringp (car new)) | |
| 1077 (car new) | |
| 1078 (format "use %s instead." (car new))))) | |
| 1079 (funcall (or (cdr new) 'byte-compile-normal-call) form))) | |
| 1080 | |
| 1081 ;;; Used by make-obsolete. | |
| 1082 (defun byte-compile-compatible (form) | |
| 1083 (let ((new (get (car form) 'byte-compatible-info))) | |
| 1084 (if (memq 'pedantic byte-compile-warnings) | |
| 1085 (byte-compile-warn "%s is provided for compatibility; %s" (car form) | |
| 1086 (if (stringp (car new)) | |
| 1087 (car new) | |
| 1088 (format "use %s instead." (car new))))) | |
| 1089 (funcall (or (cdr new) 'byte-compile-normal-call) form))) | |
| 1090 | |
| 1091 ;; Compiler options | |
| 1092 | |
| 1093 (defconst byte-compiler-legal-options | |
| 1094 '((optimize byte-optimize (t nil source byte) val) | |
| 1095 (file-format byte-compile-emacs19-compatibility (emacs19 emacs20) | |
| 1096 (eq val 'emacs19)) | |
| 1097 (delete-errors byte-compile-delete-errors (t nil) val) | |
| 1098 (verbose byte-compile-verbose (t nil) val) | |
| 1099 (new-bytecodes byte-compile-new-bytecodes (t nil) val) | |
| 1100 (warnings byte-compile-warnings | |
|
4719
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
1101 ((callargs subr-callargs redefine free-vars unused-vars |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
1102 unresolved discarded-consing quoted-lambda)) |
| 428 | 1103 val))) |
| 1104 | |
| 1105 ;; XEmacs addition | |
| 1106 (defconst byte-compiler-obsolete-options | |
| 1107 '((new-bytecodes t))) | |
| 1108 | |
| 1109 ;; Inhibit v19/v20 selectors if the version is hardcoded. | |
| 1110 ;; #### This should print a warning if the user tries to change something | |
| 1111 ;; than can't be changed because the running compiler doesn't support it. | |
| 1112 (cond | |
| 1113 ((byte-compile-single-version) | |
| 1114 (setcar (cdr (cdr (assq 'file-format byte-compiler-legal-options))) | |
| 1115 (if (byte-compile-version-cond byte-compile-emacs19-compatibility) | |
| 1116 '(emacs19) '(emacs20))))) | |
| 1117 | |
| 1118 ;; now we can copy it. | |
| 444 | 1119 (setq byte-compiler-legal-options byte-compiler-legal-options) |
| 428 | 1120 |
| 1121 (defun byte-compiler-options-handler (&rest args) | |
| 1122 (let (key val desc choices) | |
| 1123 (while args | |
| 1124 (if (or (atom (car args)) (nthcdr 2 (car args)) (null (cdr (car args)))) | |
| 1125 (error "malformed byte-compiler-option %s" (car args))) | |
| 1126 (setq key (car (car args)) | |
| 1127 val (car (cdr (car args))) | |
| 1128 desc (assq key byte-compiler-legal-options)) | |
| 1129 (or desc | |
| 1130 (error "unknown byte-compiler option %s" key)) | |
| 1131 (if (assq key byte-compiler-obsolete-options) | |
| 1132 (byte-compile-warn "%s is an obsolete byte-compiler option." key)) | |
| 1133 (setq choices (nth 2 desc)) | |
| 1134 (if (consp (car choices)) | |
| 1135 (let* (this | |
| 1136 (handler 'cons) | |
| 1137 (var (nth 1 desc)) | |
| 1138 (ret (and (memq (car val) '(+ -)) | |
| 1139 (copy-sequence (if (eq t (symbol-value var)) | |
| 1140 (car choices) | |
| 1141 (symbol-value var)))))) | |
| 1142 (setq choices (car choices)) | |
| 1143 (while val | |
| 1144 (setq this (car val)) | |
| 1145 (cond ((memq this choices) | |
| 1146 (setq ret (funcall handler this ret))) | |
| 1147 ((eq this '+) (setq handler 'cons)) | |
| 1148 ((eq this '-) (setq handler 'delq)) | |
| 1149 ((error "%s only accepts %s." key choices))) | |
| 1150 (setq val (cdr val))) | |
| 1151 (set (nth 1 desc) ret)) | |
| 1152 (or (memq val choices) | |
| 1153 (error "%s must be one of %s." key choices)) | |
| 1154 (set (nth 1 desc) (eval (nth 3 desc)))) | |
| 1155 (setq args (cdr args))) | |
| 1156 nil)) | |
| 1157 | |
| 1158 ;;; sanity-checking arglists | |
| 1159 | |
| 1160 (defun byte-compile-fdefinition (name macro-p) | |
| 1161 (let* ((list (if (memq macro-p '(nil subr)) | |
| 1162 byte-compile-function-environment | |
| 1163 byte-compile-macro-environment)) | |
| 1164 (env (cdr (assq name list)))) | |
| 1165 (or env | |
| 1166 (let ((fn name)) | |
| 1167 (while (and (symbolp fn) | |
| 1168 (fboundp fn) | |
| 1169 (or (symbolp (symbol-function fn)) | |
| 1170 (consp (symbol-function fn)) | |
| 1171 (and (not macro-p) | |
| 1172 (compiled-function-p (symbol-function fn))) | |
| 1173 (and (eq macro-p 'subr) (subrp fn)))) | |
| 1174 (setq fn (symbol-function fn))) | |
| 1175 (if (or (and (not macro-p) (compiled-function-p fn)) | |
| 1176 (and (eq macro-p 'subr) (subrp fn))) | |
| 1177 fn | |
| 1178 (and (consp fn) | |
| 1179 (not (eq macro-p 'subr)) | |
| 1180 (if (eq 'macro (car fn)) | |
| 1181 (cdr fn) | |
| 1182 (if macro-p | |
| 1183 nil | |
| 1184 (if (eq 'autoload (car fn)) | |
| 1185 nil | |
| 1186 fn))))))))) | |
| 1187 | |
| 1188 (defun byte-compile-arglist-signature (arglist) | |
| 1189 (let ((args 0) | |
| 1190 opts | |
| 1191 restp) | |
| 1192 (while arglist | |
| 1193 (cond ((eq (car arglist) '&optional) | |
| 1194 (or opts (setq opts 0))) | |
| 1195 ((eq (car arglist) '&rest) | |
| 1196 (if (cdr arglist) | |
| 1197 (setq restp t | |
| 1198 arglist nil))) | |
| 1199 (t | |
| 1200 (if opts | |
| 1201 (setq opts (1+ opts)) | |
| 1202 (setq args (1+ args))))) | |
| 1203 (setq arglist (cdr arglist))) | |
| 1204 (cons args (if restp nil (if opts (+ args opts) args))))) | |
| 1205 | |
| 1206 | |
| 1207 (defun byte-compile-arglist-signatures-congruent-p (old new) | |
| 1208 (not (or | |
| 1209 (> (car new) (car old)) ; requires more args now | |
| 1210 (and (null (cdr old)) ; tooks rest-args, doesn't any more | |
| 1211 (cdr new)) | |
| 1212 (and (cdr new) (cdr old) ; can't take as many args now | |
| 1213 (< (cdr new) (cdr old))) | |
| 1214 ))) | |
| 1215 | |
| 1216 (defun byte-compile-arglist-signature-string (signature) | |
| 1217 (cond ((null (cdr signature)) | |
| 1218 (format "%d+" (car signature))) | |
| 1219 ((= (car signature) (cdr signature)) | |
| 1220 (format "%d" (car signature))) | |
| 1221 (t (format "%d-%d" (car signature) (cdr signature))))) | |
| 1222 | |
| 1223 | |
| 1224 ;; Warn if the form is calling a function with the wrong number of arguments. | |
| 1225 (defun byte-compile-callargs-warn (form) | |
| 1226 (let* ((def (or (byte-compile-fdefinition (car form) nil) | |
| 1227 (byte-compile-fdefinition (car form) t))) | |
| 1228 (sig (and def (byte-compile-arglist-signature | |
| 1229 (if (eq 'lambda (car-safe def)) | |
| 1230 (nth 1 def) | |
| 1231 (if (compiled-function-p def) | |
| 1232 (compiled-function-arglist def) | |
| 1233 '(&rest def)))))) | |
| 1234 (ncall (length (cdr form)))) | |
| 1235 (if (and (null def) | |
| 1236 (fboundp 'subr-min-args) | |
| 1237 (setq def (byte-compile-fdefinition (car form) 'subr))) | |
| 1238 (setq sig (cons (subr-min-args def) (subr-max-args def)))) | |
| 1239 (if sig | |
| 1240 (if (or (< ncall (car sig)) | |
| 1241 (and (cdr sig) (> ncall (cdr sig)))) | |
| 1242 (byte-compile-warn | |
| 1243 "%s called with %d argument%s, but %s %s" | |
| 1244 (car form) ncall | |
| 1245 (if (= 1 ncall) "" "s") | |
| 1246 (if (< ncall (car sig)) | |
| 1247 "requires" | |
| 1248 "accepts only") | |
| 1249 (byte-compile-arglist-signature-string sig))) | |
| 1250 (or (fboundp (car form)) ; might be a subr or autoload. | |
| 1251 ;; ## this doesn't work with recursion. | |
| 1252 (eq (car form) byte-compile-current-form) | |
| 1253 ;; It's a currently-undefined function. | |
| 1254 ;; Remember number of args in call. | |
| 1255 (let ((cons (assq (car form) byte-compile-unresolved-functions)) | |
| 1256 (n (length (cdr form)))) | |
| 1257 (if cons | |
| 1258 (or (memq n (cdr cons)) | |
| 1259 (setcdr cons (cons n (cdr cons)))) | |
| 1260 (setq byte-compile-unresolved-functions | |
| 1261 (cons (list (car form) n) | |
| 1262 byte-compile-unresolved-functions)))))))) | |
| 1263 | |
| 1264 ;; Warn if the function or macro is being redefined with a different | |
| 1265 ;; number of arguments. | |
| 1266 (defun byte-compile-arglist-warn (form macrop) | |
| 1267 (let ((old (byte-compile-fdefinition (nth 1 form) macrop))) | |
| 1268 (if old | |
| 1269 (let ((sig1 (byte-compile-arglist-signature | |
| 1270 (if (eq 'lambda (car-safe old)) | |
| 1271 (nth 1 old) | |
| 1272 (if (compiled-function-p old) | |
| 1273 (compiled-function-arglist old) | |
| 1274 '(&rest def))))) | |
| 1275 (sig2 (byte-compile-arglist-signature (nth 2 form)))) | |
| 1276 (or (byte-compile-arglist-signatures-congruent-p sig1 sig2) | |
| 1277 (byte-compile-warn "%s %s used to take %s %s, now takes %s" | |
| 1278 (if (eq (car form) 'defun) "function" "macro") | |
| 1279 (nth 1 form) | |
| 1280 (byte-compile-arglist-signature-string sig1) | |
| 1281 (if (equal sig1 '(1 . 1)) "argument" "arguments") | |
| 1282 (byte-compile-arglist-signature-string sig2)))) | |
| 1283 ;; This is the first definition. See if previous calls are compatible. | |
| 1284 (let ((calls (assq (nth 1 form) byte-compile-unresolved-functions)) | |
| 1285 nums sig min max) | |
| 1286 (if calls | |
| 1287 (progn | |
| 1288 (setq sig (byte-compile-arglist-signature (nth 2 form)) | |
| 1289 nums (sort (copy-sequence (cdr calls)) (function <)) | |
| 1290 min (car nums) | |
| 1291 max (car (nreverse nums))) | |
| 1292 (if (or (< min (car sig)) | |
| 1293 (and (cdr sig) (> max (cdr sig)))) | |
| 1294 (byte-compile-warn | |
| 1295 "%s being defined to take %s%s, but was previously called with %s" | |
| 1296 (nth 1 form) | |
| 1297 (byte-compile-arglist-signature-string sig) | |
| 1298 (if (equal sig '(1 . 1)) " arg" " args") | |
| 1299 (byte-compile-arglist-signature-string (cons min max)))) | |
| 1300 | |
| 1301 (setq byte-compile-unresolved-functions | |
| 1302 (delq calls byte-compile-unresolved-functions))))) | |
| 1303 ))) | |
| 1304 | |
| 1305 ;; If we have compiled any calls to functions which are not known to be | |
| 1306 ;; defined, issue a warning enumerating them. | |
| 1307 ;; `unresolved' in the list `byte-compile-warnings' disables this. | |
| 1308 (defun byte-compile-warn-about-unresolved-functions (&optional msg) | |
| 1309 (if (memq 'unresolved byte-compile-warnings) | |
| 1310 (let ((byte-compile-current-form (or msg "the end of the data"))) | |
| 1311 ;; First delete the autoloads from the list. | |
| 1312 (if byte-compile-autoload-environment | |
| 1313 (let ((rest byte-compile-unresolved-functions)) | |
| 1314 (while rest | |
| 1315 (if (assq (car (car rest)) byte-compile-autoload-environment) | |
| 1316 (setq byte-compile-unresolved-functions | |
| 1317 (delq (car rest) byte-compile-unresolved-functions))) | |
| 1318 (setq rest (cdr rest))))) | |
| 1319 ;; Now warn. | |
| 1320 (if (cdr byte-compile-unresolved-functions) | |
| 1321 (let* ((str "The following functions are not known to be defined: ") | |
| 1322 (L (+ (length str) 5)) | |
| 1323 (rest (reverse byte-compile-unresolved-functions)) | |
| 1324 s) | |
| 1325 (while rest | |
| 1326 (setq s (symbol-name (car (car rest))) | |
| 1327 L (+ L (length s) 2) | |
| 1328 rest (cdr rest)) | |
| 1329 (if (<= L (1- fill-column)) | |
| 1330 (setq str (concat str " " s (and rest ","))) | |
| 1331 (setq str (concat str "\n " s (and rest ",")) | |
| 1332 L (+ (length s) 4)))) | |
| 1333 (byte-compile-warn "%s" str)) | |
| 1334 (if byte-compile-unresolved-functions | |
| 1335 (byte-compile-warn "the function %s is not known to be defined." | |
| 1336 (car (car byte-compile-unresolved-functions))))))) | |
| 1337 nil) | |
| 1338 | |
| 1339 (defun byte-compile-defvar-p (var) | |
| 1340 ;; Whether the byte compiler thinks that non-lexical references to this | |
| 1341 ;; variable are ok. | |
| 1342 (or (globally-boundp var) | |
| 1343 (let ((rest byte-compile-bound-variables)) | |
| 1344 (while (and rest var) | |
| 1345 (if (and (eq var (car-safe (car rest))) | |
| 1346 (not (= 0 (logand (cdr (car rest)) | |
| 1347 byte-compile-global-bit)))) | |
| 1348 (setq var nil)) | |
| 1349 (setq rest (cdr rest))) | |
| 1350 ;; if var is nil at this point, it's a defvar in this file. | |
| 444 | 1351 (not var)) |
| 1352 ;; Perhaps (eval-when-compile (defvar foo)) | |
| 1353 (and (boundp 'current-load-list) | |
| 1354 (memq var current-load-list)))) | |
| 428 | 1355 |
| 1356 | |
| 1357 ;;; If we have compiled bindings of variables which have no referents, warn. | |
| 1358 (defun byte-compile-warn-about-unused-variables () | |
| 1359 (let ((rest byte-compile-bound-variables) | |
| 1360 (unreferenced '()) | |
| 1361 cell) | |
| 1362 (while (and rest | |
| 1363 ;; only warn about variables whose lifetime is now ending, | |
| 1364 ;; that is, variables from the lexical scope that is now | |
| 1365 ;; terminating. (Think nested lets.) | |
| 1366 (not (eq (car rest) 'new-scope))) | |
| 1367 (setq cell (car rest)) | |
| 1368 (if (and (= 0 (logand byte-compile-referenced-bit (cdr cell))) | |
| 1369 ;; Don't warn about declared-but-unused arguments, | |
| 1370 ;; for two reasons: first, the arglist structure | |
| 1371 ;; might be imposed by external forces, and we don't | |
| 1372 ;; have (declare (ignore x)) yet; and second, inline | |
| 1373 ;; expansion produces forms like | |
| 1374 ;; ((lambda (arg) (byte-code "..." [arg])) x) | |
| 1375 ;; which we can't (ok, well, don't) recognize as | |
| 1376 ;; containing a reference to arg, so every inline | |
| 1377 ;; expansion would generate a warning. (If we had | |
| 1378 ;; `ignore' then inline expansion could emit an | |
| 1379 ;; ignore declaration.) | |
| 1380 (= 0 (logand byte-compile-arglist-bit (cdr cell))) | |
| 1381 ;; Don't warn about defvars because this is a | |
| 1382 ;; legitimate special binding. | |
| 1383 (not (byte-compile-defvar-p (car cell)))) | |
| 1384 (setq unreferenced (cons (car cell) unreferenced))) | |
| 1385 (setq rest (cdr rest))) | |
| 1386 (setq unreferenced (nreverse unreferenced)) | |
| 1387 (while unreferenced | |
| 1388 (byte-compile-warn | |
| 1389 (format "variable %s bound but not referenced" (car unreferenced))) | |
| 1390 (setq unreferenced (cdr unreferenced))))) | |
| 1391 | |
| 1392 | |
| 1393 (defmacro byte-compile-constant-symbol-p (symbol) | |
| 1394 `(or (keywordp ,symbol) (memq ,symbol '(nil t)))) | |
| 1395 | |
| 1396 (defmacro byte-compile-constp (form) | |
| 1397 ;; Returns non-nil if FORM is a constant. | |
|
5282
dcc34e28cd84
Warn at byte-compile in #'the if FORM constant & not TYPE; fix byte-compile-constp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5269
diff
changeset
|
1398 `(cond ((consp ,form) (memq (car ,form) '(quote function))) |
| 428 | 1399 ((symbolp ,form) (byte-compile-constant-symbol-p ,form)) |
| 1400 (t))) | |
| 1401 | |
| 1402 (defmacro byte-compile-close-variables (&rest body) | |
| 1403 `(let | |
| 1404 (;; | |
| 1405 ;; Close over these variables to encapsulate the | |
| 1406 ;; compilation state | |
| 1407 ;; | |
| 1408 (byte-compile-macro-environment | |
| 1409 ;; Copy it because the compiler may patch into the | |
| 1410 ;; macroenvironment. | |
| 1411 (copy-alist byte-compile-initial-macro-environment)) | |
| 1412 (byte-compile-function-environment nil) | |
| 1413 (byte-compile-autoload-environment nil) | |
| 1414 (byte-compile-unresolved-functions nil) | |
| 1415 (byte-compile-bound-variables nil) | |
| 1416 (byte-compile-free-references nil) | |
| 1417 (byte-compile-free-assignments nil) | |
| 1418 ;; | |
| 1419 ;; Close over these variables so that `byte-compiler-options' | |
| 1420 ;; can change them on a per-file basis. | |
| 1421 ;; | |
| 1422 (byte-compile-verbose byte-compile-verbose) | |
| 1423 (byte-optimize byte-optimize) | |
| 1424 (byte-compile-emacs19-compatibility | |
| 1425 byte-compile-emacs19-compatibility) | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1426 (byte-compile-checks-on-load |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1427 byte-compile-checks-on-load) |
| 428 | 1428 (byte-compile-dynamic byte-compile-dynamic) |
| 1429 (byte-compile-dynamic-docstrings | |
| 1430 byte-compile-dynamic-docstrings) | |
| 1431 (byte-compile-warnings (if (eq byte-compile-warnings t) | |
| 1432 byte-compile-default-warnings | |
| 1433 byte-compile-warnings)) | |
| 1434 (byte-compile-file-domain nil)) | |
| 1435 (prog1 | |
| 1436 (progn ,@body) | |
| 1437 (if (memq 'unused-vars byte-compile-warnings) | |
| 1438 ;; done compiling in this scope, warn now. | |
| 1439 (byte-compile-warn-about-unused-variables))))) | |
| 1440 | |
| 1441 | |
| 1442 (defmacro displaying-byte-compile-warnings (&rest body) | |
| 1443 `(let* ((byte-compile-log-buffer (get-buffer-create "*Compile-Log*")) | |
| 1444 (byte-compile-point-max-prev (point-max byte-compile-log-buffer))) | |
| 1445 ;; Log the file name or buffer name. | |
| 1446 (byte-compile-log-file) | |
| 1447 ;; Record how much is logged now. | |
| 1448 ;; We will display the log buffer if anything more is logged | |
| 1449 ;; before the end of BODY. | |
| 1450 (defvar byte-compile-warnings-beginning) | |
| 1451 (let ((byte-compile-warnings-beginning | |
| 1452 (if (boundp 'byte-compile-warnings-beginning) | |
| 1453 byte-compile-warnings-beginning | |
| 1454 (point-max byte-compile-log-buffer)))) | |
| 1455 | |
| 1456 (unwind-protect | |
| 442 | 1457 (call-with-condition-handler |
| 1458 #'(lambda (error-info) | |
| 1459 (byte-compile-report-error error-info)) | |
| 1460 #'(lambda () | |
| 1461 (progn ,@body))) | |
| 428 | 1462 ;; Always set point in log to start of interesting output. |
| 1463 (with-current-buffer byte-compile-log-buffer | |
| 1464 (let ((show-begin | |
| 1465 (progn (goto-char byte-compile-point-max-prev) | |
| 1466 (skip-chars-forward "\^L\n") | |
| 1467 (point)))) | |
| 1468 ;; If there were compilation warnings, display them. | |
| 1469 (if temp-buffer-show-function | |
| 1470 (let ((show-buffer (get-buffer-create "*Compile-Log-Show*"))) | |
| 1471 ;; Always clean show-buffer, even when not displaying it, | |
| 1472 ;; so that misleading previous messages aren't left around. | |
| 1473 (with-current-buffer show-buffer | |
| 1474 (setq buffer-read-only nil) | |
| 1475 (erase-buffer)) | |
| 1476 (copy-to-buffer show-buffer show-begin (point-max)) | |
| 1477 (when (< byte-compile-warnings-beginning (point-max)) | |
| 1478 (funcall temp-buffer-show-function show-buffer))) | |
| 1479 (when (< byte-compile-warnings-beginning (point-max)) | |
| 1480 (select-window | |
| 1481 (prog1 (selected-window) | |
| 1482 (select-window (display-buffer (current-buffer))) | |
| 1483 (goto-char show-begin) | |
| 1484 (recenter 1))))))))))) | |
| 1485 | |
| 1486 | |
| 1487 ;;;###autoload | |
| 1488 (defun byte-force-recompile (directory) | |
| 1489 "Recompile every `.el' file in DIRECTORY that already has a `.elc' file. | |
| 1490 Files in subdirectories of DIRECTORY are processed also." | |
| 1491 (interactive "DByte force recompile (directory): ") | |
| 442 | 1492 (byte-recompile-directory directory nil nil t)) |
| 428 | 1493 |
| 1494 ;;;###autoload | |
| 1495 (defun byte-recompile-directory (directory &optional arg norecursion force) | |
| 1496 "Recompile every `.el' file in DIRECTORY that needs recompilation. | |
| 1497 This is if a `.elc' file exists but is older than the `.el' file. | |
| 444 | 1498 Files in subdirectories of DIRECTORY are also processed unless |
| 1499 optional argument NORECURSION is non-nil. | |
| 428 | 1500 |
| 1501 If the `.elc' file does not exist, normally the `.el' file is *not* compiled. | |
| 1502 But a prefix argument (optional second arg) means ask user, | |
| 1503 for each such `.el' file, whether to compile it. Prefix argument 0 means | |
| 1504 don't ask and compile the file anyway. | |
| 1505 | |
| 1506 A nonzero prefix argument also means ask about each subdirectory. | |
| 1507 | |
| 444 | 1508 If the fourth optional argument FORCE is non-nil, |
| 428 | 1509 recompile every `.el' file that already has a `.elc' file." |
| 1510 (interactive "DByte recompile directory: \nP") | |
| 1511 (if arg | |
| 1512 (setq arg (prefix-numeric-value arg))) | |
| 1513 (if noninteractive | |
| 1514 nil | |
| 1515 (save-some-buffers) | |
| 1516 (redraw-modeline)) | |
| 1517 (let ((directories (list (expand-file-name directory))) | |
| 1518 (file-count 0) | |
| 1519 (dir-count 0) | |
| 1520 last-dir) | |
| 1521 (displaying-byte-compile-warnings | |
| 1522 (while directories | |
| 1523 (setq directory (file-name-as-directory (car directories))) | |
| 1524 (or noninteractive (message "Checking %s..." directory)) | |
| 1525 (let ((files (directory-files directory)) | |
| 1526 source dest) | |
| 1527 (while files | |
| 1528 (setq source (expand-file-name (car files) directory)) | |
| 1529 (if (and (not (member (car files) '("." ".." "RCS" "CVS" "SCCS"))) | |
| 1530 ;; Stay away from directory back-links, etc: | |
| 1531 (not (file-symlink-p source)) | |
| 1532 (file-directory-p source) | |
| 1533 byte-recompile-directory-recursively) | |
| 1534 ;; This file is a subdirectory. Handle them differently. | |
| 1535 (if (or (null arg) | |
| 1536 (eq arg 0) | |
| 1537 (y-or-n-p (concat "Check " source "? "))) | |
| 1538 (setq directories | |
| 1539 (nconc directories (list source)))) | |
| 1540 ;; It is an ordinary file. Decide whether to compile it. | |
| 1541 (if (and (string-match emacs-lisp-file-regexp source) | |
| 1542 (not (auto-save-file-name-p source)) | |
| 502 | 1543 ;; make sure not a mule file we can't handle. |
| 1544 (or (not byte-recompile-ignore-uncompilable-mule-files) | |
| 1545 (featurep 'mule) | |
| 1546 (not (find-coding-system-magic-cookie-in-file | |
| 1547 source))) | |
| 428 | 1548 (setq dest (byte-compile-dest-file source)) |
| 1549 (if (file-exists-p dest) | |
| 1550 ;; File was already compiled. | |
| 1551 (or force (file-newer-than-file-p source dest)) | |
| 1552 ;; No compiled file exists yet. | |
| 1553 (and arg | |
| 1554 (or (eq 0 arg) | |
| 1555 (y-or-n-p (concat "Compile " source "? ")))))) | |
| 1556 (progn ;(if (and noninteractive (not byte-compile-verbose)) | |
| 1557 ; (message "Compiling %s..." source)) | |
| 1558 ; we do this in byte-compile-file. | |
| 1559 (if byte-recompile-directory-ignore-errors-p | |
| 1560 (batch-byte-compile-1 source) | |
| 1561 (byte-compile-file source)) | |
| 1562 (or noninteractive | |
| 1563 (message "Checking %s..." directory)) | |
| 1564 (setq file-count (1+ file-count)) | |
| 1565 (if (not (eq last-dir directory)) | |
| 1566 (setq last-dir directory | |
| 1567 dir-count (1+ dir-count))) | |
| 1568 ))) | |
| 1569 (setq files (cdr files)))) | |
| 1570 (setq directories (cdr directories)))) | |
| 1571 (message "Done (Total of %d file%s compiled%s)" | |
| 1572 file-count (if (= file-count 1) "" "s") | |
| 1573 (if (> dir-count 1) (format " in %d directories" dir-count) "")))) | |
| 1574 | |
| 1575 ;;;###autoload | |
| 1576 (defun byte-recompile-file (filename &optional force) | |
| 1577 "Recompile a file of Lisp code named FILENAME if it needs recompilation. | |
| 1578 This is if the `.elc' file exists but is older than the `.el' file. | |
| 1579 | |
| 1580 If the `.elc' file does not exist, normally the `.el' file is *not* | |
| 1581 compiled. But a prefix argument (optional second arg) means ask user | |
| 1582 whether to compile it. Prefix argument 0 don't ask and recompile anyway." | |
| 1583 (interactive "fByte recompile file: \nP") | |
| 1584 (let ((dest)) | |
| 1585 (if (and (string-match emacs-lisp-file-regexp filename) | |
| 1586 (not (auto-save-file-name-p filename)) | |
| 1587 (setq dest (byte-compile-dest-file filename)) | |
| 1588 (if (file-exists-p dest) | |
| 1589 (file-newer-than-file-p filename dest) | |
| 1590 (and force | |
| 1591 (or (eq 0 force) | |
| 502 | 1592 (y-or-n-p (concat "Compile " filename "? "))))) |
| 1593 (or (not byte-recompile-ignore-uncompilable-mule-files) | |
| 1594 (featurep 'mule) | |
| 1595 (not (find-coding-system-magic-cookie-in-file filename)))) | |
| 428 | 1596 (byte-compile-file filename)))) |
| 1597 | |
| 1598 ;;;###autoload | |
| 1599 (defun byte-compile-file (filename &optional load) | |
| 1600 "Compile a file of Lisp code named FILENAME into a file of byte code. | |
| 1601 The output file's name is made by appending `c' to the end of FILENAME. | |
| 1602 With prefix arg (noninteractively: 2nd arg), load the file after compiling." | |
| 1603 ;; (interactive "fByte compile file: \nP") | |
| 1604 (interactive | |
| 1605 (let ((file buffer-file-name) | |
| 1606 (file-name nil) | |
| 1607 (file-dir nil)) | |
| 1608 (and file | |
| 1609 (eq (cdr (assq 'major-mode (buffer-local-variables))) | |
| 1610 'emacs-lisp-mode) | |
| 1611 (setq file-name (file-name-nondirectory file) | |
| 1612 file-dir (file-name-directory file))) | |
| 1613 (list (read-file-name (if current-prefix-arg | |
| 1614 "Byte compile and load file: " | |
| 1615 "Byte compile file: ") | |
| 1616 file-dir nil nil file-name) | |
| 1617 current-prefix-arg))) | |
| 1618 ;; Expand now so we get the current buffer's defaults | |
| 1619 (setq filename (expand-file-name filename)) | |
| 1620 | |
| 1621 ;; If we're compiling a file that's in a buffer and is modified, offer | |
| 1622 ;; to save it first. | |
| 1623 (or noninteractive | |
| 1624 (let ((b (get-file-buffer (expand-file-name filename)))) | |
| 1625 (if (and b (buffer-modified-p b) | |
| 1626 (y-or-n-p (format "save buffer %s first? " (buffer-name b)))) | |
| 1627 (save-excursion (set-buffer b) (save-buffer))))) | |
| 1628 | |
| 1629 (if (or noninteractive byte-compile-verbose) ; XEmacs change | |
| 1630 (message "Compiling %s..." filename)) | |
| 1631 (let (;;(byte-compile-current-file (file-name-nondirectory filename)) | |
| 1632 (byte-compile-current-file filename) | |
| 1633 target-file input-buffer output-buffer | |
| 1634 byte-compile-dest-file) | |
| 1635 (setq target-file (byte-compile-dest-file filename)) | |
| 1636 (setq byte-compile-dest-file target-file) | |
| 1637 (save-excursion | |
| 1638 (setq input-buffer (get-buffer-create " *Compiler Input*")) | |
| 1639 (set-buffer input-buffer) | |
| 1640 (erase-buffer) | |
| 1641 (insert-file-contents filename) | |
| 1642 ;; Run hooks including the uncompression hook. | |
| 1643 ;; If they change the file name, then change it for the output also. | |
| 1644 (let ((buffer-file-name filename) | |
| 1645 (default-major-mode 'emacs-lisp-mode) | |
| 1646 (enable-local-eval nil)) | |
| 1647 (normal-mode) | |
| 1648 (setq filename buffer-file-name))) | |
| 1649 (setq byte-compiler-error-flag nil) | |
| 1650 ;; It is important that input-buffer not be current at this call, | |
| 1651 ;; so that the value of point set in input-buffer | |
| 1652 ;; within byte-compile-from-buffer lingers in that buffer. | |
| 1653 (setq output-buffer (byte-compile-from-buffer input-buffer filename)) | |
| 1654 (if byte-compiler-error-flag | |
| 1655 nil | |
| 1656 (if byte-compile-verbose | |
| 1657 (message "Compiling %s...done" filename)) | |
| 1658 (kill-buffer input-buffer) | |
| 1659 (save-excursion | |
| 1660 (set-buffer output-buffer) | |
| 1661 (goto-char (point-max)) | |
| 1662 (insert "\n") ; aaah, unix. | |
| 1663 (setq target-file (byte-compile-dest-file filename)) | |
| 1664 (unless byte-compile-overwrite-file | |
| 1665 (ignore-file-errors (delete-file target-file))) | |
| 1666 (if (file-writable-p target-file) | |
|
4529
6f41fb7f3a65
Protect .elc encoding from latin-unity.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4392
diff
changeset
|
1667 ;; prevent generic hooks from changing our format, eg, |
|
6f41fb7f3a65
Protect .elc encoding from latin-unity.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4392
diff
changeset
|
1668 ;; latin-unity is known to change the coding system! |
|
6f41fb7f3a65
Protect .elc encoding from latin-unity.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4392
diff
changeset
|
1669 (let ((write-region-pre-hook nil)) |
|
6f41fb7f3a65
Protect .elc encoding from latin-unity.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4392
diff
changeset
|
1670 (write-region 1 (point-max) target-file)) |
| 428 | 1671 ;; This is just to give a better error message than write-region |
| 1672 (signal 'file-error | |
| 1673 (list "Opening output file" | |
| 1674 (if (file-exists-p target-file) | |
| 1675 "cannot overwrite file" | |
| 1676 "directory not writable or nonexistent") | |
| 1677 target-file))) | |
| 1678 (or byte-compile-overwrite-file | |
| 1679 (condition-case () | |
| 1680 (set-file-modes target-file (file-modes filename)) | |
| 1681 (error nil))) | |
| 1682 (kill-buffer (current-buffer))) | |
| 1683 (if (and byte-compile-generate-call-tree | |
| 1684 (or (eq t byte-compile-generate-call-tree) | |
| 1685 (y-or-n-p (format "Report call tree for %s? " filename)))) | |
| 1686 (save-excursion | |
| 1687 (display-call-tree filename))) | |
| 1688 (if load | |
| 1689 (load target-file)) | |
| 1690 t))) | |
| 1691 | |
| 1692 ;; RMS comments the next two out. | |
| 1693 | |
| 1694 ;;;###autoload | |
| 1695 (defun byte-compile-and-load-file (&optional filename) | |
| 1696 "Compile a file of Lisp code named FILENAME into a file of byte code, | |
| 1697 and then load it. The output file's name is made by appending \"c\" to | |
| 1698 the end of FILENAME." | |
| 1699 (interactive) | |
| 1700 (if filename ; I don't get it, (interactive-p) doesn't always work | |
| 1701 (byte-compile-file filename t) | |
| 1702 (let ((current-prefix-arg '(4))) | |
| 1703 (call-interactively 'byte-compile-file)))) | |
| 1704 | |
| 1705 ;;;###autoload | |
| 1706 (defun byte-compile-buffer (&optional buffer) | |
| 1707 "Byte-compile and evaluate contents of BUFFER (default: the current buffer)." | |
| 1708 (interactive "bByte compile buffer: ") | |
| 1709 (setq buffer (if buffer (get-buffer buffer) (current-buffer))) | |
| 1710 (message "Compiling %s..." buffer) | |
| 1711 (let* ((filename (or (buffer-file-name buffer) | |
| 1712 (prin1-to-string buffer))) | |
| 1713 (byte-compile-current-file buffer)) | |
| 1714 (byte-compile-from-buffer buffer filename t)) | |
| 1715 (message "Compiling %s...done" buffer) | |
| 1716 t) | |
| 1717 | |
| 1718 ;;; compiling a single function | |
| 1719 ;;;###autoload | |
| 1720 (defun compile-defun (&optional arg) | |
| 1721 "Compile and evaluate the current top-level form. | |
| 1722 Print the result in the minibuffer. | |
| 1723 With argument, insert value in current buffer after the form." | |
| 1724 (interactive "P") | |
| 1725 (save-excursion | |
| 1726 (end-of-defun) | |
| 1727 (beginning-of-defun) | |
| 1728 (let* ((byte-compile-current-file (buffer-file-name)) | |
| 1729 (load-file-name (buffer-file-name)) | |
| 1730 (byte-compile-last-warned-form 'nothing) | |
| 1731 (value (eval (displaying-byte-compile-warnings | |
| 1732 (byte-compile-sexp (read (current-buffer)) | |
| 1733 "toplevel forms"))))) | |
| 1734 (cond (arg | |
| 1735 (message "Compiling from buffer... done.") | |
| 1736 (prin1 value (current-buffer)) | |
| 1737 (insert "\n")) | |
| 1738 ((message "%s" (prin1-to-string value))))))) | |
| 1739 | |
| 1740 (defun byte-compile-from-buffer (byte-compile-inbuffer filename &optional eval) | |
| 1741 ;; buffer --> output-buffer, or buffer --> eval form, return nil | |
| 1742 (let (byte-compile-outbuffer | |
| 1743 ;; Prevent truncation of flonums and lists as we read and print them | |
| 1744 (float-output-format nil) | |
| 1745 (case-fold-search nil) | |
| 1746 (print-length nil) | |
| 1747 (print-level nil) | |
| 1748 ;; Simulate entry to byte-compile-top-level | |
| 1749 (byte-compile-constants nil) | |
| 1750 (byte-compile-variables nil) | |
| 1751 (byte-compile-tag-number 0) | |
| 1752 (byte-compile-depth 0) | |
| 1753 (byte-compile-maxdepth 0) | |
| 1754 (byte-compile-output nil) | |
| 1755 ;; #### This is bound in b-c-close-variables. | |
| 1756 ;; (byte-compile-warnings (if (eq byte-compile-warnings t) | |
| 1757 ;; byte-compile-warning-types | |
| 1758 ;; byte-compile-warnings)) | |
|
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1759 (byte-compile-force-escape-quoted byte-compile-force-escape-quoted) |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1760 (byte-compile-using-dynamic nil)) |
| 428 | 1761 (byte-compile-close-variables |
| 1762 (save-excursion | |
| 1763 (setq byte-compile-outbuffer | |
| 1764 (set-buffer (get-buffer-create " *Compiler Output*"))) | |
| 1765 (erase-buffer) | |
| 1766 ;; (emacs-lisp-mode) | |
| 1767 (setq case-fold-search nil) | |
| 1768 (and filename | |
| 1769 (not eval) | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1770 (byte-compile-maybe-reset-coding byte-compile-inbuffer |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1771 byte-compile-outbuffer)) |
|
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1772 (setq byte-compile-using-dynamic |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1773 (or (symbol-value-in-buffer 'byte-compile-dynamic |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1774 byte-compile-inbuffer) |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1775 (symbol-value-in-buffer 'byte-compile-dynamic-docstrings |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1776 byte-compile-inbuffer))) |
| 428 | 1777 ;; This is a kludge. Some operating systems (OS/2, DOS) need to |
| 1778 ;; write files containing binary information specially. | |
| 1779 ;; Under most circumstances, such files will be in binary | |
| 1780 ;; overwrite mode, so those OS's use that flag to guess how | |
| 1781 ;; they should write their data. Advise them that .elc files | |
| 1782 ;; need to be written carefully. | |
| 1783 (setq overwrite-mode 'overwrite-mode-binary)) | |
| 1784 (displaying-byte-compile-warnings | |
| 1785 (save-excursion | |
|
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1786 ;; All our save-excursions may have led to a less-than-useful |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1787 ;; value for point in the outbuffer: |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1788 (goto-char (point-max byte-compile-outbuffer) byte-compile-outbuffer) |
| 428 | 1789 (set-buffer byte-compile-inbuffer) |
| 1790 (goto-char 1) | |
| 1791 | |
| 1792 ;; Compile the forms from the input buffer. | |
| 1793 (while (progn | |
| 1794 (while (progn (skip-chars-forward " \t\n\^L") | |
| 1795 (looking-at ";")) | |
| 1796 (forward-line 1)) | |
| 1797 (not (eobp))) | |
| 1798 (byte-compile-file-form (read byte-compile-inbuffer))) | |
| 1799 | |
| 1800 ;; Compile pending forms at end of file. | |
| 1801 (byte-compile-flush-pending) | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1802 (byte-compile-insert-header filename byte-compile-inbuffer |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1803 byte-compile-outbuffer) |
| 428 | 1804 (byte-compile-warn-about-unresolved-functions) |
| 1805 ;; Should we always do this? When calling multiple files, it | |
| 1806 ;; would be useful to delay this warning until all have | |
| 1807 ;; been compiled. | |
| 1808 (setq byte-compile-unresolved-functions nil))) | |
| 1809 (save-excursion | |
| 1810 (set-buffer byte-compile-outbuffer) | |
|
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1811 (goto-char (point-min)) |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1812 (when (and (or byte-compile-using-dynamic |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1813 (eq buffer-file-coding-system 'raw-text-unix)) |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1814 (re-search-forward "[^\x00-\xff]" nil t)) |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1815 (when (or noninteractive byte-compile-verbose) |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1816 (message |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1817 "%s: includes char above ?\\xFF, recompiling sans dynamic features." |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1818 filename)) |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1819 (set-symbol-value-in-buffer 'byte-compile-dynamic nil |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1820 byte-compile-inbuffer) |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1821 (set-symbol-value-in-buffer 'byte-compile-dynamic-docstrings nil |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1822 byte-compile-inbuffer) |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1823 (setq byte-compile-force-escape-quoted t |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1824 byte-compile-outbuffer |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1825 (byte-compile-from-buffer byte-compile-inbuffer |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1826 filename eval))))) |
| 428 | 1827 (if (not eval) |
| 1828 byte-compile-outbuffer | |
| 1829 (let (form) | |
| 1830 (while (condition-case nil | |
| 1831 (progn (setq form (read byte-compile-outbuffer)) | |
| 1832 t) | |
| 1833 (end-of-file nil)) | |
| 1834 (eval form))) | |
| 1835 (kill-buffer byte-compile-outbuffer) | |
| 1836 nil))) | |
| 1837 | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1838 (defvar byte-compile-checks-and-comments-space 475 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1839 "Number of octets of space for checks and comments; used by the dynamic |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1840 docstrings code.") |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1841 |
| 428 | 1842 (defun byte-compile-insert-header (filename byte-compile-inbuffer |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1843 byte-compile-outbuffer) |
| 428 | 1844 (set-buffer byte-compile-inbuffer) |
|
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1845 (let (comments) |
| 428 | 1846 (set-buffer byte-compile-outbuffer) |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1847 (delete-region 1 (1+ byte-compile-checks-and-comments-space)) |
| 428 | 1848 (goto-char 1) |
| 1849 ;; | |
| 1850 ;; The magic number of .elc files is ";ELC", or 0x3B454C43. After that is | |
| 1851 ;; the file-format version number (19 or 20) as a byte, followed by some | |
| 1852 ;; nulls. The primary motivation for doing this is to get some binary | |
| 1853 ;; characters up in the first line of the file so that `diff' will simply | |
| 1854 ;; say "Binary files differ" instead of actually doing a diff of two .elc | |
| 1855 ;; files. An extra benefit is that you can add this to /etc/magic: | |
| 1856 ;; | |
| 613 | 1857 ;; 0 string ;ELC XEmacs Lisp compiled file, |
| 428 | 1858 ;; >4 byte x version %d |
| 1859 ;; | |
| 1860 (insert | |
| 1861 ";ELC" | |
| 1862 (if (byte-compile-version-cond byte-compile-emacs19-compatibility) 19 20) | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1863 "\000\000\000\n") |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1864 (when (not (eq (find-coding-system 'raw-text-unix) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1865 (find-coding-system buffer-file-coding-system))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1866 (insert (format ";;;###coding system: %s\n" |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1867 (coding-system-name buffer-file-coding-system)))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1868 (insert (format |
|
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1869 "\n(or %s\n (error \"Loading this file requires %s\"))\n" |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1870 (let ((print-readably t)) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1871 (prin1-to-string (if (> (length |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1872 byte-compile-checks-on-load) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1873 1) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1874 (cons 'and |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1875 (setq byte-compile-checks-on-load |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1876 (reverse |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1877 byte-compile-checks-on-load))) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1878 (car byte-compile-checks-on-load)))) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1879 (loop |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1880 for check in byte-compile-checks-on-load |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1881 with seen-first = nil |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1882 with res = "" |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1883 do |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1884 (if seen-first |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1885 (setq res (concat res ", ")) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1886 (setq seen-first t)) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1887 ;; Print featurep calls differently: |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1888 (if (and (eq (car check) 'featurep) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1889 (eq (car (second check)) 'quote) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1890 (symbolp (second (second check)))) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1891 (setq res (concat res |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1892 (symbol-name (second (second check))))) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1893 (setq res (concat res |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1894 (let ((print-readably t)) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1895 (prin1-to-string check))))) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
1896 finally return res))) |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1897 (setq comments |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1898 (with-string-as-buffer-contents "" |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1899 (insert "\n;;; compiled by " |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1900 (or (and (boundp 'user-mail-address) user-mail-address) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1901 (concat (user-login-name) "@" (system-name))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1902 " on " |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1903 (current-time-string) "\n;;; from file " filename "\n") |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1904 (insert ";;; emacs version " emacs-version ".\n") |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1905 (insert ";;; bytecomp version " byte-compile-version "\n;;; " |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1906 (cond |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1907 ((eq byte-optimize 'source) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1908 "source-level optimization only") |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1909 ((eq byte-optimize 'byte) "byte-level optimization only") |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1910 (byte-optimize "optimization is on") |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1911 (t "optimization is off")) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1912 "\n"))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1913 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1914 ;; We won't trip this unless the byte-compiler changes, in which case |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1915 ;; it's just a matter of upping the space. |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1916 (assert (natnump (- (1+ byte-compile-checks-and-comments-space) (point))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1917 t "Not enough space for the feature checks!") |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1918 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1919 (if (natnump (- (1+ byte-compile-checks-and-comments-space) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1920 (+ (point) (length comments)))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1921 (insert comments)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1922 (insert-char ?\ (- (1+ byte-compile-checks-and-comments-space) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1923 (point))))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1924 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1925 (defun byte-compile-maybe-reset-coding (byte-compile-inbuffer |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1926 byte-compile-outbuffer) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1927 ;; We also reserve some space for the feature checks: |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1928 (goto-char 1) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1929 (insert-char ?\ byte-compile-checks-and-comments-space) |
| 771 | 1930 (if (or (featurep '(not mule)) ;; Don't scan buffer if we are not muleized |
|
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1931 (and |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1932 (not byte-compile-force-escape-quoted) |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1933 (save-excursion |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1934 (set-buffer byte-compile-inbuffer) |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1935 (goto-char (point-min)) |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1936 ;; Look for any non-Latin-1 literals or Unicode character |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1937 ;; escapes. Any such occurrences in a @#COUNT comment will lead |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1938 ;; to an escape-quoted coding cookie being inserted, but this is |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1939 ;; not true of ordinary comments. |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1940 (let ((non-latin-1-re |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1941 (concat "[^\000-\377]" |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1942 #r"\|\\u[0-9a-fA-F]\{4,4\}\|\\U[0-9a-fA-F]" |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1943 "\\{8,8\\}")) |
|
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1944 (case-fold-search nil)) |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1945 (catch 'need-to-escape-quote |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1946 (while (re-search-forward non-latin-1-re nil t) |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1947 (skip-chars-backward "^;" (point-at-bol)) |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1948 (if (bolp) (throw 'need-to-escape-quote nil)) |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1949 (forward-line 1)) |
|
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1950 t))))) |
| 771 | 1951 (setq buffer-file-coding-system 'raw-text-unix) |
| 1952 (setq buffer-file-coding-system 'escape-quoted) | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1953 (pushnew '(featurep 'mule) byte-compile-checks-on-load) |
| 771 | 1954 (save-excursion |
| 1955 (set-buffer byte-compile-inbuffer) | |
| 1956 (setq byte-compile-dynamic nil | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1957 byte-compile-dynamic-docstrings nil)))) |
| 428 | 1958 |
| 1959 (defun byte-compile-output-file-form (form) | |
| 1960 ;; writes the given form to the output buffer, being careful of docstrings | |
| 1961 ;; in defun, defmacro, defvar, defconst and autoload because make-docfile is | |
| 1962 ;; so amazingly stupid. | |
| 1963 ;; defalias calls are output directly by byte-compile-file-form-defmumble; | |
| 1964 ;; it does not pay to first build the defalias in defmumble and then parse | |
| 1965 ;; it here. | |
|
4539
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4529
diff
changeset
|
1966 (if (and (memq (car-safe form) '(defun defmacro defvar defconst autoload |
|
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4529
diff
changeset
|
1967 custom-declare-variable)) |
| 428 | 1968 (stringp (nth 3 form))) |
| 1969 (byte-compile-output-docform nil nil '("\n(" 3 ")") form nil | |
|
4539
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4529
diff
changeset
|
1970 (memq (car form) |
|
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4529
diff
changeset
|
1971 '(autoload custom-declare-variable))) |
| 428 | 1972 (let ((print-escape-newlines t) |
| 1973 (print-length nil) | |
| 1974 (print-level nil) | |
| 1975 (print-readably t) ; print #[] for bytecode, 'x for (quote x) | |
| 1976 (print-gensym (if (and byte-compile-print-gensym | |
| 1977 (not byte-compile-emacs19-compatibility)) | |
|
4392
e8f448f997ac
bytecomp.el: bind print-gensym-alist to nil even with non-defvar, defun, [...] forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4304
diff
changeset
|
1978 '(t) nil)) |
|
e8f448f997ac
bytecomp.el: bind print-gensym-alist to nil even with non-defvar, defun, [...] forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4304
diff
changeset
|
1979 print-gensym-alist) |
| 428 | 1980 (princ "\n" byte-compile-outbuffer) |
| 1981 (prin1 form byte-compile-outbuffer) | |
| 1982 nil))) | |
| 1983 | |
| 1984 (defun byte-compile-output-docform (preface name info form specindex quoted) | |
| 1985 "Print a form with a doc string. INFO is (prefix doc-index postfix). | |
| 1986 If PREFACE and NAME are non-nil, print them too, | |
| 1987 before INFO and the FORM but after the doc string itself. | |
| 1988 If SPECINDEX is non-nil, it is the index in FORM | |
| 1989 of the function bytecode string. In that case, | |
| 1990 we output that argument and the following argument (the constants vector) | |
| 1991 together, for lazy loading. | |
| 1992 QUOTED says that we have to put a quote before the | |
| 1993 list that represents a doc string reference. | |
| 1994 `autoload' needs that." | |
| 1995 ;; We need to examine byte-compile-dynamic-docstrings | |
| 1996 ;; in the input buffer (now current), not in the output buffer. | |
| 1997 (let ((dynamic-docstrings byte-compile-dynamic-docstrings)) | |
| 1998 (set-buffer | |
| 1999 (prog1 (current-buffer) | |
| 2000 (set-buffer byte-compile-outbuffer) | |
| 2001 (let (position) | |
| 2002 | |
| 2003 ;; Insert the doc string, and make it a comment with #@LENGTH. | |
| 2004 (and (>= (nth 1 info) 0) | |
| 2005 dynamic-docstrings | |
| 2006 (progn | |
| 2007 ;; Make the doc string start at beginning of line | |
| 2008 ;; for make-docfile's sake. | |
| 2009 (insert "\n") | |
| 2010 (setq position | |
| 2011 (byte-compile-output-as-comment | |
| 2012 (nth (nth 1 info) form) nil)) | |
| 2013 ;; If the doc string starts with * (a user variable), | |
| 2014 ;; negate POSITION. | |
| 2015 (if (and (stringp (nth (nth 1 info) form)) | |
| 2016 (> (length (nth (nth 1 info) form)) 0) | |
| 2017 (char= (aref (nth (nth 1 info) form) 0) ?*)) | |
| 2018 (setq position (- position))))) | |
| 2019 | |
| 2020 (if preface | |
| 2021 (progn | |
| 2022 (insert preface) | |
| 2023 (prin1 name byte-compile-outbuffer))) | |
| 2024 (insert (car info)) | |
| 2025 (let ((print-escape-newlines t) | |
| 2026 (print-readably t) ; print #[] for bytecode, 'x for (quote x) | |
| 2027 ;; Use a cons cell to say that we want | |
| 2028 ;; print-gensym-alist not to be cleared between calls | |
| 2029 ;; to print functions. | |
| 2030 (print-gensym (if (and byte-compile-print-gensym | |
| 2031 (not byte-compile-emacs19-compatibility)) | |
| 2032 '(t) nil)) | |
| 2033 print-gensym-alist | |
| 2034 (index 0)) | |
| 2035 (prin1 (car form) byte-compile-outbuffer) | |
| 2036 (while (setq form (cdr form)) | |
| 2037 (setq index (1+ index)) | |
| 2038 (insert " ") | |
| 2039 (cond ((and (numberp specindex) (= index specindex)) | |
| 2040 (let ((position | |
| 2041 (byte-compile-output-as-comment | |
| 2042 (cons (car form) (nth 1 form)) | |
| 2043 t))) | |
| 2044 (princ (format "(#$ . %d) nil" position) | |
| 2045 byte-compile-outbuffer) | |
| 2046 (setq form (cdr form)) | |
| 2047 (setq index (1+ index)))) | |
| 2048 ((= index (nth 1 info)) | |
| 2049 (if position | |
| 2050 (princ (format (if quoted "'(#$ . %d)" "(#$ . %d)") | |
| 2051 position) | |
| 2052 byte-compile-outbuffer) | |
| 2053 (let ((print-escape-newlines nil)) | |
| 2054 (goto-char (prog1 (1+ (point)) | |
| 2055 (prin1 (car form) | |
| 2056 byte-compile-outbuffer))) | |
| 2057 (insert "\\\n") | |
| 2058 (goto-char (point-max))))) | |
| 2059 (t | |
| 2060 (prin1 (car form) byte-compile-outbuffer))))) | |
| 2061 (insert (nth 2 info)))))) | |
| 2062 nil) | |
| 2063 | |
| 2064 (defvar for-effect) ; ## Kludge! This should be an arg, not a special. | |
| 2065 | |
| 2066 (defun byte-compile-keep-pending (form &optional handler) | |
| 2067 (if (memq byte-optimize '(t source)) | |
| 2068 (setq form (byte-optimize-form form t))) | |
| 2069 (if handler | |
| 2070 (let ((for-effect t)) | |
| 2071 ;; To avoid consing up monstrously large forms at load time, we split | |
| 2072 ;; the output regularly. | |
| 2073 (and (memq (car-safe form) '(fset defalias define-function)) | |
| 2074 (nthcdr 300 byte-compile-output) | |
| 2075 (byte-compile-flush-pending)) | |
| 2076 (funcall handler form) | |
| 2077 (when for-effect | |
| 2078 (byte-compile-discard))) | |
| 2079 (byte-compile-form form t)) | |
| 2080 nil) | |
| 2081 | |
| 2082 (defun byte-compile-flush-pending () | |
| 2083 (if byte-compile-output | |
| 2084 (let ((form (byte-compile-out-toplevel t 'file))) | |
| 2085 (cond ((eq (car-safe form) 'progn) | |
|
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
2086 (mapc 'byte-compile-output-file-form (cdr form))) |
| 428 | 2087 (form |
| 2088 (byte-compile-output-file-form form))) | |
| 2089 (setq byte-compile-constants nil | |
| 2090 byte-compile-variables nil | |
| 2091 byte-compile-depth 0 | |
| 2092 byte-compile-maxdepth 0 | |
| 2093 byte-compile-output nil)))) | |
| 2094 | |
| 2095 (defun byte-compile-file-form (form) | |
| 2096 (let ((byte-compile-current-form nil) ; close over this for warnings. | |
| 2097 handler) | |
| 2098 (cond | |
| 2099 ((not (consp form)) | |
| 2100 (byte-compile-keep-pending form)) | |
| 2101 ((and (symbolp (car form)) | |
| 2102 (setq handler (get (car form) 'byte-hunk-handler))) | |
| 2103 (cond ((setq form (funcall handler form)) | |
| 2104 (byte-compile-flush-pending) | |
| 2105 (byte-compile-output-file-form form)))) | |
| 2106 ((eq form (setq form (macroexpand form byte-compile-macro-environment))) | |
| 2107 (byte-compile-keep-pending form)) | |
| 2108 (t | |
| 2109 (byte-compile-file-form form))))) | |
| 2110 | |
| 2111 ;; Functions and variables with doc strings must be output separately, | |
| 2112 ;; so make-docfile can recognize them. Most other things can be output | |
| 2113 ;; as byte-code. | |
| 2114 | |
| 2115 (put 'defsubst 'byte-hunk-handler 'byte-compile-file-form-defsubst) | |
| 2116 (defun byte-compile-file-form-defsubst (form) | |
| 2117 (cond ((assq (nth 1 form) byte-compile-unresolved-functions) | |
| 2118 (setq byte-compile-current-form (nth 1 form)) | |
| 2119 (byte-compile-warn "defsubst %s was used before it was defined" | |
| 2120 (nth 1 form)))) | |
| 2121 (byte-compile-file-form | |
| 2122 (macroexpand form byte-compile-macro-environment)) | |
| 2123 ;; Return nil so the form is not output twice. | |
| 2124 nil) | |
| 2125 | |
| 2126 (put 'autoload 'byte-hunk-handler 'byte-compile-file-form-autoload) | |
| 2127 (defun byte-compile-file-form-autoload (form) | |
| 2128 ;; | |
| 2129 ;; If this is an autoload of a macro, and all arguments are constants (that | |
| 2130 ;; is, there is no hairy computation going on here) then evaluate the form | |
| 2131 ;; at compile-time. This is so that we can make use of macros which we | |
| 2132 ;; have autoloaded from the file being compiled. Normal function autoloads | |
| 2133 ;; are not automatically evaluated at compile time, because there's not | |
| 2134 ;; much point to it (so why bother cluttering up the compile-time namespace.) | |
| 2135 ;; | |
| 2136 ;; If this is an autoload of a function, then record its definition in the | |
| 2137 ;; byte-compile-autoload-environment to suppress any `not known to be | |
| 2138 ;; defined' warnings at the end of this file (this only matters for | |
| 2139 ;; functions which are autoloaded and compiled in the same file, if the | |
| 2140 ;; autoload already exists in the compilation environment, we wouldn't have | |
| 2141 ;; warned anyway.) | |
| 2142 ;; | |
| 2143 (let* ((name (if (byte-compile-constp (nth 1 form)) | |
| 2144 (eval (nth 1 form)))) | |
| 2145 ;; In v19, the 5th arg to autoload can be t, nil, 'macro, or 'keymap. | |
| 2146 (macrop (and (byte-compile-constp (nth 5 form)) | |
| 2147 (memq (eval (nth 5 form)) '(t macro)))) | |
| 2148 ;; (functionp (and (byte-compile-constp (nth 5 form)) | |
| 2149 ;; (eq 'nil (eval (nth 5 form))))) | |
| 2150 ) | |
| 2151 (if (and macrop | |
| 2152 (let ((form form)) | |
| 2153 ;; all forms are constant | |
| 2154 (while (if (setq form (cdr form)) | |
| 2155 (byte-compile-constp (car form)))) | |
| 2156 (null form))) | |
| 440 | 2157 ;; eval the macro autoload into the compilation environment |
| 428 | 2158 (eval form)) |
| 2159 | |
| 2160 (if name | |
| 2161 (let ((old (assq name byte-compile-autoload-environment))) | |
| 2162 (cond (old | |
| 2163 (if (memq 'redefine byte-compile-warnings) | |
| 2164 (byte-compile-warn "multiple autoloads for %s" name)) | |
| 2165 (setcdr old form)) | |
| 2166 (t | |
| 2167 ;; We only use the names in the autoload environment, but | |
| 2168 ;; it might be useful to have the bodies some day. | |
| 2169 (setq byte-compile-autoload-environment | |
| 2170 (cons (cons name form) | |
| 2171 byte-compile-autoload-environment))))))) | |
| 2172 ;; | |
| 2173 ;; Now output the form. | |
| 2174 (if (stringp (nth 3 form)) | |
| 2175 form | |
| 2176 ;; No doc string, so we can compile this as a normal form. | |
| 2177 (byte-compile-keep-pending form 'byte-compile-normal-call))) | |
| 2178 | |
| 442 | 2179 (put 'defvar 'byte-hunk-handler 'byte-compile-file-form-defvar-or-defconst) |
| 2180 (put 'defconst 'byte-hunk-handler 'byte-compile-file-form-defvar-or-defconst) | |
| 2181 (defun byte-compile-file-form-defvar-or-defconst (form) | |
| 2182 ;; (defvar|defconst VAR [VALUE [DOCSTRING]]) | |
| 428 | 2183 (if (> (length form) 4) |
| 442 | 2184 (byte-compile-warn |
| 2185 "%s %s called with %d arguments, but accepts only %s" | |
| 2186 (car form) (nth 1 form) (length (cdr form)) 3)) | |
| 428 | 2187 (if (and (> (length form) 3) (not (stringp (nth 3 form)))) |
| 2188 (byte-compile-warn "Third arg to %s %s is not a string: %s" | |
| 2189 (car form) (nth 1 form) (nth 3 form))) | |
| 2190 (if (null (nth 3 form)) | |
| 2191 ;; Since there is no doc string, we can compile this as a normal form, | |
| 2192 ;; and not do a file-boundary. | |
| 2193 (byte-compile-keep-pending form) | |
| 2194 (if (memq 'free-vars byte-compile-warnings) | |
| 2195 (setq byte-compile-bound-variables | |
| 2196 (cons (cons (nth 1 form) byte-compile-global-bit) | |
| 2197 byte-compile-bound-variables))) | |
| 2198 (cond ((consp (nth 2 form)) | |
| 2199 (setq form (copy-sequence form)) | |
| 2200 (setcar (cdr (cdr form)) | |
| 2201 (byte-compile-top-level (nth 2 form) nil 'file)))) | |
| 2202 | |
| 2203 ;; The following turns out not to be necessary, since we emit a call to | |
| 2204 ;; defvar, which can hack Vfile_domain by itself! | |
| 2205 ;; | |
| 2206 ;; If a file domain has been set, emit (put 'VAR 'variable-domain ...) | |
| 2207 ;; after this defvar. | |
| 2208 ; (if byte-compile-file-domain | |
| 2209 ; (progn | |
| 2210 ; ;; Actually, this will emit the (put ...) before the (defvar ...) | |
| 2211 ; ;; but I don't think that can matter in this case. | |
| 2212 ; (byte-compile-keep-pending | |
| 2213 ; (list 'put (list 'quote (nth 1 form)) ''variable-domain | |
| 2214 ; (list 'quote byte-compile-file-domain))))) | |
| 2215 form)) | |
| 2216 | |
| 2217 (put 'require 'byte-hunk-handler 'byte-compile-file-form-eval-boundary) | |
| 2218 (defun byte-compile-file-form-eval-boundary (form) | |
| 2219 (eval form) | |
| 2220 (byte-compile-keep-pending form 'byte-compile-normal-call)) | |
| 2221 | |
|
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2222 ;; XEmacs change: be careful about multiple values with these three forms. |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2223 (put 'progn 'byte-hunk-handler |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2224 #'(lambda (form) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2225 (mapc 'byte-compile-file-form (cdr form)) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2226 ;; Return nil so the forms are not output twice. |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2227 nil)) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2228 |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2229 (put 'prog1 'byte-hunk-handler |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2230 #'(lambda (form) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2231 (when (first form) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2232 (byte-compile-file-form `(or ,(first form) nil)) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2233 (mapc 'byte-compile-file-form (cdr form)) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2234 nil))) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2235 |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2236 (put 'prog2 'byte-hunk-handler |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2237 #'(lambda (form) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2238 (when (first form) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2239 (byte-compile-file-form (first form)) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2240 (when (second form) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2241 (setq form (cdr form)) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2242 (byte-compile-file-form `(or ,(first form) nil)) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2243 (mapc 'byte-compile-file-form (cdr form)) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2244 nil)))) |
| 428 | 2245 |
| 2246 ;; This handler is not necessary, but it makes the output from dont-compile | |
| 2247 ;; and similar macros cleaner. | |
| 2248 (put 'eval 'byte-hunk-handler 'byte-compile-file-form-eval) | |
| 2249 (defun byte-compile-file-form-eval (form) | |
| 2250 (if (eq (car-safe (nth 1 form)) 'quote) | |
| 2251 (nth 1 (nth 1 form)) | |
| 2252 (byte-compile-keep-pending form))) | |
| 2253 | |
| 2254 (put 'defun 'byte-hunk-handler 'byte-compile-file-form-defun) | |
| 2255 (defun byte-compile-file-form-defun (form) | |
| 2256 (byte-compile-file-form-defmumble form nil)) | |
| 2257 | |
| 2258 (put 'defmacro 'byte-hunk-handler 'byte-compile-file-form-defmacro) | |
| 2259 (defun byte-compile-file-form-defmacro (form) | |
| 2260 (byte-compile-file-form-defmumble form t)) | |
| 2261 | |
| 2262 (defun byte-compile-file-form-defmumble (form macrop) | |
| 2263 (let* ((name (car (cdr form))) | |
| 2264 (this-kind (if macrop 'byte-compile-macro-environment | |
| 2265 'byte-compile-function-environment)) | |
| 2266 (that-kind (if macrop 'byte-compile-function-environment | |
| 2267 'byte-compile-macro-environment)) | |
| 2268 (this-one (assq name (symbol-value this-kind))) | |
| 2269 (that-one (assq name (symbol-value that-kind))) | |
| 2270 (byte-compile-free-references nil) | |
| 2271 (byte-compile-free-assignments nil)) | |
| 2272 | |
| 2273 ;; When a function or macro is defined, add it to the call tree so that | |
| 2274 ;; we can tell when functions are not used. | |
| 2275 (if byte-compile-generate-call-tree | |
| 2276 (or (assq name byte-compile-call-tree) | |
| 2277 (setq byte-compile-call-tree | |
| 2278 (cons (list name nil nil) byte-compile-call-tree)))) | |
| 2279 | |
| 2280 (setq byte-compile-current-form name) ; for warnings | |
| 2281 (when (memq 'redefine byte-compile-warnings) | |
| 2282 (byte-compile-arglist-warn form macrop)) | |
| 2283 (defvar filename) ; #### filename used free | |
| 2284 (when byte-compile-verbose | |
| 2285 (message "Compiling %s... (%s)" | |
| 2286 (if filename (file-name-nondirectory filename) "") | |
| 2287 (nth 1 form))) | |
| 2288 (cond (that-one | |
| 2289 (when (and (memq 'redefine byte-compile-warnings) | |
| 2290 ;; hack hack: don't warn when compiling the stubs in | |
| 2291 ;; bytecomp-runtime... | |
| 2292 (not (assq (nth 1 form) | |
| 2293 byte-compile-initial-macro-environment))) | |
| 2294 (byte-compile-warn | |
| 2295 "%s defined multiple times, as both function and macro" | |
| 2296 (nth 1 form))) | |
| 2297 (setcdr that-one nil)) | |
| 2298 (this-one | |
| 2299 (when (and (memq 'redefine byte-compile-warnings) | |
| 2300 ;; hack: don't warn when compiling the magic internal | |
| 2301 ;; byte-compiler macros in bytecomp-runtime.el... | |
| 2302 (not (assq (nth 1 form) | |
| 2303 byte-compile-initial-macro-environment))) | |
| 2304 (byte-compile-warn "%s %s defined multiple times in this file" | |
| 2305 (if macrop "macro" "function") | |
| 2306 (nth 1 form)))) | |
| 2307 ((and (fboundp name) | |
| 2308 (or (subrp (symbol-function name)) | |
| 2309 (eq (car-safe (symbol-function name)) | |
| 2310 (if macrop 'lambda 'macro)))) | |
| 2311 (if (memq 'redefine byte-compile-warnings) | |
| 2312 (byte-compile-warn "%s %s being redefined as a %s" | |
| 2313 (if (subrp (symbol-function name)) | |
| 2314 "subr" | |
| 2315 (if macrop "function" "macro")) | |
| 2316 (nth 1 form) | |
| 2317 (if macrop "macro" "function"))) | |
| 2318 ;; shadow existing definition | |
| 2319 (set this-kind | |
| 2320 (cons (cons name nil) (symbol-value this-kind))))) | |
| 2321 (let ((body (nthcdr 3 form))) | |
| 2322 (if (and (stringp (car body)) | |
| 2323 (symbolp (car-safe (cdr-safe body))) | |
| 2324 (car-safe (cdr-safe body)) | |
| 2325 (stringp (car-safe (cdr-safe (cdr-safe body))))) | |
| 2326 (byte-compile-warn "Probable `\"' without `\\' in doc string of %s" | |
| 2327 (nth 1 form)))) | |
| 2328 (let* ((new-one (byte-compile-lambda (cons 'lambda (nthcdr 2 form)))) | |
|
5106
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2329 (code (byte-compile-byte-code-maker new-one)) |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2330 (docform-info |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2331 (cond ((atom code) ; compiled-function-p |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2332 (if macrop '(" '(macro . #[" 4 "])") '(" #[" 4 "]"))) |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2333 ((eq (car code) 'quote) |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2334 (setq code new-one) |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2335 (if macrop '(" '(macro " 2 ")") '(" '(" 2 ")"))) |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2336 ((if macrop '(" (cons 'macro (" 5 "))") '(" (" 5 ")")))))) |
| 428 | 2337 (if this-one |
| 2338 (setcdr this-one new-one) | |
| 2339 (set this-kind | |
| 2340 (cons (cons name new-one) (symbol-value this-kind)))) | |
| 2341 (if (and (stringp (nth 3 form)) | |
| 2342 (eq 'quote (car-safe code)) | |
| 2343 (eq 'lambda (car-safe (nth 1 code)))) | |
| 2344 (cons (car form) | |
|
5106
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2345 (cons name (cdr (nth 1 code)))) |
| 428 | 2346 (byte-compile-flush-pending) |
| 2347 (if (not (stringp (nth 3 form))) | |
|
5106
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2348 ;; No doc string. Provide -1 as the "doc string index" so that |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2349 ;; no element will be treated as a doc string by |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2350 ;; byte-compile-output-doc-form. |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2351 (setq docform-info (list (first docform-info) -1 |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2352 (third docform-info)))) |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2353 (byte-compile-output-docform |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2354 "\n(defalias '" |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2355 name |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2356 docform-info |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2357 ;; The result of byte-compile-byte-code-maker is either a |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2358 ;; compiled-function object, or a list of some kind. If it's not a |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2359 ;; cons, we must coerce it into a list of the elements to be |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2360 ;; printed to the file. |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2361 (if (consp code) |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2362 code |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2363 (nconc (list |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2364 (compiled-function-arglist code) |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2365 (compiled-function-instructions code) |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2366 (compiled-function-constants code) |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2367 (compiled-function-stack-depth code) |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2368 (compiled-function-doc-string code)) |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2369 (if (commandp code) |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2370 (list (nth 1 (compiled-function-interactive code)))))) |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2371 (and (atom code) byte-compile-dynamic |
|
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2372 1) |
| 428 | 2373 nil)) |
| 2374 (princ ")" byte-compile-outbuffer) | |
|
5106
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2375 nil))) |
| 428 | 2376 |
| 2377 ;; Print Lisp object EXP in the output file, inside a comment, | |
| 2378 ;; and return the file position it will have. | |
| 2379 ;; If QUOTED is non-nil, print with quoting; otherwise, print without quoting. | |
| 2380 (defun byte-compile-output-as-comment (exp quoted) | |
| 2381 (let ((position (point))) | |
| 2382 (set-buffer | |
| 2383 (prog1 (current-buffer) | |
| 2384 (set-buffer byte-compile-outbuffer) | |
| 2385 | |
| 2386 ;; Insert EXP, and make it a comment with #@LENGTH. | |
| 2387 (insert " ") | |
| 2388 (if quoted | |
| 2389 (prin1 exp byte-compile-outbuffer) | |
| 2390 (princ exp byte-compile-outbuffer)) | |
| 2391 (goto-char position) | |
| 2392 ;; Quote certain special characters as needed. | |
| 2393 ;; get_doc_string in doc.c does the unquoting. | |
| 2394 (while (search-forward "\^A" nil t) | |
| 2395 (replace-match "\^A\^A" t t)) | |
| 2396 (goto-char position) | |
| 2397 (while (search-forward "\000" nil t) | |
| 2398 (replace-match "\^A0" t t)) | |
| 2399 (goto-char position) | |
| 2400 (while (search-forward "\037" nil t) | |
| 2401 (replace-match "\^A_" t t)) | |
| 2402 (goto-char (point-max)) | |
| 2403 (insert "\037") | |
| 2404 (goto-char position) | |
| 2405 (insert "#@" (format "%d" (- (point-max) position))) | |
| 2406 | |
| 2407 ;; Save the file position of the object. | |
| 2408 ;; Note we should add 1 to skip the space | |
| 2409 ;; that we inserted before the actual doc string, | |
| 2410 ;; and subtract 1 to convert from an 1-origin Emacs position | |
| 2411 ;; to a file position; they cancel. | |
| 2412 (setq position (point)) | |
| 2413 (goto-char (point-max)))) | |
| 2414 position)) | |
| 2415 | |
| 2416 | |
| 2417 | |
| 2418 ;; The `domain' declaration. This is legal only at top-level in a file, and | |
| 2419 ;; should generally be the first form in the file. It is not legal inside | |
| 2420 ;; function bodies. | |
| 2421 | |
| 2422 (put 'domain 'byte-hunk-handler 'byte-compile-file-form-domain) | |
| 2423 (defun byte-compile-file-form-domain (form) | |
| 2424 (if (not (null (cdr (cdr form)))) | |
| 2425 (byte-compile-warn "domain used with too many arguments: %s" form)) | |
| 2426 (let ((domain (nth 1 form))) | |
| 2427 (or (null domain) | |
| 2428 (stringp domain) | |
| 2429 (progn | |
| 2430 (byte-compile-warn | |
| 2431 "argument to `domain' declaration must be a literal string: %s" | |
| 2432 form) | |
| 2433 (setq domain nil))) | |
| 2434 (setq byte-compile-file-domain domain)) | |
| 2435 (byte-compile-keep-pending form 'byte-compile-normal-call)) | |
| 2436 | |
| 2437 (defun byte-compile-domain (form) | |
| 2438 (byte-compile-warn "The `domain' declaration is legal only at top-level: %s" | |
| 2439 (let ((print-escape-newlines t) | |
| 2440 (print-level 4) | |
| 2441 (print-length 4)) | |
| 2442 (prin1-to-string form))) | |
| 2443 (byte-compile-normal-call | |
| 2444 (list 'signal ''error | |
| 2445 (list 'quote (list "`domain' used inside a function" form))))) | |
| 2446 | |
| 2447 ;; This is part of bytecomp.el in 19.35: | |
| 2448 (put 'custom-declare-variable 'byte-hunk-handler | |
| 2449 'byte-compile-file-form-custom-declare-variable) | |
| 2450 (defun byte-compile-file-form-custom-declare-variable (form) | |
| 4289 | 2451 ;; XEmacs change; our implementation byte compiles and gives warnings |
| 2452 ;; about the default value code, which GNU's doesn't. | |
| 2453 (let* ((quoted-default (car-safe (cdr-safe (cdr-safe form)))) | |
| 2454 (to-examine (car-safe (cdr-safe quoted-default)))) | |
| 2455 (if (memq 'free-vars byte-compile-warnings) | |
| 2456 (setq byte-compile-bound-variables | |
| 2457 (cons (cons (nth 1 (nth 1 form)) | |
| 2458 byte-compile-global-bit) | |
| 2459 byte-compile-bound-variables))) | |
| 2460 ;; Byte compile anything that smells like a lambda. I initially | |
| 2461 ;; considered limiting it to the :initialize, :set and :get args, but | |
| 2462 ;; that's not amazingly forward-compatible, and anyone expecting other | |
| 2463 ;; things to be stored as data, not code, is unrealistic. | |
| 2464 (loop | |
| 2465 for entry in-ref (nthcdr 4 form) | |
| 2466 do (cond ((and (eq 'function (car-safe entry)) | |
| 2467 (consp (car-safe (cdr-safe entry)))) | |
| 2468 (setf entry (copy-sequence entry)) | |
| 2469 (setcar (cdr entry) (byte-compile-lambda (car (cdr entry))))) | |
| 2470 ((and (eq 'lambda (car-safe entry))) | |
| 2471 (setf entry (byte-compile-lambda entry))))) | |
| 2472 ;; Byte compile the default value, as we do for defvar. | |
| 2473 (when (consp (cdr-safe to-examine)) | |
| 2474 (setq form (copy-sequence form)) | |
| 2475 (setcdr (third form) | |
| 2476 (list (byte-compile-top-level to-examine nil 'file))) | |
| 2477 ;; And save a value to be examined in the custom UI, if that differs | |
| 2478 ;; from the init value. | |
| 2479 (unless (equal to-examine (car-safe (cdr (third form)))) | |
| 4304 | 2480 (setcdr (third form) |
| 2481 (list (byte-compile-top-level | |
| 2482 ;; This is ugly. custom-declare-variable errors if | |
| 2483 ;; it's passed a keyword it doesn't know about, and | |
| 2484 ;; so to make this code run on 21.4, we add code to | |
| 2485 ;; modify the standard-value property to the | |
| 2486 ;; byte-compiled value for DEFAULT. | |
| 2487 `(prog2 (put ,(second form) 'standard-value | |
| 2488 '(,to-examine)) | |
| 2489 ,to-examine) | |
| 2490 nil 'file))))) | |
| 4289 | 2491 form)) |
| 428 | 2492 |
| 2493 ;;;###autoload | |
| 2494 (defun byte-compile (form) | |
| 2495 "If FORM is a symbol, byte-compile its function definition. | |
| 2496 If FORM is a lambda or a macro, byte-compile it as a function." | |
| 2497 (displaying-byte-compile-warnings | |
| 2498 (byte-compile-close-variables | |
| 2499 (let* ((fun (if (symbolp form) | |
| 2500 (and (fboundp form) (symbol-function form)) | |
| 2501 form)) | |
| 2502 (macro (eq (car-safe fun) 'macro))) | |
| 2503 (if macro | |
| 2504 (setq fun (cdr fun))) | |
| 2505 (cond ((eq (car-safe fun) 'lambda) | |
| 2506 (setq fun (if macro | |
| 2507 (cons 'macro (byte-compile-lambda fun)) | |
| 2508 (byte-compile-lambda fun))) | |
| 2509 (if (symbolp form) | |
| 2510 (defalias form fun) | |
| 2511 fun))))))) | |
| 2512 | |
| 2513 ;;;###autoload | |
| 2514 (defun byte-compile-sexp (sexp &optional msg) | |
| 2515 "Compile and return SEXP." | |
| 2516 (displaying-byte-compile-warnings | |
| 2517 (byte-compile-close-variables | |
| 2518 (prog1 | |
| 2519 (byte-compile-top-level sexp) | |
| 2520 (byte-compile-warn-about-unresolved-functions msg))))) | |
| 2521 | |
| 2522 ;; Given a function made by byte-compile-lambda, make a form which produces it. | |
| 2523 (defun byte-compile-byte-code-maker (fun) | |
| 2524 (cond | |
| 2525 ;; ## atom is faster than compiled-func-p. | |
| 2526 ((atom fun) ; compiled-function-p | |
| 2527 fun) | |
| 2528 ;; b-c-lambda didn't produce a compiled-function, so it must be a trivial | |
| 2529 ;; function. | |
| 2530 ((let (tmp) | |
| 2531 (if (and (setq tmp (assq 'byte-code (cdr-safe (cdr fun)))) | |
| 2532 (null (cdr (memq tmp fun)))) | |
| 2533 ;; Generate a make-byte-code call. | |
| 2534 (let* ((interactive (assq 'interactive (cdr (cdr fun))))) | |
| 2535 (nconc (list 'make-byte-code | |
| 2536 (list 'quote (nth 1 fun)) ;arglist | |
| 2537 (nth 1 tmp) ;instructions | |
| 2538 (nth 2 tmp) ;constants | |
| 2539 (nth 3 tmp)) ;stack-depth | |
| 2540 (cond ((stringp (nth 2 fun)) | |
| 2541 (list (nth 2 fun))) ;docstring | |
| 2542 (interactive | |
| 2543 (list nil))) | |
| 2544 (cond (interactive | |
| 2545 (list (if (or (null (nth 1 interactive)) | |
| 2546 (stringp (nth 1 interactive))) | |
| 2547 (nth 1 interactive) | |
| 2548 ;; Interactive spec is a list or a variable | |
| 2549 ;; (if it is correct). | |
| 2550 (list 'quote (nth 1 interactive)))))))) | |
| 2551 ;; a non-compiled function (probably trivial) | |
| 2552 (list 'quote fun)))))) | |
| 2553 | |
| 2554 ;; Byte-compile a lambda-expression and return a valid function. | |
| 2555 ;; The value is usually a compiled function but may be the original | |
| 2556 ;; lambda-expression. | |
| 2557 (defun byte-compile-lambda (fun) | |
| 2558 (or (eq 'lambda (car-safe fun)) | |
| 2559 (error "not a lambda -- %s" (prin1-to-string fun))) | |
| 2560 (let* ((arglist (nth 1 fun)) | |
| 2561 (byte-compile-bound-variables | |
| 2562 (let ((new-bindings | |
| 2563 (mapcar #'(lambda (x) (cons x byte-compile-arglist-bit)) | |
| 2564 (and (memq 'free-vars byte-compile-warnings) | |
| 2565 (delq '&rest (delq '&optional | |
| 2566 (copy-sequence arglist))))))) | |
| 2567 (nconc new-bindings | |
| 2568 (cons 'new-scope byte-compile-bound-variables)))) | |
| 2569 (body (cdr (cdr fun))) | |
| 2570 (doc (if (stringp (car body)) | |
| 2571 (prog1 (car body) | |
| 1548 | 2572 ;; Discard the doc string |
| 2573 ;; only if it is not the only element of the body. | |
| 2574 (if (cdr body) | |
| 2575 (setq body (cdr body)))))) | |
|
4639
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2576 (int (assq 'interactive body)) compiled-int) |
| 428 | 2577 (dolist (arg arglist) |
| 2578 (cond ((not (symbolp arg)) | |
| 2579 (byte-compile-warn "non-symbol in arglist: %S" arg)) | |
| 2580 ((byte-compile-constant-symbol-p arg) | |
| 2581 (byte-compile-warn "constant symbol in arglist: %s" arg)) | |
| 2582 ((and (char= ?\& (aref (symbol-name arg) 0)) | |
| 2583 (not (eq arg '&optional)) | |
| 2584 (not (eq arg '&rest))) | |
| 2585 (byte-compile-warn "unrecognized `&' keyword in arglist: %s" | |
| 2586 arg)))) | |
| 2587 (cond (int | |
| 2588 ;; Skip (interactive) if it is in front (the most usual location). | |
| 2589 (if (eq int (car body)) | |
| 2590 (setq body (cdr body))) | |
| 2591 (cond ((consp (cdr int)) | |
| 2592 (if (cdr (cdr int)) | |
| 2593 (byte-compile-warn "malformed interactive spec: %s" | |
| 2594 (prin1-to-string int))) | |
|
4639
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2595 ;; If the interactive spec is a call to `list', don't |
|
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2596 ;; store the compiled form, because `call-interactively' |
|
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2597 ;; looks at the args of `list' and treats certain |
|
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2598 ;; functions specially. Compiling it is nonetheless |
|
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2599 ;; useful for warnings. |
| 428 | 2600 (let ((form (nth 1 int))) |
| 2601 (while (or (eq (car-safe form) 'let) | |
| 2602 (eq (car-safe form) 'let*) | |
| 2603 (eq (car-safe form) 'save-excursion)) | |
| 2604 (while (consp (cdr form)) | |
| 2605 (setq form (cdr form))) | |
| 2606 (setq form (car form))) | |
|
4639
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2607 (setq compiled-int |
|
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2608 (byte-compile-top-level (nth 1 int))) |
| 428 | 2609 (or (eq (car-safe form) 'list) |
|
4639
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2610 (setq int (list 'interactive compiled-int))))) |
| 428 | 2611 ((cdr int) |
| 2612 (byte-compile-warn "malformed interactive spec: %s" | |
| 2613 (prin1-to-string int)))))) | |
| 2614 (let ((compiled (byte-compile-top-level (cons 'progn body) nil 'lambda))) | |
| 2615 (if (memq 'unused-vars byte-compile-warnings) | |
| 2616 ;; done compiling in this scope, warn now. | |
| 2617 (byte-compile-warn-about-unused-variables)) | |
| 2618 (if (eq 'byte-code (car-safe compiled)) | |
| 2619 (apply 'make-byte-code | |
| 2620 (append (list arglist) | |
| 2621 ;; byte-string, constants-vector, stack depth | |
| 2622 (cdr compiled) | |
| 2623 ;; optionally, the doc string. | |
| 2624 (if (or doc int) | |
| 2625 (list doc)) | |
| 2626 ;; optionally, the interactive spec. | |
| 2627 (if int | |
| 2628 (list (nth 1 int))))) | |
| 2629 (setq compiled | |
| 2630 (nconc (if int (list int)) | |
| 2631 (cond ((eq (car-safe compiled) 'progn) (cdr compiled)) | |
| 2632 (compiled (list compiled))))) | |
| 2633 (nconc (list 'lambda arglist) | |
| 2634 (if (or doc (stringp (car compiled))) | |
| 2635 (cons doc (cond (compiled) | |
| 2636 (body (list nil)))) | |
| 2637 compiled)))))) | |
| 2638 | |
| 2639 (defun byte-compile-constants-vector () | |
| 2640 ;; Builds the constants-vector from the current variables and constants. | |
| 2641 ;; This modifies the constants from (const . nil) to (const . offset). | |
| 2642 ;; To keep the byte-codes to look up the vector as short as possible: | |
| 2643 ;; First 6 elements are vars, as there are one-byte varref codes for those. | |
| 2644 ;; Next up to byte-constant-limit are constants, still with one-byte codes. | |
| 2645 ;; Next variables again, to get 2-byte codes for variable lookup. | |
| 2646 ;; The rest of the constants and variables need 3-byte byte-codes. | |
| 2647 (let* ((i -1) | |
| 2648 (rest (nreverse byte-compile-variables)) ; nreverse because the first | |
| 2649 (other (nreverse byte-compile-constants)) ; vars often are used most. | |
| 2650 ret tmp | |
| 2651 (limits '(5 ; Use the 1-byte varref codes, | |
| 2652 63 ; 1-constlim ; 1-byte byte-constant codes, | |
| 2653 255 ; 2-byte varref codes, | |
| 2654 65535)) ; 3-byte codes for the rest. | |
| 2655 limit) | |
| 2656 (while (or rest other) | |
| 2657 (setq limit (car limits)) | |
| 2658 (while (and rest (not (eq i limit))) | |
| 2659 (if (setq tmp (assq (car (car rest)) ret)) | |
| 2660 (setcdr (car rest) (cdr tmp)) | |
| 2661 (setcdr (car rest) (setq i (1+ i))) | |
| 2662 (setq ret (cons (car rest) ret))) | |
| 2663 (setq rest (cdr rest))) | |
| 2664 (setq limits (cdr limits) | |
| 2665 rest (prog1 other | |
| 2666 (setq other rest)))) | |
| 2667 (apply 'vector (nreverse (mapcar 'car ret))))) | |
| 2668 | |
| 2669 ;; Given an expression FORM, compile it and return an equivalent byte-code | |
| 2670 ;; expression (a call to the function byte-code). | |
| 2671 (defun byte-compile-top-level (form &optional for-effect output-type) | |
| 2672 ;; OUTPUT-TYPE advises about how form is expected to be used: | |
| 2673 ;; 'eval or nil -> a single form, | |
| 2674 ;; 'progn or t -> a list of forms, | |
| 2675 ;; 'lambda -> body of a lambda, | |
| 2676 ;; 'file -> used at file-level. | |
| 2677 (let ((byte-compile-constants nil) | |
| 2678 (byte-compile-variables nil) | |
| 2679 (byte-compile-tag-number 0) | |
| 2680 (byte-compile-depth 0) | |
| 2681 (byte-compile-maxdepth 0) | |
| 2682 (byte-compile-output nil)) | |
| 2683 (if (memq byte-optimize '(t source)) | |
| 2684 (setq form (byte-optimize-form form for-effect))) | |
| 2685 (while (and (eq (car-safe form) 'progn) (null (cdr (cdr form)))) | |
| 2686 (setq form (nth 1 form))) | |
| 2687 (if (and (eq 'byte-code (car-safe form)) | |
| 2688 (not (memq byte-optimize '(t byte))) | |
| 2689 (stringp (nth 1 form)) | |
| 2690 (vectorp (nth 2 form)) | |
| 2691 (natnump (nth 3 form))) | |
| 2692 form | |
| 2693 (byte-compile-form form for-effect) | |
| 2694 (byte-compile-out-toplevel for-effect output-type)))) | |
| 2695 | |
| 2696 (defun byte-compile-out-toplevel (&optional for-effect output-type) | |
| 2697 (if for-effect | |
| 2698 ;; The stack is empty. Push a value to be returned from (byte-code ..). | |
| 2699 (if (eq (car (car byte-compile-output)) 'byte-discard) | |
| 2700 (setq byte-compile-output (cdr byte-compile-output)) | |
| 2701 (byte-compile-push-constant | |
| 2702 ;; Push any constant - preferably one which already is used, and | |
| 2703 ;; a number or symbol - ie not some big sequence. The return value | |
| 2704 ;; isn't returned, but it would be a shame if some textually large | |
| 2705 ;; constant was not optimized away because we chose to return it. | |
| 2706 (and (not (assq nil byte-compile-constants)) ; Nil is often there. | |
| 2707 (let ((tmp (reverse byte-compile-constants))) | |
| 2708 (while (and tmp (not (or (symbolp (car (car tmp))) | |
| 2709 (numberp (car (car tmp)))))) | |
| 2710 (setq tmp (cdr tmp))) | |
| 2711 (car (car tmp))))))) | |
| 2712 (byte-compile-out 'byte-return 0) | |
| 2713 (setq byte-compile-output (nreverse byte-compile-output)) | |
| 2714 (if (memq byte-optimize '(t byte)) | |
| 2715 (setq byte-compile-output | |
| 2716 (byte-optimize-lapcode byte-compile-output for-effect))) | |
| 2717 | |
| 2718 ;; Decompile trivial functions: | |
| 2719 ;; only constants and variables, or a single funcall except in lambdas. | |
| 2720 ;; Except for Lisp_Compiled objects, forms like (foo "hi") | |
| 2721 ;; are still quicker than (byte-code "..." [foo "hi"] 2). | |
| 2722 ;; Note that even (quote foo) must be parsed just as any subr by the | |
| 2723 ;; interpreter, so quote should be compiled into byte-code in some contexts. | |
| 2724 ;; What to leave uncompiled: | |
| 2725 ;; lambda -> never. we used to leave it uncompiled if the body was | |
| 2726 ;; a single atom, but that causes confusion if the docstring | |
| 2727 ;; uses the (file . pos) syntax. Besides, now that we have | |
| 2728 ;; the Lisp_Compiled type, the compiled form is faster. | |
| 2729 ;; eval -> atom, quote or (function atom atom atom) | |
| 2730 ;; progn -> as <<same-as-eval>> or (progn <<same-as-eval>> atom) | |
| 2731 ;; file -> as progn, but takes both quotes and atoms, and longer forms. | |
| 2732 (let (rest | |
| 2733 (maycall (not (eq output-type 'lambda))) ; t if we may make a funcall. | |
| 2734 tmp body) | |
| 2735 (cond | |
| 2736 ;; #### This should be split out into byte-compile-nontrivial-function-p. | |
| 2737 ((or (eq output-type 'lambda) | |
| 2738 (nthcdr (if (eq output-type 'file) 50 8) byte-compile-output) | |
| 2739 (assq 'TAG byte-compile-output) ; Not necessary, but speeds up a bit. | |
| 2740 (not (setq tmp (assq 'byte-return byte-compile-output))) | |
| 2741 (progn | |
| 2742 (setq rest (nreverse | |
| 2743 (cdr (memq tmp (reverse byte-compile-output))))) | |
| 2744 (while (cond | |
| 2745 ((memq (car (car rest)) '(byte-varref byte-constant)) | |
| 2746 (setq tmp (car (cdr (car rest)))) | |
| 2747 (if (if (eq (car (car rest)) 'byte-constant) | |
| 2748 (or (consp tmp) | |
| 2749 (and (symbolp tmp) | |
| 2750 (not (byte-compile-constant-symbol-p tmp))))) | |
| 2751 (if maycall | |
| 2752 (setq body (cons (list 'quote tmp) body))) | |
| 2753 (setq body (cons tmp body)))) | |
| 2754 ((and maycall | |
| 2755 ;; Allow a funcall if at most one atom follows it. | |
| 2756 (null (nthcdr 3 rest)) | |
| 2757 (setq tmp | |
| 2758 ;; XEmacs change for rms funs | |
| 2759 (or (and | |
| 2760 (byte-compile-version-cond | |
| 2761 byte-compile-emacs19-compatibility) | |
| 2762 (get (car (car rest)) | |
| 2763 'byte-opcode19-invert)) | |
| 2764 (get (car (car rest)) | |
| 2765 'byte-opcode-invert))) | |
| 2766 (or (null (cdr rest)) | |
| 2767 (and (memq output-type '(file progn t)) | |
| 2768 (cdr (cdr rest)) | |
| 2769 (eq (car (nth 1 rest)) 'byte-discard) | |
| 2770 (progn (setq rest (cdr rest)) t)))) | |
| 2771 (setq maycall nil) ; Only allow one real function call. | |
| 2772 (setq body (nreverse body)) | |
| 2773 (setq body (list | |
| 2774 (if (and (eq tmp 'funcall) | |
| 2775 (eq (car-safe (car body)) 'quote)) | |
| 2776 (cons (nth 1 (car body)) (cdr body)) | |
| 2777 (cons tmp body)))) | |
| 2778 (or (eq output-type 'file) | |
| 2779 (not (delq nil (mapcar 'consp (cdr (car body)))))))) | |
| 2780 (setq rest (cdr rest))) | |
| 2781 rest)) | |
| 2782 (let ((byte-compile-vector (byte-compile-constants-vector))) | |
| 2783 (list 'byte-code (byte-compile-lapcode byte-compile-output) | |
| 2784 byte-compile-vector byte-compile-maxdepth))) | |
| 2785 ;; it's a trivial function | |
| 2786 ((cdr body) (cons 'progn (nreverse body))) | |
| 2787 ((car body))))) | |
| 2788 | |
| 2789 ;; Given BODY, compile it and return a new body. | |
| 2790 (defun byte-compile-top-level-body (body &optional for-effect) | |
| 2791 (setq body (byte-compile-top-level (cons 'progn body) for-effect t)) | |
| 2792 (cond ((eq (car-safe body) 'progn) | |
| 2793 (cdr body)) | |
| 2794 (body | |
| 2795 (list body)))) | |
| 2796 | |
| 2797 ;; This is the recursive entry point for compiling each subform of an | |
| 2798 ;; expression. | |
| 2799 ;; If for-effect is non-nil, byte-compile-form will output a byte-discard | |
| 2800 ;; before terminating (ie. no value will be left on the stack). | |
| 2801 ;; A byte-compile handler may, when for-effect is non-nil, choose output code | |
| 2802 ;; which does not leave a value on the stack, and then set for-effect to nil | |
| 2803 ;; (to prevent byte-compile-form from outputting the byte-discard). | |
| 2804 ;; If a handler wants to call another handler, it should do so via | |
| 2805 ;; byte-compile-form, or take extreme care to handle for-effect correctly. | |
| 2806 ;; (Use byte-compile-form-do-effect to reset the for-effect flag too.) | |
| 2807 ;; | |
| 2808 (defun byte-compile-form (form &optional for-effect) | |
| 2809 (setq form (macroexpand form byte-compile-macro-environment)) | |
| 2810 (cond ((not (consp form)) | |
| 2811 (cond ((or (not (symbolp form)) | |
| 2812 (byte-compile-constant-symbol-p form)) | |
| 2813 (byte-compile-constant form)) | |
| 2814 ((and for-effect byte-compile-delete-errors) | |
| 2815 (setq for-effect nil)) | |
| 2816 (t (byte-compile-variable-ref 'byte-varref form)))) | |
| 2817 ((symbolp (car form)) | |
| 2818 (let* ((fn (car form)) | |
| 2819 (handler (get fn 'byte-compile))) | |
| 2820 (if (memq fn '(t nil)) | |
| 2821 (byte-compile-warn "%s called as a function" fn)) | |
| 2822 (if (and handler | |
| 2823 (or (not (byte-compile-version-cond | |
| 2824 byte-compile-emacs19-compatibility)) | |
| 2825 (not (get (get fn 'byte-opcode) 'emacs20-opcode)))) | |
| 2826 (funcall handler form) | |
| 2827 (if (memq 'callargs byte-compile-warnings) | |
| 2828 (byte-compile-callargs-warn form)) | |
| 2829 (byte-compile-normal-call form)))) | |
| 2830 ((and (or (compiled-function-p (car form)) | |
| 2831 (eq (car-safe (car form)) 'lambda)) | |
| 2832 ;; if the form comes out the same way it went in, that's | |
| 2833 ;; because it was malformed, and we couldn't unfold it. | |
| 2834 (not (eq form (setq form (byte-compile-unfold-lambda form))))) | |
| 2835 (byte-compile-form form for-effect) | |
| 2836 (setq for-effect nil)) | |
| 2837 ((byte-compile-normal-call form))) | |
| 2838 (when for-effect | |
| 2839 (byte-compile-discard))) | |
| 2840 | |
| 2841 (defun byte-compile-normal-call (form) | |
| 2842 (if byte-compile-generate-call-tree | |
| 2843 (byte-compile-annotate-call-tree form)) | |
| 2844 (byte-compile-push-constant (car form)) | |
|
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
2845 (mapc 'byte-compile-form (cdr form)) ; wasteful, but faster. |
| 428 | 2846 (byte-compile-out 'byte-call (length (cdr form)))) |
| 2847 | |
| 2848 ;; kludge added to XEmacs to work around the bogosities of a nonlexical lisp. | |
| 2849 (or (fboundp 'globally-boundp) (fset 'globally-boundp 'boundp)) | |
| 2850 | |
| 2851 (defun byte-compile-variable-ref (base-op var &optional varbind-flags) | |
| 2852 (if (or (not (symbolp var)) (byte-compile-constant-symbol-p var)) | |
| 2853 (byte-compile-warn | |
| 2854 (case base-op | |
| 2855 (byte-varref "Variable reference to %s %s") | |
| 2856 (byte-varset "Attempt to set %s %s") | |
| 2857 (byte-varbind "Attempt to let-bind %s %s")) | |
| 2858 (if (symbolp var) "constant symbol" "non-symbol") | |
| 2859 var) | |
| 2860 (if (and (get var 'byte-obsolete-variable) | |
| 2861 (memq 'obsolete byte-compile-warnings)) | |
| 2862 (let ((ob (get var 'byte-obsolete-variable))) | |
| 2863 (byte-compile-warn "%s is an obsolete variable; %s" var | |
| 2864 (if (stringp ob) | |
| 2865 ob | |
| 2866 (format "use %s instead." ob))))) | |
| 2867 (if (and (get var 'byte-compatible-variable) | |
| 2868 (memq 'pedantic byte-compile-warnings)) | |
| 2869 (let ((ob (get var 'byte-compatible-variable))) | |
| 2870 (byte-compile-warn "%s is provided for compatibility; %s" var | |
| 2871 (if (stringp ob) | |
| 2872 ob | |
| 2873 (format "use %s instead." ob))))) | |
| 2874 (if (memq 'free-vars byte-compile-warnings) | |
| 2875 (if (eq base-op 'byte-varbind) | |
| 2876 (setq byte-compile-bound-variables | |
| 2877 (cons (cons var (or varbind-flags 0)) | |
| 2878 byte-compile-bound-variables)) | |
| 2879 (or (globally-boundp var) | |
| 2880 (let ((cell (assq var byte-compile-bound-variables))) | |
| 2881 (if cell (setcdr cell | |
| 2882 (logior (cdr cell) | |
| 2883 (if (eq base-op 'byte-varset) | |
| 2884 byte-compile-assigned-bit | |
| 2885 byte-compile-referenced-bit))))) | |
| 444 | 2886 (and (boundp 'current-load-list) |
| 2887 (memq var current-load-list)) | |
| 428 | 2888 (if (eq base-op 'byte-varset) |
| 2889 (or (memq var byte-compile-free-assignments) | |
| 2890 (progn | |
| 2891 (byte-compile-warn "assignment to free variable %s" | |
| 2892 var) | |
| 2893 (setq byte-compile-free-assignments | |
| 2894 (cons var byte-compile-free-assignments)))) | |
| 2895 (or (memq var byte-compile-free-references) | |
| 2896 (progn | |
| 2897 (byte-compile-warn "reference to free variable %s" var) | |
| 2898 (setq byte-compile-free-references | |
| 2899 (cons var byte-compile-free-references))))))))) | |
| 2900 (let ((tmp (assq var byte-compile-variables))) | |
| 2901 (or tmp | |
| 2902 (setq tmp (list var) | |
| 2903 byte-compile-variables (cons tmp byte-compile-variables))) | |
| 2904 (byte-compile-out base-op tmp))) | |
| 2905 | |
| 2906 (defmacro byte-compile-get-constant (const) | |
| 2907 `(or (if (stringp ,const) | |
| 2908 (assoc ,const byte-compile-constants) | |
| 2909 (assq ,const byte-compile-constants)) | |
| 2910 (car (setq byte-compile-constants | |
| 2911 (cons (list ,const) byte-compile-constants))))) | |
| 2912 | |
| 2913 ;; Use this when the value of a form is a constant. This obeys for-effect. | |
| 2914 (defun byte-compile-constant (const) | |
| 2915 (if for-effect | |
| 2916 (setq for-effect nil) | |
| 2917 (byte-compile-out 'byte-constant (byte-compile-get-constant const)))) | |
| 2918 | |
| 2919 ;; Use this for a constant that is not the value of its containing form. | |
| 2920 ;; This ignores for-effect. | |
| 2921 (defun byte-compile-push-constant (const) | |
| 2922 (let ((for-effect nil)) | |
| 2923 (inline (byte-compile-constant const)))) | |
| 2924 | |
| 2925 | |
| 2926 ;; Compile those primitive ordinary functions | |
| 2927 ;; which have special byte codes just for speed. | |
| 2928 | |
| 2929 (defmacro byte-defop-compiler (function &optional compile-handler) | |
| 2930 ;; add a compiler-form for FUNCTION. | |
| 446 | 2931 ;; If FUNCTION is a symbol, then the variable "byte-SYMBOL" must name |
| 2932 ;; the opcode to be used. If is a list, the first element | |
| 428 | 2933 ;; is the function and the second element is the bytecode-symbol. |
| 2934 ;; COMPILE-HANDLER is the function to use to compile this byte-op, or | |
| 2935 ;; may be the abbreviations 0, 1, 2, 3, 0-1, 1-2, 2-3, 0+1, 1+1, 2+1, | |
| 2936 ;; 0-1+1, 1-2+1, 2-3+1, 0+2, or 1+2. If it is nil, then the handler is | |
| 2937 ;; "byte-compile-SYMBOL." | |
| 2938 (let (opcode) | |
| 2939 (if (symbolp function) | |
| 2940 (setq opcode (intern (concat "byte-" (symbol-name function)))) | |
| 2941 (setq opcode (car (cdr function)) | |
| 2942 function (car function))) | |
| 2943 (let ((fnform | |
| 2944 (list 'put (list 'quote function) ''byte-compile | |
| 2945 (list 'quote | |
| 2946 (or (cdr (assq compile-handler | |
| 2947 '((0 . byte-compile-no-args) | |
| 2948 (1 . byte-compile-one-arg) | |
| 2949 (2 . byte-compile-two-args) | |
| 2950 (3 . byte-compile-three-args) | |
| 2951 (0-1 . byte-compile-zero-or-one-arg) | |
| 2952 (1-2 . byte-compile-one-or-two-args) | |
| 2953 (2-3 . byte-compile-two-or-three-args) | |
| 2954 (0+1 . byte-compile-no-args-with-one-extra) | |
| 2955 (1+1 . byte-compile-one-arg-with-one-extra) | |
| 2956 (2+1 . byte-compile-two-args-with-one-extra) | |
| 2957 (0-1+1 . byte-compile-zero-or-one-arg-with-one-extra) | |
| 2958 (1-2+1 . byte-compile-one-or-two-args-with-one-extra) | |
| 2959 (2-3+1 . byte-compile-two-or-three-args-with-one-extra) | |
| 2960 (0+2 . byte-compile-no-args-with-two-extra) | |
| 2961 (1+2 . byte-compile-one-arg-with-two-extra) | |
| 2962 | |
| 2963 ))) | |
| 2964 compile-handler | |
| 2965 (intern (concat "byte-compile-" | |
| 2966 (symbol-name function)))))))) | |
| 2967 (if opcode | |
| 2968 (list 'progn fnform | |
| 2969 (list 'put (list 'quote function) | |
| 2970 ''byte-opcode (list 'quote opcode)) | |
| 2971 (list 'put (list 'quote opcode) | |
| 2972 ''byte-opcode-invert (list 'quote function))) | |
| 2973 fnform)))) | |
| 2974 | |
| 2975 (defmacro byte-defop-compiler20 (function &optional compile-handler) | |
| 2976 ;; Just like byte-defop-compiler, but defines an opcode that will only | |
| 2977 ;; be used when byte-compile-emacs19-compatibility is false. | |
| 2978 (if (and (byte-compile-single-version) | |
| 2979 byte-compile-emacs19-compatibility) | |
| 2980 ;; #### instead of doing nothing, this should do some remprops, | |
| 2981 ;; #### to protect against the case where a single-version compiler | |
| 2982 ;; #### is loaded into a world that has contained a multi-version one. | |
| 2983 nil | |
| 2984 (list 'progn | |
| 2985 (list 'put | |
| 2986 (list 'quote | |
| 2987 (or (car (cdr-safe function)) | |
| 2988 (intern (concat "byte-" | |
| 2989 (symbol-name (or (car-safe function) function)))))) | |
| 2990 ''emacs20-opcode t) | |
| 2991 (list 'byte-defop-compiler function compile-handler)))) | |
| 2992 | |
| 2993 ;; XEmacs addition: | |
| 2994 (defmacro byte-defop-compiler-rmsfun (function &optional compile-handler) | |
| 2995 ;; for functions like `eq' that compile into different opcodes depending | |
| 2996 ;; on the Emacs version: byte-old-eq for v19, byte-eq for v20. | |
| 2997 (let ((opcode (intern (concat "byte-" (symbol-name function)))) | |
| 2998 (opcode19 (intern (concat "byte-old-" (symbol-name function)))) | |
| 2999 (fnform | |
| 3000 (list 'put (list 'quote function) ''byte-compile | |
| 3001 (list 'quote | |
| 3002 (or (cdr (assq compile-handler | |
| 3003 '((2 . byte-compile-two-args-19->20) | |
| 3004 ))) | |
| 3005 compile-handler | |
| 3006 (intern (concat "byte-compile-" | |
| 3007 (symbol-name function)))))))) | |
| 3008 (list 'progn fnform | |
| 3009 (list 'put (list 'quote function) | |
| 3010 ''byte-opcode (list 'quote opcode)) | |
| 3011 (list 'put (list 'quote function) | |
| 3012 ''byte-opcode19 (list 'quote opcode19)) | |
| 3013 (list 'put (list 'quote opcode) | |
| 3014 ''byte-opcode-invert (list 'quote function)) | |
| 3015 (list 'put (list 'quote opcode19) | |
| 3016 ''byte-opcode19-invert (list 'quote function))))) | |
| 3017 | |
| 3018 (defmacro byte-defop-compiler-1 (function &optional compile-handler) | |
| 3019 (list 'byte-defop-compiler (list function nil) compile-handler)) | |
| 3020 | |
| 3021 | |
| 3022 (put 'byte-call 'byte-opcode-invert 'funcall) | |
| 3023 (put 'byte-list1 'byte-opcode-invert 'list) | |
| 3024 (put 'byte-list2 'byte-opcode-invert 'list) | |
| 3025 (put 'byte-list3 'byte-opcode-invert 'list) | |
| 3026 (put 'byte-list4 'byte-opcode-invert 'list) | |
| 3027 (put 'byte-listN 'byte-opcode-invert 'list) | |
| 3028 (put 'byte-concat2 'byte-opcode-invert 'concat) | |
| 3029 (put 'byte-concat3 'byte-opcode-invert 'concat) | |
| 3030 (put 'byte-concat4 'byte-opcode-invert 'concat) | |
| 3031 (put 'byte-concatN 'byte-opcode-invert 'concat) | |
| 3032 (put 'byte-insertN 'byte-opcode-invert 'insert) | |
| 3033 | |
| 3034 ;; How old is this stuff? -slb | |
| 3035 ;(byte-defop-compiler (dot byte-point) 0+1) | |
| 3036 ;(byte-defop-compiler (dot-max byte-point-max) 0+1) | |
| 3037 ;(byte-defop-compiler (dot-min byte-point-min) 0+1) | |
| 3038 (byte-defop-compiler point 0+1) | |
| 3039 (byte-defop-compiler-rmsfun eq 2) | |
| 3040 (byte-defop-compiler point-max 0+1) | |
| 3041 (byte-defop-compiler point-min 0+1) | |
| 3042 (byte-defop-compiler following-char 0+1) | |
| 3043 (byte-defop-compiler preceding-char 0+1) | |
| 3044 (byte-defop-compiler current-column 0+1) | |
| 3045 ;; FSF has special function here; generalized here by the 1+2 stuff. | |
| 3046 (byte-defop-compiler (indent-to-column byte-indent-to) 1+2) | |
| 3047 (byte-defop-compiler indent-to 1+2) | |
| 3048 (byte-defop-compiler-rmsfun equal 2) | |
| 3049 (byte-defop-compiler eolp 0+1) | |
| 3050 (byte-defop-compiler eobp 0+1) | |
| 3051 (byte-defop-compiler bolp 0+1) | |
| 3052 (byte-defop-compiler bobp 0+1) | |
| 3053 (byte-defop-compiler current-buffer 0) | |
| 3054 ;;(byte-defop-compiler read-char 0) ;; obsolete | |
| 3055 (byte-defop-compiler-rmsfun memq 2) | |
| 3056 (byte-defop-compiler interactive-p 0) | |
| 3057 (byte-defop-compiler widen 0+1) | |
| 3058 (byte-defop-compiler end-of-line 0-1+1) | |
| 3059 (byte-defop-compiler forward-char 0-1+1) | |
| 3060 (byte-defop-compiler forward-line 0-1+1) | |
| 3061 (byte-defop-compiler symbolp 1) | |
| 3062 (byte-defop-compiler consp 1) | |
| 3063 (byte-defop-compiler stringp 1) | |
| 3064 (byte-defop-compiler listp 1) | |
| 3065 (byte-defop-compiler not 1) | |
| 3066 (byte-defop-compiler (null byte-not) 1) | |
| 3067 (byte-defop-compiler car 1) | |
| 3068 (byte-defop-compiler cdr 1) | |
| 3069 (byte-defop-compiler length 1) | |
| 3070 (byte-defop-compiler symbol-value 1) | |
| 3071 (byte-defop-compiler symbol-function 1) | |
| 3072 (byte-defop-compiler (1+ byte-add1) 1) | |
| 3073 (byte-defop-compiler (1- byte-sub1) 1) | |
| 3074 (byte-defop-compiler goto-char 1+1) | |
| 3075 (byte-defop-compiler char-after 0-1+1) | |
| 3076 (byte-defop-compiler set-buffer 1) | |
| 3077 ;;(byte-defop-compiler set-mark 1) ;; obsolete | |
| 2217 | 3078 (byte-defop-compiler forward-word 0-1+1) |
| 428 | 3079 (byte-defop-compiler char-syntax 1+1) |
| 3080 (byte-defop-compiler nreverse 1) | |
| 3081 (byte-defop-compiler car-safe 1) | |
| 3082 (byte-defop-compiler cdr-safe 1) | |
| 3083 (byte-defop-compiler numberp 1) | |
|
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3084 (byte-defop-compiler fixnump 1) |
| 428 | 3085 (byte-defop-compiler skip-chars-forward 1-2+1) |
| 3086 (byte-defop-compiler skip-chars-backward 1-2+1) | |
| 3087 (byte-defop-compiler (eql byte-eq) 2) | |
| 3088 (byte-defop-compiler20 old-eq 2) | |
| 3089 (byte-defop-compiler20 old-memq 2) | |
| 3090 (byte-defop-compiler cons 2) | |
| 3091 (byte-defop-compiler aref 2) | |
| 3092 (byte-defop-compiler get 2+1) | |
| 3093 (byte-defop-compiler nth 2) | |
|
5089
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3094 (byte-defop-compiler subseq byte-compile-subseq) |
|
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3095 (byte-defop-compiler (substring byte-subseq) 2-3) |
| 428 | 3096 (byte-defop-compiler (move-marker byte-set-marker) 2-3) |
| 3097 (byte-defop-compiler set-marker 2-3) | |
| 3098 (byte-defop-compiler match-beginning 1) | |
| 3099 (byte-defop-compiler match-end 1) | |
| 3100 (byte-defop-compiler upcase 1+1) | |
| 3101 (byte-defop-compiler downcase 1+1) | |
| 3102 (byte-defop-compiler string= 2) | |
| 3103 (byte-defop-compiler string< 2) | |
| 3104 (byte-defop-compiler (string-equal byte-string=) 2) | |
| 3105 (byte-defop-compiler (string-lessp byte-string<) 2) | |
| 3106 (byte-defop-compiler20 old-equal 2) | |
| 3107 (byte-defop-compiler nthcdr 2) | |
| 3108 (byte-defop-compiler elt 2) | |
| 3109 (byte-defop-compiler20 old-member 2) | |
| 3110 (byte-defop-compiler20 old-assq 2) | |
| 3111 (byte-defop-compiler (rplaca byte-setcar) 2) | |
| 3112 (byte-defop-compiler (rplacd byte-setcdr) 2) | |
| 3113 (byte-defop-compiler setcar 2) | |
| 3114 (byte-defop-compiler setcdr 2) | |
| 3115 (byte-defop-compiler delete-region 2+1) | |
| 3116 (byte-defop-compiler narrow-to-region 2+1) | |
| 3117 (byte-defop-compiler (% byte-rem) 2) | |
| 3118 (byte-defop-compiler aset 3) | |
| 3119 | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3120 (byte-defop-compiler-1 bind-multiple-value-limits) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3121 (byte-defop-compiler multiple-value-list-internal) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3122 (byte-defop-compiler-1 multiple-value-call) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3123 (byte-defop-compiler throw) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3124 |
| 428 | 3125 (byte-defop-compiler-rmsfun member 2) |
| 3126 (byte-defop-compiler-rmsfun assq 2) | |
| 3127 | |
| 3128 ;;####(byte-defop-compiler move-to-column 1) | |
| 3129 (byte-defop-compiler-1 interactive byte-compile-noop) | |
| 3130 (byte-defop-compiler-1 domain byte-compile-domain) | |
| 3131 | |
| 3132 ;; As of GNU Emacs 19.18 and Lucid Emacs 19.8, mod and % are different: `%' | |
| 3133 ;; means integral remainder and may have a negative result; `mod' is always | |
| 3134 ;; positive, and accepts floating point args. All code which uses `mod' and | |
| 3135 ;; requires the new interpretation must be compiled with bytecomp version 2.18 | |
| 3136 ;; or newer, or the emitted code will run the byte-code for `%' instead of an | |
| 3137 ;; actual call to `mod'. So be careful of compiling new code with an old | |
| 3138 ;; compiler. Note also that `%' is more efficient than `mod' because the | |
| 3139 ;; former is byte-coded and the latter is not. | |
| 3140 ;;(byte-defop-compiler (mod byte-rem) 2) | |
| 3141 | |
| 3142 | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3143 (defun byte-compile-warn-wrong-args (form n) |
| 428 | 3144 (when (memq 'subr-callargs byte-compile-warnings) |
| 3145 (byte-compile-warn "%s called with %d arg%s, but requires %s" | |
| 3146 (car form) (length (cdr form)) | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3147 (if (= 1 (length (cdr form))) "" "s") n))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3148 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3149 (defun byte-compile-subr-wrong-args (form n) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3150 (byte-compile-warn-wrong-args form n) |
| 428 | 3151 ;; get run-time wrong-number-of-args error. |
| 3152 (byte-compile-normal-call form)) | |
| 3153 | |
| 3154 (defun byte-compile-no-args (form) | |
| 3155 (case (length (cdr form)) | |
| 3156 (0 (byte-compile-out (get (car form) 'byte-opcode) 0)) | |
| 3157 (t (byte-compile-subr-wrong-args form "none")))) | |
| 3158 | |
| 3159 (defun byte-compile-one-arg (form) | |
| 3160 (case (length (cdr form)) | |
| 3161 (1 (byte-compile-form (car (cdr form))) ;; Push the argument | |
| 3162 (byte-compile-out (get (car form) 'byte-opcode) 0)) | |
| 3163 (t (byte-compile-subr-wrong-args form 1)))) | |
| 3164 | |
| 3165 (defun byte-compile-two-args (form) | |
| 3166 (case (length (cdr form)) | |
| 3167 (2 (byte-compile-form (nth 1 form)) ;; Push the arguments | |
| 3168 (byte-compile-form (nth 2 form)) | |
| 3169 (byte-compile-out (get (car form) 'byte-opcode) 0)) | |
| 3170 (t (byte-compile-subr-wrong-args form 2)))) | |
| 3171 | |
| 3172 (defun byte-compile-three-args (form) | |
| 3173 (case (length (cdr form)) | |
| 3174 (3 (byte-compile-form (nth 1 form)) ;; Push the arguments | |
| 3175 (byte-compile-form (nth 2 form)) | |
| 3176 (byte-compile-form (nth 3 form)) | |
| 3177 (byte-compile-out (get (car form) 'byte-opcode) 0)) | |
| 3178 (t (byte-compile-subr-wrong-args form 3)))) | |
| 3179 | |
| 3180 (defun byte-compile-zero-or-one-arg (form) | |
| 3181 (case (length (cdr form)) | |
| 3182 (0 (byte-compile-one-arg (append form '(nil)))) | |
| 3183 (1 (byte-compile-one-arg form)) | |
| 3184 (t (byte-compile-subr-wrong-args form "0-1")))) | |
| 3185 | |
| 3186 (defun byte-compile-one-or-two-args (form) | |
| 3187 (case (length (cdr form)) | |
| 3188 (1 (byte-compile-two-args (append form '(nil)))) | |
| 3189 (2 (byte-compile-two-args form)) | |
| 3190 (t (byte-compile-subr-wrong-args form "1-2")))) | |
| 3191 | |
| 3192 (defun byte-compile-two-or-three-args (form) | |
| 3193 (case (length (cdr form)) | |
| 3194 (2 (byte-compile-three-args (append form '(nil)))) | |
| 3195 (3 (byte-compile-three-args form)) | |
| 3196 (t (byte-compile-subr-wrong-args form "2-3")))) | |
| 3197 | |
| 3198 ;; from Ben Wing <ben@xemacs.org>: some inlined functions have extra | |
| 3199 ;; optional args added to them in XEmacs 19.12. Changing the byte | |
| 3200 ;; interpreter to deal with these args would be wrong and cause | |
| 3201 ;; incompatibility, so we generate non-inlined calls for those cases. | |
| 3202 ;; Without the following functions, spurious warnings will be generated; | |
| 3203 ;; however, they would still compile correctly because | |
| 3204 ;; `byte-compile-subr-wrong-args' also converts the call to non-inlined. | |
| 3205 | |
| 3206 (defun byte-compile-no-args-with-one-extra (form) | |
| 3207 (case (length (cdr form)) | |
| 3208 (0 (byte-compile-no-args form)) | |
| 446 | 3209 (1 (if (eq nil (nth 1 form)) |
| 3210 (byte-compile-no-args (butlast form)) | |
| 3211 (byte-compile-normal-call form))) | |
| 428 | 3212 (t (byte-compile-subr-wrong-args form "0-1")))) |
| 3213 | |
| 3214 (defun byte-compile-one-arg-with-one-extra (form) | |
| 3215 (case (length (cdr form)) | |
| 3216 (1 (byte-compile-one-arg form)) | |
| 446 | 3217 (2 (if (eq nil (nth 2 form)) |
| 3218 (byte-compile-one-arg (butlast form)) | |
| 3219 (byte-compile-normal-call form))) | |
| 428 | 3220 (t (byte-compile-subr-wrong-args form "1-2")))) |
| 3221 | |
| 3222 (defun byte-compile-two-args-with-one-extra (form) | |
| 3223 (case (length (cdr form)) | |
| 3224 (2 (byte-compile-two-args form)) | |
| 446 | 3225 (3 (if (eq nil (nth 3 form)) |
| 3226 (byte-compile-two-args (butlast form)) | |
| 3227 (byte-compile-normal-call form))) | |
| 428 | 3228 (t (byte-compile-subr-wrong-args form "2-3")))) |
| 3229 | |
| 3230 (defun byte-compile-zero-or-one-arg-with-one-extra (form) | |
| 3231 (case (length (cdr form)) | |
| 3232 (0 (byte-compile-one-arg (append form '(nil)))) | |
| 3233 (1 (byte-compile-one-arg form)) | |
| 446 | 3234 (2 (if (eq nil (nth 2 form)) |
| 3235 (byte-compile-one-arg (butlast form)) | |
| 3236 (byte-compile-normal-call form))) | |
| 428 | 3237 (t (byte-compile-subr-wrong-args form "0-2")))) |
| 3238 | |
| 3239 (defun byte-compile-one-or-two-args-with-one-extra (form) | |
| 3240 (case (length (cdr form)) | |
| 3241 (1 (byte-compile-two-args (append form '(nil)))) | |
| 3242 (2 (byte-compile-two-args form)) | |
| 446 | 3243 (3 (if (eq nil (nth 3 form)) |
| 3244 (byte-compile-two-args (butlast form)) | |
| 3245 (byte-compile-normal-call form))) | |
| 428 | 3246 (t (byte-compile-subr-wrong-args form "1-3")))) |
| 3247 | |
| 3248 (defun byte-compile-two-or-three-args-with-one-extra (form) | |
| 3249 (case (length (cdr form)) | |
| 3250 (2 (byte-compile-three-args (append form '(nil)))) | |
| 3251 (3 (byte-compile-three-args form)) | |
| 446 | 3252 (4 (if (eq nil (nth 4 form)) |
| 3253 (byte-compile-three-args (butlast form)) | |
| 3254 (byte-compile-normal-call form))) | |
| 428 | 3255 (t (byte-compile-subr-wrong-args form "2-4")))) |
| 3256 | |
| 3257 (defun byte-compile-no-args-with-two-extra (form) | |
| 3258 (case (length (cdr form)) | |
| 3259 (0 (byte-compile-no-args form)) | |
| 3260 ((1 2) (byte-compile-normal-call form)) | |
| 3261 (t (byte-compile-subr-wrong-args form "0-2")))) | |
| 3262 | |
| 3263 (defun byte-compile-one-arg-with-two-extra (form) | |
| 3264 (case (length (cdr form)) | |
| 3265 (1 (byte-compile-one-arg form)) | |
| 3266 ((2 3) (byte-compile-normal-call form)) | |
| 3267 (t (byte-compile-subr-wrong-args form "1-3")))) | |
| 3268 | |
| 3269 ;; XEmacs: used for functions that have a different opcode in v19 than v20. | |
| 3270 ;; this includes `eq', `equal', and other old-ified functions. | |
| 3271 (defun byte-compile-two-args-19->20 (form) | |
| 3272 (if (not (= (length form) 3)) | |
| 3273 (byte-compile-subr-wrong-args form 2) | |
| 3274 (byte-compile-form (car (cdr form))) ;; Push the arguments | |
| 3275 (byte-compile-form (nth 2 form)) | |
| 3276 (if (byte-compile-version-cond byte-compile-emacs19-compatibility) | |
| 3277 (byte-compile-out (get (car form) 'byte-opcode19) 0) | |
| 3278 (byte-compile-out (get (car form) 'byte-opcode) 0)))) | |
| 3279 | |
| 3280 (defun byte-compile-noop (form) | |
| 3281 (byte-compile-constant nil)) | |
| 3282 | |
| 3283 (defun byte-compile-discard () | |
| 3284 (byte-compile-out 'byte-discard 0)) | |
| 3285 | |
| 446 | 3286 (defun byte-compile-max (form) |
| 3287 (let ((args (cdr form))) | |
| 428 | 3288 (case (length args) |
| 446 | 3289 (0 (byte-compile-subr-wrong-args form "1 or more")) |
| 3290 (1 (byte-compile-form (car args)) | |
| 3291 (when (not byte-compile-delete-errors) | |
| 3292 (byte-compile-out 'byte-dup 0) | |
| 3293 (byte-compile-out 'byte-max 0))) | |
| 428 | 3294 (t (byte-compile-form (car args)) |
| 446 | 3295 (dolist (elt (cdr args)) |
| 3296 (byte-compile-form elt) | |
| 3297 (byte-compile-out 'byte-max 0)))))) | |
| 3298 | |
| 3299 (defun byte-compile-min (form) | |
| 3300 (let ((args (cdr form))) | |
| 3301 (case (length args) | |
| 3302 (0 (byte-compile-subr-wrong-args form "1 or more")) | |
| 3303 (1 (byte-compile-form (car args)) | |
| 3304 (when (not byte-compile-delete-errors) | |
| 3305 (byte-compile-out 'byte-dup 0) | |
| 3306 (byte-compile-out 'byte-min 0))) | |
| 3307 (t (byte-compile-form (car args)) | |
| 3308 (dolist (elt (cdr args)) | |
| 3309 (byte-compile-form elt) | |
| 3310 (byte-compile-out 'byte-min 0)))))) | |
| 428 | 3311 |
| 3312 | |
| 3313 ;; more complicated compiler macros | |
| 3314 | |
| 3315 (byte-defop-compiler list) | |
| 3316 (byte-defop-compiler concat) | |
| 3317 (byte-defop-compiler fset) | |
| 3318 (byte-defop-compiler insert) | |
| 3319 (byte-defop-compiler-1 function byte-compile-function-form) | |
| 446 | 3320 (byte-defop-compiler max) |
| 3321 (byte-defop-compiler min) | |
| 3322 (byte-defop-compiler (+ byte-plus) byte-compile-plus) | |
| 3323 (byte-defop-compiler-1 - byte-compile-minus) | |
| 3324 (byte-defop-compiler (* byte-mult) byte-compile-mult) | |
| 3325 (byte-defop-compiler (/ byte-quo) byte-compile-quo) | |
| 428 | 3326 (byte-defop-compiler nconc) |
| 3327 (byte-defop-compiler-1 beginning-of-line) | |
| 3328 | |
| 3329 (byte-defop-compiler (= byte-eqlsign) byte-compile-arithcompare) | |
| 3330 (byte-defop-compiler (< byte-lss) byte-compile-arithcompare) | |
| 3331 (byte-defop-compiler (> byte-gtr) byte-compile-arithcompare) | |
| 3332 (byte-defop-compiler (<= byte-leq) byte-compile-arithcompare) | |
| 3333 (byte-defop-compiler (>= byte-geq) byte-compile-arithcompare) | |
| 3334 | |
| 3335 (defun byte-compile-arithcompare (form) | |
| 3336 (case (length (cdr form)) | |
| 3337 (0 (byte-compile-subr-wrong-args form "1 or more")) | |
| 549 | 3338 (1 (if byte-compile-delete-errors |
| 3339 (byte-compile-constant t) | |
| 3340 (byte-compile-normal-call form))) | |
| 428 | 3341 (2 (byte-compile-two-args form)) |
| 3342 (t (byte-compile-normal-call form)))) | |
| 3343 | |
| 3344 (byte-defop-compiler /= byte-compile-/=) | |
| 3345 | |
| 3346 (defun byte-compile-/= (form) | |
| 3347 (case (length (cdr form)) | |
| 3348 (0 (byte-compile-subr-wrong-args form "1 or more")) | |
| 3349 (1 (byte-compile-constant t)) | |
| 3350 ;; optimize (/= X Y) to (not (= X Y)) | |
| 3351 (2 (byte-compile-form-do-effect `(not (= ,@(cdr form))))) | |
| 3352 (t (byte-compile-normal-call form)))) | |
| 3353 | |
| 3354 ;; buffer-substring now has its own function. This used to be | |
| 3355 ;; 2+1, but now all args are optional. | |
| 3356 (byte-defop-compiler buffer-substring) | |
| 3357 | |
| 3358 (defun byte-compile-buffer-substring (form) | |
| 3359 ;; buffer-substring used to take exactly two args, but now takes 0-3. | |
| 3360 ;; convert 0-2 to two args and use special bytecode operand. | |
| 3361 ;; convert 3 args to a normal call. | |
| 3362 (case (length (cdr form)) | |
| 3363 (0 (byte-compile-two-args (append form '(nil nil)))) | |
| 3364 (1 (byte-compile-two-args (append form '(nil)))) | |
| 3365 (2 (byte-compile-two-args form)) | |
| 3366 (3 (byte-compile-normal-call form)) | |
| 3367 (t (byte-compile-subr-wrong-args form "0-3")))) | |
| 3368 | |
| 3369 (defun byte-compile-list (form) | |
| 3370 (let* ((args (cdr form)) | |
| 3371 (nargs (length args))) | |
| 3372 (cond | |
| 3373 ((= nargs 0) | |
| 3374 (byte-compile-constant nil)) | |
| 3375 ((< nargs 5) | |
|
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
3376 (mapc 'byte-compile-form args) |
| 428 | 3377 (byte-compile-out |
| 3378 (aref [byte-list1 byte-list2 byte-list3 byte-list4] (1- nargs)) | |
| 3379 0)) | |
| 3380 ((< nargs 256) | |
|
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
3381 (mapc 'byte-compile-form args) |
| 428 | 3382 (byte-compile-out 'byte-listN nargs)) |
| 3383 (t (byte-compile-normal-call form))))) | |
| 3384 | |
| 3385 (defun byte-compile-concat (form) | |
| 3386 (let* ((args (cdr form)) | |
| 3387 (nargs (length args))) | |
| 3388 ;; Concat of one arg is not a no-op if arg is not a string. | |
| 3389 (cond | |
| 3390 ((memq nargs '(2 3 4)) | |
|
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
3391 (mapc 'byte-compile-form args) |
| 428 | 3392 (byte-compile-out |
| 3393 (aref [byte-concat2 byte-concat3 byte-concat4] (- nargs 2)) | |
| 3394 0)) | |
| 3395 ((eq nargs 0) | |
| 3396 (byte-compile-form "")) | |
| 3397 ((< nargs 256) | |
|
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
3398 (mapc 'byte-compile-form args) |
| 428 | 3399 (byte-compile-out 'byte-concatN nargs)) |
| 3400 ((byte-compile-normal-call form))))) | |
| 3401 | |
| 446 | 3402 (defun byte-compile-plus (form) |
| 3403 (let ((args (cdr form))) | |
| 3404 (case (length args) | |
| 3405 (0 (byte-compile-constant 0)) | |
| 3406 (1 (byte-compile-plus (append form '(0)))) | |
| 3407 (t (byte-compile-form (car args)) | |
| 3408 (dolist (elt (cdr args)) | |
| 3409 (case elt | |
| 3410 (0 (when (not byte-compile-delete-errors) | |
| 3411 (byte-compile-constant 0) | |
| 3412 (byte-compile-out 'byte-plus 0))) | |
| 3413 (+1 (byte-compile-out 'byte-add1 0)) | |
| 3414 (-1 (byte-compile-out 'byte-sub1 0)) | |
| 3415 (t | |
| 3416 (byte-compile-form elt) | |
| 3417 (byte-compile-out 'byte-plus 0)))))))) | |
| 3418 | |
| 428 | 3419 (defun byte-compile-minus (form) |
| 3420 (let ((args (cdr form))) | |
| 3421 (case (length args) | |
| 3422 (0 (byte-compile-subr-wrong-args form "1 or more")) | |
| 3423 (1 (byte-compile-form (car args)) | |
| 3424 (byte-compile-out 'byte-negate 0)) | |
| 3425 (t (byte-compile-form (car args)) | |
| 3426 (dolist (elt (cdr args)) | |
| 446 | 3427 (case elt |
| 3428 (0 (when (not byte-compile-delete-errors) | |
| 3429 (byte-compile-constant 0) | |
| 3430 (byte-compile-out 'byte-diff 0))) | |
| 3431 (+1 (byte-compile-out 'byte-sub1 0)) | |
| 3432 (-1 (byte-compile-out 'byte-add1 0)) | |
| 3433 (t | |
| 3434 (byte-compile-form elt) | |
| 3435 (byte-compile-out 'byte-diff 0)))))))) | |
| 3436 | |
| 3437 (defun byte-compile-mult (form) | |
| 3438 (let ((args (cdr form))) | |
| 3439 (case (length args) | |
| 3440 (0 (byte-compile-constant 1)) | |
| 3441 (1 (byte-compile-mult (append form '(1)))) | |
| 3442 (t (byte-compile-form (car args)) | |
| 3443 (dolist (elt (cdr args)) | |
| 3444 (case elt | |
| 3445 (1 (when (not byte-compile-delete-errors) | |
| 3446 (byte-compile-constant 1) | |
| 3447 (byte-compile-out 'byte-mult 0))) | |
| 3448 (-1 (byte-compile-out 'byte-negate 0)) | |
| 3449 (2 (byte-compile-out 'byte-dup 0) | |
| 3450 (byte-compile-out 'byte-plus 0)) | |
| 3451 (t | |
| 3452 (byte-compile-form elt) | |
| 3453 (byte-compile-out 'byte-mult 0)))))))) | |
| 428 | 3454 |
| 3455 (defun byte-compile-quo (form) | |
| 3456 (let ((args (cdr form))) | |
| 3457 (case (length args) | |
| 3458 (0 (byte-compile-subr-wrong-args form "1 or more")) | |
| 3459 (1 (byte-compile-constant 1) | |
| 3460 (byte-compile-form (car args)) | |
| 3461 (byte-compile-out 'byte-quo 0)) | |
| 3462 (t (byte-compile-form (car args)) | |
| 3463 (dolist (elt (cdr args)) | |
| 446 | 3464 (case elt |
| 3465 (+1 (when (not byte-compile-delete-errors) | |
| 3466 (byte-compile-constant 1) | |
| 3467 (byte-compile-out 'byte-quo 0))) | |
| 3468 (-1 (byte-compile-out 'byte-negate 0)) | |
| 3469 (t | |
| 3470 (when (and (numberp elt) (= elt 0)) | |
| 3471 (byte-compile-warn "Attempt to divide by zero: %s" form)) | |
| 3472 (byte-compile-form elt) | |
| 3473 (byte-compile-out 'byte-quo 0)))))))) | |
| 428 | 3474 |
| 3475 (defun byte-compile-nconc (form) | |
| 3476 (let ((args (cdr form))) | |
| 3477 (case (length args) | |
| 3478 (0 (byte-compile-constant nil)) | |
| 3479 ;; nconc of one arg is a noop, even if that arg isn't a list. | |
| 3480 (1 (byte-compile-form (car args))) | |
| 3481 (t (byte-compile-form (car args)) | |
| 3482 (dolist (elt (cdr args)) | |
| 3483 (byte-compile-form elt) | |
| 3484 (byte-compile-out 'byte-nconc 0)))))) | |
| 3485 | |
| 3486 (defun byte-compile-fset (form) | |
| 3487 ;; warn about forms like (fset 'foo '(lambda () ...)) | |
| 3488 ;; (where the lambda expression is non-trivial...) | |
| 3489 ;; Except don't warn if the first argument is 'make-byte-code, because | |
| 3490 ;; I'm sick of getting mail asking me whether that warning is a problem. | |
| 3491 (let ((fn (nth 2 form)) | |
| 3492 body) | |
| 3493 (when (and (eq (car-safe fn) 'quote) | |
| 3494 (eq (car-safe (setq fn (nth 1 fn))) 'lambda) | |
| 3495 (not (eq (car-safe (cdr-safe (nth 1 form))) 'make-byte-code))) | |
| 3496 (setq body (cdr (cdr fn))) | |
| 3497 (if (stringp (car body)) (setq body (cdr body))) | |
| 3498 (if (eq 'interactive (car-safe (car body))) (setq body (cdr body))) | |
| 3499 (if (and (consp (car body)) | |
|
4719
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3500 (not (eq 'byte-code (car (car body)))) |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3501 (memq 'quoted-lambda byte-compile-warnings)) |
| 428 | 3502 (byte-compile-warn |
| 3503 "A quoted lambda form is the second argument of fset. This is probably | |
| 3504 not what you want, as that lambda cannot be compiled. Consider using | |
| 3505 the syntax (function (lambda (...) ...)) instead.")))) | |
| 3506 (byte-compile-two-args form)) | |
| 3507 | |
|
5089
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3508 (defun byte-compile-subseq (form) |
|
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3509 (byte-compile-two-or-three-args form) |
|
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3510 ;; Check that XEmacs supports the substring-subseq equivalence. |
|
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3511 (pushnew '(eq 'subseq (symbol-function 'substring)) |
|
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3512 byte-compile-checks-on-load :test #'equal)) |
|
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3513 |
|
4743
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3514 (defmacro byte-compile-funarg-n (&rest n) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3515 `#'(lambda (form) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3516 ,@(loop |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3517 for en in n |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3518 collect `(let ((fn (nth ,en form))) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3519 (when (and (eq (car-safe fn) 'quote) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3520 (eq (car-safe (nth 1 fn)) 'lambda) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3521 (or |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3522 (null (memq 'quoted-lambda |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3523 byte-compile-warnings)) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3524 (byte-compile-warn |
|
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3525 "Passing a quoted lambda (arg %d) to #'%s, \ |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3526 forcing function quoting" ,en (car form)))) |
|
4743
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3527 (setcar fn 'function)))) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3528 (byte-compile-normal-call form))) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3529 |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3530 ;; (mapcar '(lambda (x) ..) ..) ==> (mapcar (function (lambda (x) ..)) ..) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3531 ;; for cases where it's guaranteed that first arg will be used as a lambda. |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3532 (defalias 'byte-compile-funarg (byte-compile-funarg-n 1)) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3533 |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3534 ;; (sort ... '(lambda (x) ..)) ==> (sort ... (function (lambda (x) ..))) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3535 ;; for cases where it's guaranteed that second arg will be used as a lambda. |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3536 (defalias 'byte-compile-funarg-2 (byte-compile-funarg-n 2)) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3537 |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3538 ;; For #'merge, basically. |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3539 (defalias 'byte-compile-funarg-4 (byte-compile-funarg-n 4)) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3540 |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3541 ;; For #'call-with-condition-handler, basically. |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3542 (defalias 'byte-compile-funarg-1-2 (byte-compile-funarg-n 1 2)) |
| 428 | 3543 |
|
4716
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3544 ;; XEmacs change; don't cons up the list if it's going to be immediately |
|
4743
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3545 ;; discarded. GNU give a warning in `byte-compile-normal-call' instead, and |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3546 ;; only for #'mapcar. |
|
4719
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3547 (defun byte-compile-maybe-mapc (form) |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3548 (and for-effect |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3549 (or (null (memq 'discarded-consing byte-compile-warnings)) |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3550 (byte-compile-warn |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3551 "Discarding the result of #'%s; maybe you meant #'mapc?" |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3552 (car form))) |
|
4995
8431b52e43b1
Move the various map* functions to C; add #'map-into.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4885
diff
changeset
|
3553 (setq form (cons 'mapc (cdr form)))) |
|
4716
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3554 (byte-compile-funarg form)) |
|
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3555 |
|
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3556 (defun byte-compile-maplist (form) |
|
4719
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3557 (and for-effect |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3558 (or (null (memq 'discarded-consing byte-compile-warnings)) |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3559 (byte-compile-warn |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3560 "Discarding the result of #'maplist; maybe you meant #'mapl?")) |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3561 (setq form (cons 'mapl (cdr form)))) |
|
4716
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3562 (byte-compile-funarg form)) |
|
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3563 |
|
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3564 ;; For when calls to #'sort or #'mapcar have more than two args, something |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3565 ;; recent XEmacs can handle, but GNU and 21.4 can't. |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3566 (defmacro byte-compile-maybe-add-* (complex max) |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3567 `#'(lambda (form) |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3568 (when (> (length (cdr form)) ,max) |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3569 (when (memq 'callargs byte-compile-warnings) |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3570 (byte-compile-warn |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3571 "#'%s called with %d arguments, using #'%s instead" |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3572 (car form) (length (cdr form)) ',complex)) |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3573 (setq form (cons ',complex (cdr form)))) |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3574 (funcall (or (get ',complex 'byte-compile) |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3575 'byte-compile-normal-call) form))) |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3576 |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3577 (defalias 'byte-compile-mapcar (byte-compile-maybe-add-* mapcar* 2)) |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3578 |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3579 (defalias 'byte-compile-sort (byte-compile-maybe-add-* sort* 2)) |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3580 |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3581 (defalias 'byte-compile-fillarray (byte-compile-maybe-add-* fill 2)) |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3582 |
| 428 | 3583 ;; (function foo) must compile like 'foo, not like (symbol-function 'foo). |
| 3584 ;; Otherwise it will be incompatible with the interpreter, | |
| 3585 ;; and (funcall (function foo)) will lose with autoloads. | |
| 3586 | |
| 3587 (defun byte-compile-function-form (form) | |
|
5265
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3588 (if (cddr form) |
|
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3589 (byte-compile-normal-call |
|
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3590 `(signal 'wrong-number-of-arguments '(function ,(length (cdr form))))) |
|
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3591 (byte-compile-constant |
|
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3592 (cond ((symbolp (nth 1 form)) |
|
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3593 (nth 1 form)) |
|
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3594 ((byte-compile-lambda (nth 1 form))))))) |
| 428 | 3595 |
| 3596 (defun byte-compile-insert (form) | |
| 3597 (cond ((null (cdr form)) | |
| 3598 (byte-compile-constant nil)) | |
| 3599 ((<= (length form) 256) | |
|
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
3600 (mapc 'byte-compile-form (cdr form)) |
| 428 | 3601 (if (cdr (cdr form)) |
| 3602 (byte-compile-out 'byte-insertN (length (cdr form))) | |
| 3603 (byte-compile-out 'byte-insert 0))) | |
| 3604 ((memq t (mapcar 'consp (cdr (cdr form)))) | |
| 3605 (byte-compile-normal-call form)) | |
| 3606 ;; We can split it; there is no function call after inserting 1st arg. | |
| 3607 (t | |
| 3608 (while (setq form (cdr form)) | |
| 3609 (byte-compile-form (car form)) | |
| 3610 (byte-compile-out 'byte-insert 0) | |
| 3611 (when (cdr form) | |
| 3612 (byte-compile-discard)))))) | |
| 3613 | |
| 3614 ;; alas, the old (pre-19.12, and all existing versions of FSFmacs 19) | |
| 3615 ;; byte compiler will generate incorrect code for | |
| 3616 ;; (beginning-of-line nil buffer) because it buggily doesn't | |
| 3617 ;; check the number of arguments passed to beginning-of-line. | |
| 3618 | |
| 3619 (defun byte-compile-beginning-of-line (form) | |
| 3620 (let ((len (length form))) | |
| 3621 (cond ((> len 3) | |
| 3622 (byte-compile-subr-wrong-args form "0-2")) | |
| 3623 ((or (= len 3) (not (byte-compile-constp (nth 1 form)))) | |
| 3624 (byte-compile-normal-call form)) | |
| 3625 (t | |
| 3626 (byte-compile-form | |
| 3627 (list 'forward-line | |
| 3628 (if (integerp (setq form (or (eval (nth 1 form)) 1))) | |
| 3629 (1- form) | |
| 3630 (byte-compile-warn | |
| 3631 "Non-numeric arg to beginning-of-line: %s" form) | |
| 3632 (list '1- (list 'quote form)))) | |
| 3633 t) | |
| 3634 (byte-compile-constant nil))))) | |
| 3635 | |
| 3636 | |
| 3637 (byte-defop-compiler set) | |
| 3638 (byte-defop-compiler-1 setq) | |
| 3639 (byte-defop-compiler-1 set-default) | |
| 3640 (byte-defop-compiler-1 setq-default) | |
| 3641 | |
| 3642 (byte-defop-compiler-1 quote) | |
| 3643 (byte-defop-compiler-1 quote-form) | |
| 3644 | |
| 3645 (defun byte-compile-setq (form) | |
| 3646 (let ((args (cdr form)) var val) | |
| 3647 (if (null args) | |
| 3648 ;; (setq), with no arguments. | |
| 3649 (byte-compile-form nil for-effect) | |
| 3650 (while args | |
| 3651 (setq var (pop args)) | |
| 3652 (if (null args) | |
| 3653 ;; Odd number of args? Let `set' get the error. | |
| 3654 (byte-compile-form `(set ',var) for-effect) | |
| 3655 (setq val (pop args)) | |
| 3656 (if (keywordp var) | |
| 3657 ;; (setq :foo ':foo) compatibility kludge | |
| 3658 (byte-compile-form `(set ',var ,val) (if args t for-effect)) | |
| 3659 (byte-compile-form val) | |
| 3660 (unless (or args for-effect) | |
| 3661 (byte-compile-out 'byte-dup 0)) | |
| 3662 (byte-compile-variable-ref 'byte-varset var)))))) | |
| 3663 (setq for-effect nil)) | |
| 3664 | |
| 3665 (defun byte-compile-set (form) | |
| 3666 ;; Compile (set 'foo x) as (setq foo x) for trivially better code and so | |
| 3667 ;; that we get applicable warnings. Compile everything else (including | |
| 3668 ;; malformed calls) like a normal 2-arg byte-coded function. | |
| 3669 (let ((symform (nth 1 form)) | |
| 3670 (valform (nth 2 form)) | |
| 3671 sym) | |
| 3672 (if (and (= (length form) 3) | |
| 3673 (= (safe-length symform) 2) | |
| 3674 (eq (car symform) 'quote) | |
| 3675 (symbolp (setq sym (car (cdr symform)))) | |
| 3676 (not (byte-compile-constant-symbol-p sym))) | |
| 3677 (byte-compile-setq `(setq ,sym ,valform)) | |
| 3678 (byte-compile-two-args form)))) | |
| 3679 | |
| 3680 (defun byte-compile-setq-default (form) | |
| 3681 (let ((args (cdr form))) | |
| 3682 (if (null args) | |
| 3683 ;; (setq-default), with no arguments. | |
| 3684 (byte-compile-form nil for-effect) | |
| 3685 ;; emit multiple calls to `set-default' if necessary | |
| 3686 (while args | |
| 3687 (byte-compile-form | |
| 3688 ;; Odd number of args? Let `set-default' get the error. | |
| 3689 `(set-default ',(pop args) ,@(if args (list (pop args)) nil)) | |
| 3690 (if args t for-effect))))) | |
| 3691 (setq for-effect nil)) | |
| 3692 | |
| 3693 (defun byte-compile-set-default (form) | |
| 3694 (let* ((args (cdr form)) | |
| 3695 (nargs (length args)) | |
| 3696 (var (car args))) | |
| 3697 (when (and (= (safe-length var) 2) | |
| 3698 (eq (car var) 'quote)) | |
| 3699 (let ((sym (nth 1 var))) | |
| 3700 (cond | |
| 3701 ((not (symbolp sym)) | |
| 3702 (byte-compile-warn "Attempt to set-globally non-symbol %s" sym)) | |
| 3703 ((byte-compile-constant-symbol-p sym) | |
| 3704 (byte-compile-warn "Attempt to set-globally constant symbol %s" sym)) | |
| 3705 ((let ((cell (assq sym byte-compile-bound-variables))) | |
| 3706 (and cell | |
| 3707 (setcdr cell (logior (cdr cell) byte-compile-assigned-bit)) | |
| 3708 t))) | |
| 3709 ;; notice calls to set-default/setq-default for variables which | |
| 3710 ;; have not been declared with defvar/defconst. | |
| 3711 ((globally-boundp sym)) ; OK | |
| 3712 ((not (memq 'free-vars byte-compile-warnings))) ; warnings suppressed? | |
| 3713 ((memq sym byte-compile-free-assignments)) ; already warned about sym | |
| 3714 (t | |
| 3715 (byte-compile-warn "assignment to free variable %s" sym) | |
| 3716 (push sym byte-compile-free-assignments))))) | |
| 3717 (if (= nargs 2) | |
| 3718 ;; now emit a normal call to set-default | |
| 3719 (byte-compile-normal-call form) | |
| 3720 (byte-compile-subr-wrong-args form 2)))) | |
| 3721 | |
| 3722 | |
| 3723 (defun byte-compile-quote (form) | |
|
5265
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3724 (if (cddr form) |
|
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3725 (byte-compile-normal-call |
|
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3726 `(signal 'wrong-number-of-arguments '(quote ,(length (cdr form))))) |
|
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3727 (byte-compile-constant (car (cdr form))))) |
| 428 | 3728 |
| 3729 (defun byte-compile-quote-form (form) | |
|
5265
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3730 (if (cddr form) |
|
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3731 (byte-compile-normal-call |
|
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3732 `(signal 'wrong-number-of-arguments '(quote ,(length (cdr form))))) |
|
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3733 (byte-compile-constant (byte-compile-top-level (nth 1 form))))) |
| 428 | 3734 |
| 3735 ;;; control structures | |
| 3736 | |
| 3737 (defun byte-compile-body (body &optional for-effect) | |
| 3738 (while (cdr body) | |
| 3739 (byte-compile-form (car body) t) | |
| 3740 (setq body (cdr body))) | |
| 3741 (byte-compile-form (car body) for-effect)) | |
| 3742 | |
| 3743 (proclaim-inline byte-compile-body-do-effect) | |
| 3744 (defun byte-compile-body-do-effect (body) | |
| 3745 (byte-compile-body body for-effect) | |
| 3746 (setq for-effect nil)) | |
| 3747 | |
| 3748 (proclaim-inline byte-compile-form-do-effect) | |
| 3749 (defun byte-compile-form-do-effect (form) | |
| 3750 (byte-compile-form form for-effect) | |
| 3751 (setq for-effect nil)) | |
| 3752 | |
| 3753 (byte-defop-compiler-1 inline byte-compile-progn) | |
| 3754 (byte-defop-compiler-1 progn) | |
| 3755 (byte-defop-compiler-1 prog1) | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3756 (byte-defop-compiler-1 multiple-value-prog1) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3757 (byte-defop-compiler-1 values) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3758 (byte-defop-compiler-1 values-list) |
| 428 | 3759 (byte-defop-compiler-1 prog2) |
| 3760 (byte-defop-compiler-1 if) | |
| 3761 (byte-defop-compiler-1 cond) | |
| 3762 (byte-defop-compiler-1 and) | |
| 3763 (byte-defop-compiler-1 or) | |
| 3764 (byte-defop-compiler-1 while) | |
| 3765 (byte-defop-compiler-1 funcall) | |
| 3766 (byte-defop-compiler-1 apply byte-compile-funarg) | |
|
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3767 (byte-defop-compiler-1 mapcar byte-compile-mapcar) |
|
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3768 (byte-defop-compiler-1 mapcar* byte-compile-maybe-mapc) |
| 428 | 3769 (byte-defop-compiler-1 mapatoms byte-compile-funarg) |
| 3770 (byte-defop-compiler-1 mapconcat byte-compile-funarg) | |
|
4743
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3771 (byte-defop-compiler-1 mapc byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3772 (byte-defop-compiler-1 maphash byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3773 (byte-defop-compiler-1 map-char-table byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3774 (byte-defop-compiler-1 mapvector byte-compile-maybe-mapc) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3775 (byte-defop-compiler-1 mapc-internal byte-compile-funarg) |
|
4716
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3776 (byte-defop-compiler-1 maplist byte-compile-maplist) |
|
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3777 (byte-defop-compiler-1 mapl byte-compile-funarg) |
|
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3778 (byte-defop-compiler-1 mapcan byte-compile-funarg) |
|
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3779 (byte-defop-compiler-1 mapcon byte-compile-funarg) |
|
4719
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3780 (byte-defop-compiler-1 map-database byte-compile-funarg) |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3781 (byte-defop-compiler-1 map-extent-children byte-compile-funarg) |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3782 (byte-defop-compiler-1 map-extents byte-compile-funarg) |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3783 (byte-defop-compiler-1 map-plist byte-compile-funarg) |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3784 (byte-defop-compiler-1 map-range-table byte-compile-funarg) |
|
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3785 (byte-defop-compiler-1 map-syntax-table byte-compile-funarg) |
|
4743
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3786 |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3787 (byte-defop-compiler-1 remove-if byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3788 (byte-defop-compiler-1 remove-if-not byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3789 (byte-defop-compiler-1 delete-if byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3790 (byte-defop-compiler-1 delete-if-not byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3791 (byte-defop-compiler-1 find-if byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3792 (byte-defop-compiler-1 find-if-not byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3793 (byte-defop-compiler-1 position-if byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3794 (byte-defop-compiler-1 position-if-not byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3795 (byte-defop-compiler-1 count-if byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3796 (byte-defop-compiler-1 count-if-not byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3797 (byte-defop-compiler-1 member-if byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3798 (byte-defop-compiler-1 member-if-not byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3799 (byte-defop-compiler-1 assoc-if byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3800 (byte-defop-compiler-1 assoc-if-not byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3801 (byte-defop-compiler-1 rassoc-if byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3802 (byte-defop-compiler-1 rassoc-if-not byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3803 (byte-defop-compiler-1 reduce byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3804 (byte-defop-compiler-1 some byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3805 (byte-defop-compiler-1 every byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3806 (byte-defop-compiler-1 notany byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3807 (byte-defop-compiler-1 notevery byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3808 |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3809 (byte-defop-compiler-1 walk-windows byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3810 (byte-defop-compiler-1 get-window-with-predicate byte-compile-funarg) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3811 |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3812 (byte-defop-compiler-1 map byte-compile-funarg-2) |
|
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3813 (byte-defop-compiler-1 map-into byte-compile-funarg-2) |
|
4743
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3814 (byte-defop-compiler-1 apropos-internal byte-compile-funarg-2) |
|
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3815 (byte-defop-compiler-1 sort byte-compile-sort) |
|
4743
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3816 (byte-defop-compiler-1 sort* byte-compile-funarg-2) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3817 (byte-defop-compiler-1 stable-sort byte-compile-funarg-2) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3818 (byte-defop-compiler-1 substitute-if byte-compile-funarg-2) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3819 (byte-defop-compiler-1 substitute-if-not byte-compile-funarg-2) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3820 (byte-defop-compiler-1 nsubstitute-if byte-compile-funarg-2) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3821 (byte-defop-compiler-1 nsubstitute-if-not byte-compile-funarg-2) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3822 (byte-defop-compiler-1 subst-if byte-compile-funarg-2) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3823 (byte-defop-compiler-1 subst-if-not byte-compile-funarg-2) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3824 (byte-defop-compiler-1 nsubst-if byte-compile-funarg-2) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3825 (byte-defop-compiler-1 nsubst-if-not byte-compile-funarg-2) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3826 |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3827 (byte-defop-compiler-1 merge byte-compile-funarg-4) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3828 |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3829 (byte-defop-compiler-1 call-with-condition-handler byte-compile-funarg-1-2) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3830 (byte-defop-compiler-1 mapcar-extents byte-compile-funarg-1-2) |
|
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3831 |
| 428 | 3832 (byte-defop-compiler-1 let) |
| 3833 (byte-defop-compiler-1 let*) | |
| 3834 | |
|
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3835 (byte-defop-compiler-1 integerp) |
|
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3836 (byte-defop-compiler-1 fillarray) |
|
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3837 |
| 428 | 3838 (defun byte-compile-progn (form) |
| 3839 (byte-compile-body-do-effect (cdr form))) | |
| 3840 | |
| 3841 (defun byte-compile-prog1 (form) | |
| 3842 (setq form (cdr form)) | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3843 ;; #'prog1 never returns multiple values: |
|
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
3844 (byte-compile-form-do-effect `(or ,(pop form) nil)) |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3845 (byte-compile-body form t)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3846 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3847 (defun byte-compile-multiple-value-prog1 (form) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3848 (setq form (cdr form)) |
| 428 | 3849 (byte-compile-form-do-effect (pop form)) |
| 3850 (byte-compile-body form t)) | |
| 3851 | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3852 (defun byte-compile-values (form) |
|
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
3853 (if (= 2 (length form)) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
3854 (if (byte-compile-constp (second form)) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
3855 (byte-compile-form-do-effect (second form)) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
3856 ;; #'or compiles to bytecode, #'values doesn't: |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
3857 (byte-compile-form-do-effect `(or ,(second form) nil))) |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3858 (byte-compile-normal-call form))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3859 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3860 (defun byte-compile-values-list (form) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3861 (if (and (= 2 (length form)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3862 (or (null (second form)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3863 (and (consp (second form)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3864 (eq (car (second form)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3865 'quote) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3866 (not (symbolp (car-safe (cdr (second form)))))))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3867 (byte-compile-form-do-effect (car-safe (cdr (second form)))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3868 (byte-compile-normal-call form))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3869 |
| 428 | 3870 (defun byte-compile-prog2 (form) |
| 3871 (setq form (cdr form)) | |
| 3872 (byte-compile-form (pop form) t) | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3873 ;; #'prog2 never returns multiple values: |
|
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
3874 (byte-compile-form-do-effect `(or ,(pop form) nil)) |
| 428 | 3875 (byte-compile-body form t)) |
| 3876 | |
| 3877 (defmacro byte-compile-goto-if (cond discard tag) | |
| 3878 `(byte-compile-goto | |
| 3879 (if ,cond | |
| 3880 (if ,discard 'byte-goto-if-not-nil 'byte-goto-if-not-nil-else-pop) | |
| 3881 (if ,discard 'byte-goto-if-nil 'byte-goto-if-nil-else-pop)) | |
| 3882 ,tag)) | |
| 3883 | |
| 3884 (defun byte-compile-if (form) | |
| 3885 (byte-compile-form (car (cdr form))) | |
| 3886 (if (null (nthcdr 3 form)) | |
| 3887 ;; No else-forms | |
| 3888 (let ((donetag (byte-compile-make-tag))) | |
| 3889 (byte-compile-goto-if nil for-effect donetag) | |
| 3890 (byte-compile-form (nth 2 form) for-effect) | |
| 3891 (byte-compile-out-tag donetag)) | |
| 3892 (let ((donetag (byte-compile-make-tag)) (elsetag (byte-compile-make-tag))) | |
| 3893 (byte-compile-goto 'byte-goto-if-nil elsetag) | |
| 3894 (byte-compile-form (nth 2 form) for-effect) | |
| 3895 (byte-compile-goto 'byte-goto donetag) | |
| 3896 (byte-compile-out-tag elsetag) | |
| 3897 (byte-compile-body (cdr (cdr (cdr form))) for-effect) | |
| 3898 (byte-compile-out-tag donetag))) | |
| 3899 (setq for-effect nil)) | |
| 3900 | |
| 3901 (defun byte-compile-cond (clauses) | |
| 3902 (let ((donetag (byte-compile-make-tag)) | |
| 3903 nexttag clause) | |
| 3904 (while (setq clauses (cdr clauses)) | |
| 3905 (setq clause (car clauses)) | |
| 3906 (cond ((or (eq (car clause) t) | |
| 3907 (and (eq (car-safe (car clause)) 'quote) | |
| 3908 (car-safe (cdr-safe (car clause))))) | |
| 3909 ;; Unconditional clause | |
| 3910 (setq clause (cons t clause) | |
| 3911 clauses nil)) | |
| 3912 ((cdr clauses) | |
| 3913 (byte-compile-form (car clause)) | |
| 3914 (if (null (cdr clause)) | |
| 3915 ;; First clause is a singleton. | |
| 3916 (byte-compile-goto-if t for-effect donetag) | |
| 3917 (setq nexttag (byte-compile-make-tag)) | |
| 3918 (byte-compile-goto 'byte-goto-if-nil nexttag) | |
| 3919 (byte-compile-body (cdr clause) for-effect) | |
| 3920 (byte-compile-goto 'byte-goto donetag) | |
| 3921 (byte-compile-out-tag nexttag))))) | |
| 3922 ;; Last clause | |
| 3923 (and (cdr clause) (not (eq (car clause) t)) | |
| 3924 (progn (byte-compile-form (car clause)) | |
| 3925 (byte-compile-goto-if nil for-effect donetag) | |
| 3926 (setq clause (cdr clause)))) | |
| 3927 (byte-compile-body-do-effect clause) | |
| 3928 (byte-compile-out-tag donetag))) | |
| 3929 | |
| 3930 (defun byte-compile-and (form) | |
| 3931 (let ((failtag (byte-compile-make-tag)) | |
| 3932 (args (cdr form))) | |
| 3933 (if (null args) | |
| 3934 (byte-compile-form-do-effect t) | |
| 3935 (while (cdr args) | |
| 3936 (byte-compile-form (car args)) | |
| 3937 (byte-compile-goto-if nil for-effect failtag) | |
| 3938 (setq args (cdr args))) | |
| 3939 (byte-compile-form-do-effect (car args)) | |
| 3940 (byte-compile-out-tag failtag)))) | |
| 3941 | |
| 3942 (defun byte-compile-or (form) | |
| 3943 (let ((wintag (byte-compile-make-tag)) | |
| 3944 (args (cdr form))) | |
| 3945 (if (null args) | |
| 3946 (byte-compile-form-do-effect nil) | |
| 3947 (while (cdr args) | |
| 3948 (byte-compile-form (car args)) | |
| 3949 (byte-compile-goto-if t for-effect wintag) | |
| 3950 (setq args (cdr args))) | |
| 3951 (byte-compile-form-do-effect (car args)) | |
| 3952 (byte-compile-out-tag wintag)))) | |
| 3953 | |
| 3954 (defun byte-compile-while (form) | |
| 3955 (let ((endtag (byte-compile-make-tag)) | |
| 3956 (looptag (byte-compile-make-tag))) | |
| 3957 (byte-compile-out-tag looptag) | |
| 3958 (byte-compile-form (car (cdr form))) | |
| 3959 (byte-compile-goto-if nil for-effect endtag) | |
| 3960 (byte-compile-body (cdr (cdr form)) t) | |
| 3961 (byte-compile-goto 'byte-goto looptag) | |
| 3962 (byte-compile-out-tag endtag) | |
| 3963 (setq for-effect nil))) | |
| 3964 | |
| 3965 (defun byte-compile-funcall (form) | |
|
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
3966 (mapc 'byte-compile-form (cdr form)) |
| 428 | 3967 (byte-compile-out 'byte-call (length (cdr (cdr form))))) |
| 3968 | |
| 3969 | |
| 3970 (defun byte-compile-let (form) | |
| 3971 ;; First compute the binding values in the old scope. | |
| 3972 (let ((varlist (car (cdr form)))) | |
| 3973 (while varlist | |
| 3974 (if (consp (car varlist)) | |
| 3975 (byte-compile-form (car (cdr (car varlist)))) | |
| 3976 (byte-compile-push-constant nil)) | |
| 3977 (setq varlist (cdr varlist)))) | |
| 3978 (let ((byte-compile-bound-variables | |
| 3979 (cons 'new-scope byte-compile-bound-variables)) | |
| 3980 (varlist (reverse (car (cdr form)))) | |
| 3981 (extra-flags | |
| 3982 ;; If this let is of the form (let (...) (byte-code ...)) | |
| 3983 ;; then assume that it is the result of a transformation of | |
| 3984 ;; ((lambda (...) (byte-code ... )) ...) and thus compile | |
| 3985 ;; the variable bindings as if they were arglist bindings | |
| 3986 ;; (which matters for what warnings.) | |
| 3987 (if (eq 'byte-code (car-safe (nth 2 form))) | |
| 3988 byte-compile-arglist-bit | |
| 3989 nil))) | |
| 3990 (while varlist | |
| 3991 (byte-compile-variable-ref 'byte-varbind | |
| 3992 (if (consp (car varlist)) | |
| 3993 (car (car varlist)) | |
| 3994 (car varlist)) | |
| 3995 extra-flags) | |
| 3996 (setq varlist (cdr varlist))) | |
| 3997 (byte-compile-body-do-effect (cdr (cdr form))) | |
| 3998 (if (memq 'unused-vars byte-compile-warnings) | |
| 3999 ;; done compiling in this scope, warn now. | |
| 4000 (byte-compile-warn-about-unused-variables)) | |
| 4001 (byte-compile-out 'byte-unbind (length (car (cdr form)))))) | |
| 4002 | |
| 4003 (defun byte-compile-let* (form) | |
| 4004 (let ((byte-compile-bound-variables | |
| 4005 (cons 'new-scope byte-compile-bound-variables)) | |
| 4006 (varlist (copy-sequence (car (cdr form))))) | |
| 4007 (while varlist | |
| 4008 (if (atom (car varlist)) | |
| 4009 (byte-compile-push-constant nil) | |
| 4010 (byte-compile-form (car (cdr (car varlist)))) | |
| 4011 (setcar varlist (car (car varlist)))) | |
| 4012 (byte-compile-variable-ref 'byte-varbind (car varlist)) | |
| 4013 (setq varlist (cdr varlist))) | |
| 4014 (byte-compile-body-do-effect (cdr (cdr form))) | |
| 4015 (if (memq 'unused-vars byte-compile-warnings) | |
| 4016 ;; done compiling in this scope, warn now. | |
| 4017 (byte-compile-warn-about-unused-variables)) | |
| 4018 (byte-compile-out 'byte-unbind (length (car (cdr form)))))) | |
| 4019 | |
|
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4020 ;; We've renamed the integerp bytecode to fixnump, and changed its semantics |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4021 ;; accordingly. This means #'integerp itself can't be as fast as it used to |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4022 ;; be, since it no longer has a bytecode to itself. As it happens, though, |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4023 ;; most of the non-core calls to #'integerp are in contexts where it is |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4024 ;; either going to receive a fixnum, or something non-numeric entirely; the |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4025 ;; contexts where it needs to distinguish between an integer and a float are |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4026 ;; very rare. So, we can have (integerp X) compile to: |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4027 ;; |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4028 ;; (or (fixnump X) (and (numberp X) (funcall #'integerp X))) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4029 ;; |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4030 ;; without the multiple evaluation of X, and where #'fixnump and #'numberp |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4031 ;; both have bytecodes. We ignore for-effect, because byte-optimize.el will |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4032 ;; delete this call in its presence. |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4033 ;; |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4034 ;; This approach is byte-code compatible with 21.4 and with earlier 21.5 |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4035 ;; (except that earlier 21.5 with bignum support will confuse Bfixnump and |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4036 ;; Bintegerp; which it did in dealing with byte-compiled code from 21.4 |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4037 ;; anyway). |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4038 |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4039 (defun byte-compile-integerp (form) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4040 (if (/= 2 (length form)) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4041 (byte-compile-subr-wrong-args form 1) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4042 (let ((donetag (byte-compile-make-tag)) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4043 (wintag (byte-compile-make-tag)) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4044 (failtag (byte-compile-make-tag))) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4045 (byte-compile-constant 'integerp) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4046 (byte-compile-form (second form)) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4047 (byte-compile-out 'byte-dup 0) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4048 (byte-compile-out 'byte-fixnump 0) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4049 (byte-compile-goto 'byte-goto-if-not-nil wintag) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4050 (byte-compile-out 'byte-dup 0) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4051 (byte-compile-out 'byte-numberp 0) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4052 (byte-compile-goto 'byte-goto-if-nil failtag) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4053 (byte-compile-out 'byte-call 1) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4054 ;; At this point, the only thing from this function remaining on the |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4055 ;; stack is the return value of the called #'integerp, which reflects |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4056 ;; exactly what we want. Go directly to donetag, do not discard |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4057 ;; anything. |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4058 (byte-compile-goto 'byte-goto donetag) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4059 (byte-compile-out-tag failtag) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4060 (byte-compile-discard) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4061 (byte-compile-discard) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4062 (byte-compile-constant nil) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4063 (byte-compile-goto 'byte-goto donetag) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4064 (byte-compile-out-tag wintag) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4065 (byte-compile-discard) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4066 (byte-compile-discard) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4067 (byte-compile-constant t) |
|
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4068 (byte-compile-out-tag donetag)))) |
| 428 | 4069 |
| 4070 ;;(byte-defop-compiler-1 /= byte-compile-negated) | |
| 4071 (byte-defop-compiler-1 atom byte-compile-negated) | |
| 4072 (byte-defop-compiler-1 nlistp byte-compile-negated) | |
| 4073 | |
| 4074 ;;(put '/= 'byte-compile-negated-op '=) | |
| 4075 (put 'atom 'byte-compile-negated-op 'consp) | |
| 4076 (put 'nlistp 'byte-compile-negated-op 'listp) | |
| 4077 | |
| 4078 (defun byte-compile-negated (form) | |
| 4079 (byte-compile-form-do-effect (byte-compile-negation-optimizer form))) | |
| 4080 | |
| 4081 ;; Even when optimization is off, atom is optimized to (not (consp ...)). | |
| 4082 (defun byte-compile-negation-optimizer (form) | |
| 4083 ;; an optimizer for forms where <form1> is less efficient than (not <form2>) | |
| 4084 (list 'not | |
| 4085 (cons (or (get (car form) 'byte-compile-negated-op) | |
| 4086 (error | |
| 4087 "Compiler error: `%s' has no `byte-compile-negated-op' property" | |
| 4088 (car form))) | |
| 4089 (cdr form)))) | |
| 4090 | |
|
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4885
diff
changeset
|
4091 ;;; other tricky macro-like special-operators |
| 428 | 4092 |
| 4093 (byte-defop-compiler-1 catch) | |
| 4094 (byte-defop-compiler-1 unwind-protect) | |
| 4095 (byte-defop-compiler-1 condition-case) | |
| 4096 (byte-defop-compiler-1 save-excursion) | |
| 4097 (byte-defop-compiler-1 save-current-buffer) | |
| 4098 (byte-defop-compiler-1 save-restriction) | |
| 4099 (byte-defop-compiler-1 with-output-to-temp-buffer) | |
| 4100 ;; no track-mouse. | |
| 4101 | |
| 4102 (defun byte-compile-catch (form) | |
| 4103 (byte-compile-form (car (cdr form))) | |
| 4104 (byte-compile-push-constant | |
| 4105 (byte-compile-top-level (cons 'progn (cdr (cdr form))) for-effect)) | |
| 4106 (byte-compile-out 'byte-catch 0)) | |
| 4107 | |
| 4108 (defun byte-compile-unwind-protect (form) | |
| 4109 (byte-compile-push-constant | |
| 4110 (byte-compile-top-level-body (cdr (cdr form)) t)) | |
| 4111 (byte-compile-out 'byte-unwind-protect 0) | |
| 4112 (byte-compile-form-do-effect (car (cdr form))) | |
| 4113 (byte-compile-out 'byte-unbind 1)) | |
| 4114 | |
| 4115 ;;(defun byte-compile-track-mouse (form) | |
| 4116 ;; (byte-compile-form | |
| 4117 ;; (list | |
| 4118 ;; 'funcall | |
| 4119 ;; (list 'quote | |
| 4120 ;; (list 'lambda nil | |
| 4121 ;; (cons 'track-mouse | |
| 4122 ;; (byte-compile-top-level-body (cdr form)))))))) | |
| 4123 | |
| 4124 (defun byte-compile-condition-case (form) | |
| 4125 (let* ((var (nth 1 form)) | |
| 4126 (byte-compile-bound-variables | |
| 4127 (if var | |
| 4128 (cons (cons var 0) | |
| 4129 (cons 'new-scope byte-compile-bound-variables)) | |
| 4130 (cons 'new-scope byte-compile-bound-variables)))) | |
| 4131 (or (symbolp var) | |
| 4132 (byte-compile-warn | |
| 4133 "%s is not a variable-name or nil (in condition-case)" | |
| 4134 (prin1-to-string var))) | |
| 4135 (byte-compile-push-constant var) | |
| 4136 (byte-compile-push-constant (byte-compile-top-level | |
| 4137 (nth 2 form) for-effect)) | |
| 4138 (let ((clauses (cdr (cdr (cdr form)))) | |
| 4139 compiled-clauses) | |
| 4140 (while clauses | |
| 4141 (let* ((clause (car clauses)) | |
| 4142 (condition (car clause))) | |
| 4143 (cond ((not (or (symbolp condition) | |
| 4144 (and (listp condition) | |
| 4145 (let ((syms condition) (ok t)) | |
| 4146 (while syms | |
| 4147 (if (not (symbolp (car syms))) | |
| 4148 (setq ok nil)) | |
| 4149 (setq syms (cdr syms))) | |
| 4150 ok)))) | |
| 4151 (byte-compile-warn | |
| 4152 "%s is not a symbol naming a condition or a list of such (in condition-case)" | |
| 4153 (prin1-to-string condition))) | |
| 4154 ;; ((not (or (eq condition 't) | |
| 4155 ;; (and (stringp (get condition 'error-message)) | |
| 4156 ;; (consp (get condition 'error-conditions))))) | |
| 4157 ;; (byte-compile-warn | |
| 4158 ;; "%s is not a known condition name (in condition-case)" | |
| 4159 ;; condition)) | |
| 4160 ) | |
| 4161 (setq compiled-clauses | |
| 4162 (cons (cons condition | |
| 4163 (byte-compile-top-level-body | |
| 4164 (cdr clause) for-effect)) | |
| 4165 compiled-clauses))) | |
| 4166 (setq clauses (cdr clauses))) | |
| 4167 (byte-compile-push-constant (nreverse compiled-clauses))) | |
| 4168 (if (memq 'unused-vars byte-compile-warnings) | |
| 4169 ;; done compiling in this scope, warn now. | |
| 4170 (byte-compile-warn-about-unused-variables)) | |
| 4171 (byte-compile-out 'byte-condition-case 0))) | |
| 4172 | |
| 4173 | |
| 4174 (defun byte-compile-save-excursion (form) | |
| 4175 (byte-compile-out 'byte-save-excursion 0) | |
| 4176 (byte-compile-body-do-effect (cdr form)) | |
| 4177 (byte-compile-out 'byte-unbind 1)) | |
| 4178 | |
| 4179 (defun byte-compile-save-restriction (form) | |
| 4180 (byte-compile-out 'byte-save-restriction 0) | |
| 4181 (byte-compile-body-do-effect (cdr form)) | |
| 4182 (byte-compile-out 'byte-unbind 1)) | |
| 4183 | |
| 4184 (defun byte-compile-save-current-buffer (form) | |
| 4185 (if (byte-compile-version-cond byte-compile-emacs19-compatibility) | |
|
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4885
diff
changeset
|
4186 ;; `save-current-buffer' special operator is not available in XEmacs 19. |
| 428 | 4187 (byte-compile-form |
| 4188 `(let ((_byte_compiler_save_buffer_emulation_closure_ (current-buffer))) | |
| 4189 (unwind-protect | |
| 4190 (progn ,@(cdr form)) | |
| 4191 (and (buffer-live-p _byte_compiler_save_buffer_emulation_closure_) | |
| 4192 (set-buffer _byte_compiler_save_buffer_emulation_closure_))))) | |
| 4193 (byte-compile-out 'byte-save-current-buffer 0) | |
| 4194 (byte-compile-body-do-effect (cdr form)) | |
| 4195 (byte-compile-out 'byte-unbind 1))) | |
| 4196 | |
| 4197 (defun byte-compile-with-output-to-temp-buffer (form) | |
| 4198 (byte-compile-form (car (cdr form))) | |
| 4199 (byte-compile-out 'byte-temp-output-buffer-setup 0) | |
| 4200 (byte-compile-body (cdr (cdr form))) | |
| 4201 (byte-compile-out 'byte-temp-output-buffer-show 0)) | |
| 4202 | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4203 (defun byte-compile-multiple-value-call (form) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4204 (if (< (length form) 2) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4205 (progn |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4206 (byte-compile-warn-wrong-args form 1) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4207 (byte-compile-normal-call |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4208 `(signal 'wrong-number-of-arguments '(,(car form) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4209 ,(length (cdr form)))))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4210 (setq form (cdr form)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4211 (byte-compile-form (car form)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4212 (byte-compile-push-constant 0) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4213 (byte-compile-variable-ref 'byte-varref 'multiple-values-limit) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4214 ;; bind-multiple-value-limits leaves two existing values on the stack, |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4215 ;; and pushes a new value, the specpdl_depth() at the time it was |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4216 ;; called. |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4217 (byte-compile-out 'byte-bind-multiple-value-limits 0) |
|
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
4218 (mapc 'byte-compile-form (cdr form)) |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4219 ;; Most of the other code puts this sort of value in the program stream, |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4220 ;; not pushing it on the stack. |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4221 (byte-compile-push-constant (+ 3 (length form))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4222 (byte-compile-out 'byte-multiple-value-call (+ 3 (length form))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4223 (pushnew '(subrp (symbol-function 'multiple-value-call)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4224 byte-compile-checks-on-load |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4225 :test #'equal))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4226 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4227 (defun byte-compile-multiple-value-list-internal (form) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4228 (if (/= 4 (length form)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4229 (progn |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4230 (byte-compile-warn-wrong-args form 3) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4231 (byte-compile-normal-call |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4232 `(signal 'wrong-number-of-arguments '(,(car form) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4233 ,(length (cdr form)))))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4234 (byte-compile-form (nth 1 form)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4235 (byte-compile-form (nth 2 form)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4236 (byte-compile-out 'byte-bind-multiple-value-limits 0) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4237 (byte-compile-form (nth 3 form)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4238 (byte-compile-out (get (car form) 'byte-opcode) 0) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4239 (pushnew '(subrp (symbol-function 'multiple-value-call)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4240 byte-compile-checks-on-load |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4241 :test #'equal))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4242 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4243 (defun byte-compile-throw (form) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4244 ;; We can't use byte-compile-two-args for throw because in the event that |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4245 ;; the form does not have two args, it tries to #'funcall it expecting a |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4246 ;; runtime wrong-number-of-arguments error. Now that #'throw is a special |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4247 ;; form, it provokes an invalid-function error instead (or at least it |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4248 ;; should; there's a kludge around for the moment in eval.c that avoids |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4249 ;; that, but this file should not assume that that will always be there). |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4250 (if (/= 2 (length (cdr form))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4251 (progn |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4252 (byte-compile-warn-wrong-args form 2) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4253 (byte-compile-normal-call |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4254 `(signal 'wrong-number-of-arguments '(,(car form) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4255 ,(length (cdr form)))))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4256 (byte-compile-form (nth 1 form)) ;; Push the arguments |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4257 (byte-compile-form (nth 2 form)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4258 (byte-compile-out (get (car form) 'byte-opcode) 0) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4259 (pushnew '(null (function-max-args 'throw)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4260 byte-compile-checks-on-load |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4261 :test #'equal))) |
| 428 | 4262 |
| 4263 ;;; top-level forms elsewhere | |
| 4264 | |
| 4265 (byte-defop-compiler-1 defun) | |
| 4266 (byte-defop-compiler-1 defmacro) | |
| 4267 (byte-defop-compiler-1 defvar) | |
| 442 | 4268 (byte-defop-compiler-1 defvar byte-compile-defvar-or-defconst) |
| 4269 (byte-defop-compiler-1 defconst byte-compile-defvar-or-defconst) | |
| 428 | 4270 (byte-defop-compiler-1 autoload) |
| 4271 ;; According to Mly this can go now that lambda is a macro | |
| 4272 ;(byte-defop-compiler-1 lambda byte-compile-lambda-form) | |
| 4273 (byte-defop-compiler-1 defalias) | |
| 4274 (byte-defop-compiler-1 define-function) | |
| 4275 | |
| 4276 (defun byte-compile-defun (form) | |
| 4277 ;; This is not used for file-level defuns with doc strings. | |
| 4278 (byte-compile-two-args ; Use this to avoid byte-compile-fset's warning. | |
| 4279 (list 'fset (list 'quote (nth 1 form)) | |
| 4280 (byte-compile-byte-code-maker | |
| 4281 (byte-compile-lambda (cons 'lambda (cdr (cdr form))))))) | |
| 4282 (byte-compile-discard) | |
| 4283 (byte-compile-constant (nth 1 form))) | |
| 4284 | |
| 4285 (defun byte-compile-defmacro (form) | |
| 4286 ;; This is not used for file-level defmacros with doc strings. | |
| 4287 (byte-compile-body-do-effect | |
| 4288 (list (list 'fset (list 'quote (nth 1 form)) | |
| 4289 (let ((code (byte-compile-byte-code-maker | |
| 4290 (byte-compile-lambda | |
| 4291 (cons 'lambda (cdr (cdr form))))))) | |
| 4292 (if (eq (car-safe code) 'make-byte-code) | |
| 4293 (list 'cons ''macro code) | |
| 4294 (list 'quote (cons 'macro (eval code)))))) | |
| 4295 (list 'quote (nth 1 form))))) | |
| 4296 | |
| 442 | 4297 (defun byte-compile-defvar-or-defconst (form) |
| 4298 ;; This is not used for file-level defvar/defconsts with doc strings: | |
| 4299 ;; byte-compile-file-form-defvar-or-defconst will be used in that case. | |
| 4300 ;; (defvar|defconst VAR [VALUE [DOCSTRING]]) | |
| 4301 (let ((fun (nth 0 form)) | |
| 4302 (var (nth 1 form)) | |
| 428 | 4303 (value (nth 2 form)) |
| 4304 (string (nth 3 form))) | |
| 442 | 4305 (when (> (length form) 4) |
| 4306 (byte-compile-warn | |
| 4307 "%s %s called with %d arguments, but accepts only %s" | |
| 4308 fun var (length (cdr form)) 3)) | |
| 4309 (when (memq 'free-vars byte-compile-warnings) | |
| 4310 (push (cons var byte-compile-global-bit) byte-compile-bound-variables)) | |
| 428 | 4311 (byte-compile-body-do-effect |
| 442 | 4312 (list |
| 4313 ;; Put the defined variable in this library's load-history entry | |
| 444 | 4314 ;; just as a real defvar would, but only in top-level forms with values. |
| 4315 (when (and (> (length form) 2) | |
| 4316 (null byte-compile-current-form)) | |
| 442 | 4317 `(push ',var current-load-list)) |
| 4318 (when (> (length form) 3) | |
| 4319 (when (and string (not (stringp string))) | |
| 4320 (byte-compile-warn "Third arg to %s %s is not a string: %s" | |
| 4321 fun var string)) | |
| 4322 `(put ',var 'variable-documentation ,string)) | |
| 4323 (if (cdr (cdr form)) ; `value' provided | |
| 4324 (if (eq fun 'defconst) | |
| 4325 ;; `defconst' sets `var' unconditionally. | |
| 4326 `(setq ,var ,value) | |
| 4327 ;; `defvar' sets `var' only when unbound. | |
| 1672 | 4328 `(if (not (default-boundp ',var)) (set-default ',var ,value)))) |
| 442 | 4329 `',var)))) |
| 428 | 4330 |
| 4331 (defun byte-compile-autoload (form) | |
| 4332 (and (byte-compile-constp (nth 1 form)) | |
| 4333 (byte-compile-constp (nth 5 form)) | |
| 4334 (memq (eval (nth 5 form)) '(t macro)) ; macro-p | |
| 4335 (not (fboundp (eval (nth 1 form)))) | |
| 4336 (byte-compile-warn | |
| 4337 "The compiler ignores `autoload' except at top level. You should | |
| 4338 probably put the autoload of the macro `%s' at top-level." | |
| 4339 (eval (nth 1 form)))) | |
| 4340 (byte-compile-normal-call form)) | |
| 4341 | |
| 4342 ;; Lambda's in valid places are handled as special cases by various code. | |
| 4343 ;; The ones that remain are errors. | |
| 4344 ;; According to Mly this can go now that lambda is a macro | |
| 4345 ;(defun byte-compile-lambda-form (form) | |
| 4346 ; (byte-compile-warn | |
| 4347 ; "`lambda' used in function position is invalid: probably you mean #'%s" | |
| 4348 ; (let ((print-escape-newlines t) | |
| 4349 ; (print-level 4) | |
| 4350 ; (print-length 4)) | |
| 4351 ; (prin1-to-string form))) | |
| 4352 ; (byte-compile-normal-call | |
| 4353 ; (list 'signal ''error | |
| 4354 ; (list 'quote (list "`lambda' used in function position" form))))) | |
| 4355 | |
| 4356 ;; Compile normally, but deal with warnings for the function being defined. | |
| 4357 (defun byte-compile-defalias (form) | |
| 4358 (if (and (consp (cdr form)) (consp (nth 1 form)) | |
| 4359 (eq (car (nth 1 form)) 'quote) | |
| 4360 (consp (cdr (nth 1 form))) | |
| 4361 (symbolp (nth 1 (nth 1 form))) | |
| 4362 (consp (nthcdr 2 form)) | |
| 4363 (consp (nth 2 form)) | |
| 4364 (eq (car (nth 2 form)) 'quote) | |
| 4365 (consp (cdr (nth 2 form))) | |
| 4366 (symbolp (nth 1 (nth 2 form)))) | |
| 4367 (progn | |
| 4368 (byte-compile-defalias-warn (nth 1 (nth 1 form)) | |
| 4369 (nth 1 (nth 2 form))) | |
| 4370 (setq byte-compile-function-environment | |
| 4371 (cons (cons (nth 1 (nth 1 form)) | |
| 4372 (nth 1 (nth 2 form))) | |
| 4373 byte-compile-function-environment)))) | |
| 4374 (byte-compile-normal-call form)) | |
| 4375 | |
| 4376 (defun byte-compile-define-function (form) | |
| 4377 (byte-compile-defalias form)) | |
| 4378 | |
| 4379 ;; Turn off warnings about prior calls to the function being defalias'd. | |
| 4380 ;; This could be smarter and compare those calls with | |
| 4381 ;; the function it is being aliased to. | |
| 4382 (defun byte-compile-defalias-warn (new alias) | |
| 4383 (let ((calls (assq new byte-compile-unresolved-functions))) | |
| 4384 (if calls | |
| 4385 (setq byte-compile-unresolved-functions | |
| 4386 (delq calls byte-compile-unresolved-functions))))) | |
| 4387 | |
| 4388 ;;; tags | |
| 4389 | |
| 4390 ;; Note: Most operations will strip off the 'TAG, but it speeds up | |
| 4391 ;; optimization to have the 'TAG as a part of the tag. | |
| 4392 ;; Tags will be (TAG . (tag-number . stack-depth)). | |
| 4393 (defun byte-compile-make-tag () | |
| 4394 (list 'TAG (setq byte-compile-tag-number (1+ byte-compile-tag-number)))) | |
| 4395 | |
| 4396 | |
| 4397 (defun byte-compile-out-tag (tag) | |
| 4398 (push tag byte-compile-output) | |
| 4399 (if (cdr (cdr tag)) | |
| 4400 (progn | |
| 4401 ;; ## remove this someday | |
| 4402 (and byte-compile-depth | |
| 4403 (not (= (cdr (cdr tag)) byte-compile-depth)) | |
| 4404 (error "Compiler bug: depth conflict at tag %d" (car (cdr tag)))) | |
| 4405 (setq byte-compile-depth (cdr (cdr tag)))) | |
| 4406 (setcdr (cdr tag) byte-compile-depth))) | |
| 4407 | |
| 4408 (defun byte-compile-goto (opcode tag) | |
| 4409 (push (cons opcode tag) byte-compile-output) | |
| 4410 (setcdr (cdr tag) (if (memq opcode byte-goto-always-pop-ops) | |
| 4411 (1- byte-compile-depth) | |
| 4412 byte-compile-depth)) | |
| 4413 (setq byte-compile-depth (and (not (eq opcode 'byte-goto)) | |
| 4414 (1- byte-compile-depth)))) | |
| 4415 | |
| 4416 (defun byte-compile-out (opcode offset) | |
| 4417 (push (cons opcode offset) byte-compile-output) | |
| 4418 (case opcode | |
| 4419 (byte-call | |
| 4420 (setq byte-compile-depth (- byte-compile-depth offset))) | |
| 4421 (byte-return | |
| 4422 ;; This is actually an unnecessary case, because there should be | |
| 4423 ;; no more opcodes behind byte-return. | |
| 4424 (setq byte-compile-depth nil)) | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4425 (byte-multiple-value-call |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4426 (setq byte-compile-depth (- byte-compile-depth offset))) |
| 428 | 4427 (t |
| 4428 (setq byte-compile-depth (+ byte-compile-depth | |
| 4429 (or (aref byte-stack+-info | |
| 4430 (symbol-value opcode)) | |
| 4431 (- (1- offset)))) | |
| 4432 byte-compile-maxdepth (max byte-compile-depth | |
| 4433 byte-compile-maxdepth)))) | |
| 4434 ;;(if (< byte-compile-depth 0) (error "Compiler error: stack underflow")) | |
| 4435 ) | |
| 4436 | |
| 4437 | |
| 4438 ;;; call tree stuff | |
| 4439 | |
| 4440 (defun byte-compile-annotate-call-tree (form) | |
| 4441 (let (entry) | |
| 4442 ;; annotate the current call | |
| 4443 (if (setq entry (assq (car form) byte-compile-call-tree)) | |
| 4444 (or (memq byte-compile-current-form (nth 1 entry)) ;callers | |
| 4445 (setcar (cdr entry) | |
| 4446 (cons byte-compile-current-form (nth 1 entry)))) | |
| 4447 (push (list (car form) (list byte-compile-current-form) nil) | |
| 4448 byte-compile-call-tree)) | |
| 4449 ;; annotate the current function | |
| 4450 (if (setq entry (assq byte-compile-current-form byte-compile-call-tree)) | |
| 4451 (or (memq (car form) (nth 2 entry)) ;called | |
| 4452 (setcar (cdr (cdr entry)) | |
| 4453 (cons (car form) (nth 2 entry)))) | |
| 4454 (push (list byte-compile-current-form nil (list (car form))) | |
| 4455 byte-compile-call-tree)))) | |
| 4456 | |
| 4457 ;; Renamed from byte-compile-report-call-tree | |
| 4458 ;; to avoid interfering with completion of byte-compile-file. | |
| 4459 ;;;###autoload | |
| 4460 (defun display-call-tree (&optional filename) | |
| 4461 "Display a call graph of a specified file. | |
| 4462 This lists which functions have been called, what functions called | |
| 4463 them, and what functions they call. The list includes all functions | |
| 4464 whose definitions have been compiled in this Emacs session, as well as | |
| 4465 all functions called by those functions. | |
| 4466 | |
| 4467 The call graph does not include macros, inline functions, or | |
| 4468 primitives that the byte-code interpreter knows about directly \(eq, | |
| 4469 cons, etc.\). | |
| 4470 | |
| 4471 The call tree also lists those functions which are not known to be called | |
| 4472 \(that is, to which no calls have been compiled\), and which cannot be | |
| 4473 invoked interactively." | |
| 4474 (interactive) | |
| 4475 (message "Generating call tree...") | |
| 4476 (with-output-to-temp-buffer "*Call-Tree*" | |
| 4477 (set-buffer "*Call-Tree*") | |
| 4478 (erase-buffer) | |
| 4479 (message "Generating call tree... (sorting on %s)" | |
| 4480 byte-compile-call-tree-sort) | |
| 4481 (insert "Call tree for " | |
| 4482 (cond ((null byte-compile-current-file) (or filename "???")) | |
| 4483 ((stringp byte-compile-current-file) | |
| 4484 byte-compile-current-file) | |
| 4485 (t (buffer-name byte-compile-current-file))) | |
| 4486 " sorted on " | |
| 4487 (prin1-to-string byte-compile-call-tree-sort) | |
| 4488 ":\n\n") | |
| 4489 (if byte-compile-call-tree-sort | |
| 4490 (setq byte-compile-call-tree | |
| 4491 (sort byte-compile-call-tree | |
| 4492 (cond | |
| 4493 ((eq byte-compile-call-tree-sort 'callers) | |
| 4494 #'(lambda (x y) (< (length (nth 1 x)) | |
| 4495 (length (nth 1 y))))) | |
| 4496 ((eq byte-compile-call-tree-sort 'calls) | |
| 4497 #'(lambda (x y) (< (length (nth 2 x)) | |
| 4498 (length (nth 2 y))))) | |
| 4499 ((eq byte-compile-call-tree-sort 'calls+callers) | |
| 4500 #'(lambda (x y) (< (+ (length (nth 1 x)) | |
| 4501 (length (nth 2 x))) | |
| 4502 (+ (length (nth 1 y)) | |
| 4503 (length (nth 2 y)))))) | |
| 4504 ((eq byte-compile-call-tree-sort 'name) | |
| 4505 #'(lambda (x y) (string< (car x) | |
| 4506 (car y)))) | |
| 4507 (t (error | |
| 4508 "`byte-compile-call-tree-sort': `%s' - unknown sort mode" | |
| 4509 byte-compile-call-tree-sort)))))) | |
| 4510 (message "Generating call tree...") | |
| 4511 (let ((rest byte-compile-call-tree) | |
| 4512 (b (current-buffer)) | |
| 4513 f p | |
| 4514 callers calls) | |
| 4515 (while rest | |
| 4516 (prin1 (car (car rest)) b) | |
| 4517 (setq callers (nth 1 (car rest)) | |
| 4518 calls (nth 2 (car rest))) | |
| 4519 (insert "\t" | |
| 4520 (cond ((not (fboundp (setq f (car (car rest))))) | |
| 4521 (if (null f) | |
| 4522 " <top level>";; shouldn't insert nil then, actually -sk | |
| 4523 " <not defined>")) | |
| 4524 ((subrp (setq f (symbol-function f))) | |
| 4525 " <subr>") | |
| 4526 ((symbolp f) | |
| 4527 (format " ==> %s" f)) | |
| 4528 ((compiled-function-p f) | |
| 4529 "<compiled function>") | |
| 4530 ((not (consp f)) | |
| 4531 "<malformed function>") | |
| 4532 ((eq 'macro (car f)) | |
| 4533 (if (or (compiled-function-p (cdr f)) | |
| 4534 (assq 'byte-code (cdr (cdr (cdr f))))) | |
| 4535 " <compiled macro>" | |
| 4536 " <macro>")) | |
| 4537 ((assq 'byte-code (cdr (cdr f))) | |
| 4538 "<compiled lambda>") | |
| 4539 ((eq 'lambda (car f)) | |
| 4540 "<function>") | |
| 4541 (t "???")) | |
| 4542 (format " (%d callers + %d calls = %d)" | |
| 4543 ;; Does the optimizer eliminate common subexpressions?-sk | |
| 4544 (length callers) | |
| 4545 (length calls) | |
| 4546 (+ (length callers) (length calls))) | |
| 4547 "\n") | |
| 4548 (if callers | |
| 4549 (progn | |
| 4550 (insert " called by:\n") | |
| 4551 (setq p (point)) | |
| 4552 (insert " " (if (car callers) | |
| 4553 (mapconcat 'symbol-name callers ", ") | |
| 4554 "<top level>")) | |
| 4555 (let ((fill-prefix " ")) | |
| 4556 (fill-region-as-paragraph p (point))))) | |
| 4557 (if calls | |
| 4558 (progn | |
| 4559 (insert " calls:\n") | |
| 4560 (setq p (point)) | |
| 4561 (insert " " (mapconcat 'symbol-name calls ", ")) | |
| 4562 (let ((fill-prefix " ")) | |
| 4563 (fill-region-as-paragraph p (point))))) | |
| 4564 (insert "\n") | |
| 4565 (setq rest (cdr rest))) | |
| 4566 | |
| 4567 (message "Generating call tree...(finding uncalled functions...)") | |
| 4568 (setq rest byte-compile-call-tree) | |
| 4569 (let ((uncalled nil)) | |
| 4570 (while rest | |
| 4571 (or (nth 1 (car rest)) | |
| 4572 (null (setq f (car (car rest)))) | |
| 4573 (byte-compile-fdefinition f t) | |
| 4574 (commandp (byte-compile-fdefinition f nil)) | |
| 4575 (setq uncalled (cons f uncalled))) | |
| 4576 (setq rest (cdr rest))) | |
| 4577 (if uncalled | |
| 4578 (let ((fill-prefix " ")) | |
| 4579 (insert "Noninteractive functions not known to be called:\n ") | |
| 4580 (setq p (point)) | |
| 4581 (insert (mapconcat 'symbol-name (nreverse uncalled) ", ")) | |
| 4582 (fill-region-as-paragraph p (point))))) | |
| 4583 ) | |
| 4584 (message "Generating call tree...done.") | |
| 4585 )) | |
| 4586 | |
| 4587 | |
| 4588 ;;; by crl@newton.purdue.edu | |
| 4589 ;;; Only works noninteractively. | |
| 4590 ;;;###autoload | |
| 4591 (defun batch-byte-compile () | |
| 4592 "Run `byte-compile-file' on the files remaining on the command line. | |
| 4593 Use this from the command line, with `-batch'; | |
| 4594 it won't work in an interactive Emacs. | |
| 4595 Each file is processed even if an error occurred previously. | |
| 444 | 4596 For example, invoke \"xemacs -batch -f batch-byte-compile $emacs/ ~/*.el\"." |
| 428 | 4597 ;; command-line-args-left is what is left of the command line (from |
| 4598 ;; startup.el) | |
| 4599 (defvar command-line-args-left) ;Avoid 'free variable' warning | |
| 4600 (if (not noninteractive) | |
| 4601 (error "`batch-byte-compile' is to be used only with -batch")) | |
| 4602 (let ((error nil)) | |
| 4603 (while command-line-args-left | |
| 442 | 4604 (if (null (batch-byte-compile-one-file)) |
| 4605 (setq error t))) | |
| 428 | 4606 (message "Done") |
| 4607 (kill-emacs (if error 1 0)))) | |
| 4608 | |
| 442 | 4609 ;;;###autoload |
| 4610 (defun batch-byte-compile-one-file () | |
| 4611 "Run `byte-compile-file' on a single file remaining on the command line. | |
| 4612 Use this from the command line, with `-batch'; | |
| 4613 it won't work in an interactive Emacs." | |
| 4614 ;; command-line-args-left is what is left of the command line (from | |
| 4615 ;; startup.el) | |
| 4616 (defvar command-line-args-left) ;Avoid 'free variable' warning | |
| 4617 (if (not noninteractive) | |
| 4618 (error "`batch-byte-compile-one-file' is to be used only with -batch")) | |
| 4619 (let (error | |
| 4620 (file-to-process (car command-line-args-left))) | |
| 4621 (setq command-line-args-left (cdr command-line-args-left)) | |
| 4622 (if (file-directory-p (expand-file-name file-to-process)) | |
| 4623 (let ((files (directory-files file-to-process)) | |
| 4624 source dest) | |
| 4625 (while files | |
| 4626 (if (and (string-match emacs-lisp-file-regexp (car files)) | |
| 4627 (not (auto-save-file-name-p (car files))) | |
| 4628 (setq source (expand-file-name | |
| 4629 (car files) | |
| 4630 file-to-process)) | |
| 4631 (setq dest (byte-compile-dest-file source)) | |
| 4632 (file-exists-p dest) | |
| 4633 (file-newer-than-file-p source dest)) | |
| 4634 (if (null (batch-byte-compile-1 source)) | |
| 4635 (setq error t))) | |
| 4636 (setq files (cdr files))) | |
| 4637 (null error)) | |
| 4638 (batch-byte-compile-1 file-to-process)))) | |
| 4639 | |
| 428 | 4640 (defun batch-byte-compile-1 (file) |
| 4641 (condition-case err | |
| 4642 (progn (byte-compile-file file) t) | |
| 4643 (error | |
| 4644 (princ ">>Error occurred processing ") | |
| 4645 (princ file) | |
| 4646 (princ ": ") | |
| 4647 (if (fboundp 'display-error) ; XEmacs 19.8+ | |
| 4648 (display-error err nil) | |
| 4649 (princ (or (get (car err) 'error-message) (car err))) | |
|
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
4650 (mapc #'(lambda (x) (princ " ") (prin1 x)) (cdr err))) |
| 428 | 4651 (princ "\n") |
| 4652 nil))) | |
| 4653 | |
| 4654 ;;;###autoload | |
| 4655 (defun batch-byte-recompile-directory-norecurse () | |
| 4656 "Same as `batch-byte-recompile-directory' but without recursion." | |
| 4657 (setq byte-recompile-directory-recursively nil) | |
| 4658 (batch-byte-recompile-directory)) | |
| 4659 | |
| 4660 ;;;###autoload | |
| 4661 (defun batch-byte-recompile-directory () | |
| 4662 "Runs `byte-recompile-directory' on the dirs remaining on the command line. | |
| 4663 Must be used only with `-batch', and kills Emacs on completion. | |
| 4664 For example, invoke `xemacs -batch -f batch-byte-recompile-directory .'." | |
| 4665 ;; command-line-args-left is what is left of the command line (startup.el) | |
| 4666 (defvar command-line-args-left) ;Avoid 'free variable' warning | |
| 4667 (if (not noninteractive) | |
| 4668 (error "batch-byte-recompile-directory is to be used only with -batch")) | |
| 4669 (or command-line-args-left | |
| 4670 (setq command-line-args-left '("."))) | |
| 4671 (let ((byte-recompile-directory-ignore-errors-p t)) | |
| 4672 (while command-line-args-left | |
| 4673 (byte-recompile-directory (car command-line-args-left)) | |
| 4674 (setq command-line-args-left (cdr command-line-args-left)))) | |
| 4675 (kill-emacs 0)) | |
| 4676 | |
| 4677 (make-obsolete 'elisp-compile-defun 'compile-defun) | |
| 4678 (make-obsolete 'byte-compile-report-call-tree 'display-call-tree) | |
| 4679 | |
| 4680 ;; other make-obsolete calls in obsolete.el. | |
| 4681 | |
| 4682 (provide 'byte-compile) | |
| 4683 (provide 'bytecomp) | |
| 4684 | |
| 4685 | |
| 4686 ;;; report metering (see the hacks in bytecode.c) | |
| 4687 | |
| 4688 (if (boundp 'byte-code-meter) | |
| 4689 (defun byte-compile-report-ops () | |
| 4690 (defvar byte-code-meter) | |
| 4691 (with-output-to-temp-buffer "*Meter*" | |
| 4692 (set-buffer "*Meter*") | |
| 4693 (let ((i 0) n op off) | |
| 4694 (while (< i 256) | |
| 4695 (setq n (aref (aref byte-code-meter 0) i) | |
| 4696 off nil) | |
| 4697 (if t ;(not (zerop n)) | |
| 4698 (progn | |
| 4699 (setq op i) | |
| 4700 (setq off nil) | |
| 4701 (cond ((< op byte-nth) | |
| 4702 (setq off (logand op 7)) | |
| 4703 (setq op (logand op 248))) | |
| 4704 ((>= op byte-constant) | |
| 4705 (setq off (- op byte-constant) | |
| 4706 op byte-constant))) | |
| 4707 (setq op (aref byte-code-vector op)) | |
| 4708 (insert (format "%-4d" i)) | |
| 4709 (insert (symbol-name op)) | |
| 4710 (if off (insert " [" (int-to-string off) "]")) | |
| 4711 (indent-to 40) | |
| 4712 (insert (int-to-string n) "\n"))) | |
| 4713 (setq i (1+ i))))))) | |
| 4714 | |
| 4715 | |
| 4716 ;; To avoid "lisp nesting exceeds max-lisp-eval-depth" when bytecomp compiles | |
| 4717 ;; itself, compile some of its most used recursive functions (at load time). | |
| 4718 ;; | |
| 4719 (eval-when-compile | |
| 4720 (or (compiled-function-p (symbol-function 'byte-compile-form)) | |
| 4721 (assq 'byte-code (symbol-function 'byte-compile-form)) | |
| 4722 (let ((byte-optimize nil) ; do it fast | |
| 4723 (byte-compile-warnings nil)) | |
| 4724 (mapcar #'(lambda (x) | |
| 4725 (or noninteractive (message "compiling %s..." x)) | |
| 4726 (byte-compile x) | |
| 4727 (or noninteractive (message "compiling %s...done" x))) | |
| 4728 '(byte-compile-normal-call | |
| 4729 byte-compile-form | |
| 4730 byte-compile-body | |
| 4731 ;; Inserted some more than necessary, to speed it up. | |
| 4732 byte-compile-top-level | |
| 4733 byte-compile-out-toplevel | |
| 4734 byte-compile-constant | |
| 4735 byte-compile-variable-ref)))) | |
| 4736 nil) | |
| 4737 | |
|
4683
0cc9d22c3732
Be more reliable about loading cl-macs at byte-compile time, cl.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
4738 (run-hooks 'bytecomp-load-hook) |
|
0cc9d22c3732
Be more reliable about loading cl-macs at byte-compile time, cl.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
4739 |
| 428 | 4740 ;;; bytecomp.el ends here |
