From 57ed9829af2ea80f29c13b6e00f1bcc487622e20 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Thu, 23 May 1991 17:51:20 +0000 Subject: [PATCH] When doing the labels hack in converting global inlines, respect :NOTINLINE declarations. Changed declaration processing to treat a FUNCTION declaration as an ordinary variably type declaration (as proposed by X3J13). The old semantics is still obtained when the second arg to the declaration is a list (as it always would be in the old usage.) Added support for the CONSTANT-FUNCTION declaration. --- compiler/ir1tran.lisp | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/compiler/ir1tran.lisp b/compiler/ir1tran.lisp index d2fd5078d..64eda74ff 100644 --- a/compiler/ir1tran.lisp +++ b/compiler/ir1tran.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1tran.lisp,v 1.46 1991/05/16 16:39:09 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1tran.lisp,v 1.47 1991/05/23 17:51:20 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -496,7 +496,10 @@ (setf (gethash name *free-functions*) dummy) (let ((fun (ir1-convert-global-lambda expansion))) (setf (leaf-name fun) name) - (substitute-leaf fun dummy) + (substitute-leaf-if + #'(lambda (x) + (not (eq (ref-inlinep x) :notinline))) + fun dummy) (setf (gethash name *free-functions*) (if (eq inlinep :inline) var @@ -876,12 +879,15 @@ (compiler-error "No type specified in FTYPE declaration: ~S." spec)) (process-ftype-declaration (second spec) res (cddr spec) fvars)) (function - (unless (cdr spec) - (compiler-error - "No function name specified in FUNCTION declaration: ~S." spec)) - (process-ftype-declaration `(function ,@(cddr spec)) res - (list (second spec)) - fvars)) + ;; + ;; Handle old style FUNCTION declaration, which is an abbreviation for + ;; FTYPE. Args are name, arglist, result type. + (cond ((and (<= 3 (length spec) 4) (listp (third spec))) + (process-ftype-declaration `(function ,@(cddr spec)) res + (list (second spec)) + fvars)) + (t + (process-type-declaration spec res vars)))) ((inline notinline maybe-inline) (process-inline-declaration spec res fvars)) ((ignore ignorable) @@ -2539,7 +2545,7 @@ ;; ;; No non-global state to be updated. ((inline notinline maybe-inline optimize optimize-interface - declaration freeze-type)) + declaration freeze-type constant-function)) ;; ;; Totally ignore these operations at non-top-level. ((start-block end-block) -- GitLab