aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/Makefile.in6
-rw-r--r--lisp/emacs-lisp/comp.el11
2 files changed, 17 insertions, 0 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 256017f6c5b..338814fdda2 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -430,6 +430,12 @@ compile-always:
430 find $(lisp) -name '*.elc' $(FIND_DELETE) 430 find $(lisp) -name '*.elc' $(FIND_DELETE)
431 $(MAKE) compile 431 $(MAKE) compile
432 432
433.PHONY: trampolines
434trampolines: compile
435ifeq ($(HAVE_NATIVE_COMP),yes)
436 $(emacs) -l comp -f comp-compile-all-trampolines
437endif
438
433.PHONY: backup-compiled-files compile-after-backup 439.PHONY: backup-compiled-files compile-after-backup
434 440
435# Backup compiled Lisp files in elc.tar.gz. If that file already 441# Backup compiled Lisp files in elc.tar.gz. If that file already
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 6656b7e57c1..889bffa3f5c 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -4204,6 +4204,17 @@ bytecode definition was not changed in the meantime)."
4204 4204
4205;;; Compiler entry points. 4205;;; Compiler entry points.
4206 4206
4207(defun comp-compile-all-trampolines ()
4208 "Pre-compile AOT all trampolines."
4209 (let ((comp-running-batch-compilation t)
4210 ;; We want to target only the 'native-lisp' directory.
4211 (native-compile-target-directory
4212 (car (last native-comp-eln-load-path))))
4213 (mapatoms (lambda (f)
4214 (when (subr-primitive-p (symbol-function f))
4215 (message "Compiling trampoline for: %s" f)
4216 (comp-trampoline-compile f))))))
4217
4207;;;###autoload 4218;;;###autoload
4208(defun comp-lookup-eln (filename) 4219(defun comp-lookup-eln (filename)
4209 "Given a Lisp source FILENAME return the corresponding .eln file if found. 4220 "Given a Lisp source FILENAME return the corresponding .eln file if found.