]> git.eshelyaron.com Git - emacs.git/commitdiff
* Prune now unnecessary byte-code objects
authorAndrea Corallo <akrl@sdf.org>
Sun, 3 May 2020 19:26:35 +0000 (20:26 +0100)
committerAndrea Corallo <akrl@sdf.org>
Thu, 14 May 2020 20:50:32 +0000 (21:50 +0100)
* lisp/emacs-lisp/comp.el (comp-finalize-container): Prune
byte-code that was lambdas.
(comp-compile-ctxt-to-file): Remove fixme.

lisp/emacs-lisp/comp.el

index 705225d82f3678d7b9753c5c38735b2844a53958..3bcfdc9420bd1443f5760a07f73d69d7f6904316 100644 (file)
@@ -2117,7 +2117,16 @@ These are substituted with a normal 'set' op."
                  for obj each hash-keys of h
                  for i from 0
                  do (puthash obj i h)
-                 collect obj)))
+                 ;; Prune byte-code objects coming from lambdas.
+                 ;; These are not anymore necessary as they will be
+                 ;; replaced at load time by native-elisp-subrs.
+                 ;; Note: we leave the objects in the idx hash table
+                 ;; to still be able to retrieve the correct index
+                 ;; from the corresponding m-var.
+                 collect (if (gethash obj
+                                      (comp-ctxt-byte-func-to-func-h comp-ctxt))
+                             nil
+                           obj))))
 
 (defun comp-finalize-relocs ()
   "Finalize data containers for each relocation class.
@@ -2159,7 +2168,6 @@ Update all insn accordingly."
   "Compile as native code the current context naming it NAME.
 Prepare every function for final compilation and drive the C back-end."
   (let ((dir (file-name-directory name)))
-    ;; FIXME: Strip bytecompiled functions here.
     (comp-finalize-relocs)
     (unless (file-exists-p dir)
       ;; In case it's created in the meanwhile.