summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2020-03-17 22:24:52 +0000
committerAndrea Corallo <akrl@sdf.org>2020-03-19 08:38:10 +0000
commit034d9b319c2d596d090364476a193fbc409026d6 (patch)
treeccd03949265db2a1753fce42ad8ae38ae5922140
parentf2c437761f5b9f0256d9b2e2687e0ab889274c46 (diff)
downloademacs-034d9b319c2d596d090364476a193fbc409026d6.tar.gz
emacs-034d9b319c2d596d090364476a193fbc409026d6.tar.bz2
emacs-034d9b319c2d596d090364476a193fbc409026d6.zip
* comp.el: late-load support optional as `native-compile' parameter
-rw-r--r--lisp/emacs-lisp/comp.el12
1 files changed, 8 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 3a56876cc00..d077fa59991 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -214,7 +214,9 @@ This is to build the prev field.")
:documentation "Relocated data that cannot be moved into pure space.
This is tipically for top-level forms other than defun.")
(d-ephemeral (make-comp-data-container) :type comp-data-container
- :documentation "Relocated data not necessary after load."))
+ :documentation "Relocated data not necessary after load.")
+ (with-late-load nil :type boolean
+ :documentation "When non nil support late load."))
(cl-defstruct comp-args-base
(min nil :type number
@@ -1289,7 +1291,8 @@ into the C code forwarding the compilation unit."
Top-level forms for the current context are rendered too."
(mapc #'comp-add-func-to-ctxt (mapcar #'comp-limplify-function lap-funcs))
(comp-add-func-to-ctxt (comp-limplify-top-level nil))
- (comp-add-func-to-ctxt (comp-limplify-top-level t)))
+ (when (comp-ctxt-with-late-load comp-ctxt)
+ (comp-add-func-to-ctxt (comp-limplify-top-level t))))
;;; SSA pass specific code.
@@ -2163,7 +2166,7 @@ display a message."
;;; Compiler entry points.
;;;###autoload
-(defun native-compile (function-or-file)
+(defun native-compile (function-or-file &optional with-late-load)
"Compile FUNCTION-OR-FILE into native code.
This is the entry-point for the Emacs Lisp native compiler.
FUNCTION-OR-FILE is a function symbol or a path to an Elisp file.
@@ -2188,7 +2191,8 @@ Return the compilation unit file name."
(output-filename
(file-name-sans-extension
(file-name-nondirectory expanded-filename))))
- (expand-file-name output-filename output-dir))))))
+ (expand-file-name output-filename output-dir)))
+ :with-late-load with-late-load)))
(comp-log "\n \n" 1)
(condition-case err
(mapc (lambda (pass)