From 6669d3775455048005357bceebab459854d13fe0 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Fri, 14 Aug 1992 01:34:40 +0000 Subject: [PATCH] Changed backq-list, etc., from being inline functions to compiler-macros, since although the optimizer does eventually get the right code, it has to work awful hard. --- code/backq.lisp | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/code/backq.lisp b/code/backq.lisp index e703ffb50..3ada581b3 100644 --- a/code/backq.lisp +++ b/code/backq.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/backq.lisp,v 1.5 1992/03/10 13:09:20 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/backq.lisp,v 1.6 1992/08/14 01:34:40 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -178,9 +178,6 @@ ;;; Use synonyms for the lisp functions we use, so we can recognize backquoted ;;; material when pretty-printing -(declaim (inline backq-list backq-list* backq-append backq-nconc backq-cons - backq-vector)) - (defun backq-list (&rest args) args) (defun backq-list* (&rest args) @@ -191,8 +188,19 @@ (apply #'nconc args)) (defun backq-cons (x y) (cons x y)) + +(macrolet ((frob (b-name name) + `(define-compiler-macro ,b-name (&rest args) + `(,',name ,@args)))) + (frob backq-list list) + (frob backq-list* list*) + (frob backq-append append) + (frob backq-nconc nconc) + (frob backq-cons cons)) + (defun backq-vector (list) - (coerce list 'vector)) + (declare (list list)) + (coerce list 'simple-vector)) ;;;; Unparsing -- GitLab