]> git.eshelyaron.com Git - emacs.git/commitdiff
Better CPS conversion of multi-binding `let`
authorMattias Engdegård <mattiase@acm.org>
Tue, 30 Nov 2021 10:32:20 +0000 (11:32 +0100)
committerMattias Engdegård <mattiase@acm.org>
Tue, 30 Nov 2021 12:03:49 +0000 (13:03 +0100)
* lisp/emacs-lisp/generator.el (cps--transform-1):
Don't translate single-binding `let` into `let*` with an extra
temporary variable; it just adds two more useless states.

lisp/emacs-lisp/generator.el

index 2075ac472d1706d4ff249227f06ed7bdf523a4a5..4e286ed7ec4f22883659a2000be3aa0749cb7f22 100644 (file)
@@ -291,8 +291,15 @@ DYNAMIC-VAR bound to STATIC-VAR."
                         (cps--transform-1 `(progn ,@rest)
                                           next-state)))
 
-    ;; Process `let' in a helper function that transforms it into a
-    ;; let* with temporaries.
+    (`(,(or 'let 'let*) () . ,body)
+      (cps--transform-1 `(progn ,@body) next-state))
+
+    (`(let (,binding) . ,body)
+      (cps--transform-1 `(let* (,binding) ,@body) next-state))
+
+    ;; Transform multi-variable `let' into `let*':
+    ;;    (let ((v1 e1) ... (vN eN)) BODY)
+    ;; -> (let* ((t1 e1) ... (tN eN) (v1 t1) (vN tN)) BODY)
 
     (`(let ,bindings . ,body)
       (let* ((bindings (cl-loop for binding in bindings
@@ -315,9 +322,6 @@ DYNAMIC-VAR bound to STATIC-VAR."
     ;; Process `let*' binding: process one binding at a time.  Flatten
     ;; lexical bindings.
 
-    (`(let* () . ,body)
-      (cps--transform-1 `(progn ,@body) next-state))
-
     (`(let* (,binding . ,more-bindings) . ,body)
       (let* ((var (if (symbolp binding) binding (car binding)))
              (value-form (car (cdr-safe binding)))