From b0b30e9f4dfdf4e97e70746d42f02a160f48700d Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Wed, 11 Mar 1992 21:29:23 +0000 Subject: [PATCH] Added FDEFN changes. Changed PSEUDO-ATOMIC re Miles' suggestions. --- compiler/sparc/alloc.lisp | 75 +++++++++---------- compiler/sparc/array.lisp | 14 ++-- compiler/sparc/call.lisp | 19 +++-- compiler/sparc/cell.lisp | 135 +++++++++++----------------------- compiler/sparc/macros.lisp | 37 ++++------ compiler/sparc/move.lisp | 11 ++- compiler/sparc/parms.lisp | 23 +++--- compiler/sparc/static-fn.lisp | 8 +- compiler/sparc/type-vops.lisp | 63 +--------------- 9 files changed, 125 insertions(+), 260 deletions(-) diff --git a/compiler/sparc/alloc.lisp b/compiler/sparc/alloc.lisp index 7ae763b35..4f2752bc8 100644 --- a/compiler/sparc/alloc.lisp +++ b/compiler/sparc/alloc.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/alloc.lisp,v 1.2 1991/04/03 00:54:51 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/alloc.lisp,v 1.3 1992/03/11 21:28:59 wlott Exp $ ;;; ;;; Allocation VOPs for the SPARC port. ;;; @@ -37,37 +37,35 @@ (move result (tn-ref-tn things))) (t (macrolet - ((store-car (tn list &optional (slot cons-car-slot)) - `(let ((reg - (sc-case ,tn - ((any-reg descriptor-reg zero null) - ,tn) - (control-stack - (load-stack-tn temp ,tn) - temp)))) - (storew reg ,list ,slot list-pointer-type)))) - (let ((cons-cells (if star (1- num) num))) - (pseudo-atomic (ndescr) - (inst add res alloc-tn list-pointer-type) - (inst add alloc-tn alloc-tn - (* (pad-data-block cons-size) cons-cells)) + ((maybe-load (tn) + (once-only ((tn tn)) + `(sc-case ,tn + ((any-reg descriptor-reg zero null) + ,tn) + (control-stack + (load-stack-tn temp ,tn) + temp))))) + (let* ((cons-cells (if star (1- num) num)) + (alloc (* (pad-data-block cons-size) cons-cells))) + (pseudo-atomic (:extra alloc) + (inst andn res alloc-tn lowtag-mask) + (inst or res alloc-tn list-pointer-type) (move ptr res) (dotimes (i (1- cons-cells)) - (store-car (tn-ref-tn things) ptr) + (storew (maybe-load (tn-ref-tn things)) ptr + cons-car-slot list-pointer-type) (setf things (tn-ref-across things)) (inst add ptr ptr (pad-data-block cons-size)) (storew ptr ptr (- cons-cdr-slot cons-size) list-pointer-type)) - (store-car (tn-ref-tn things) ptr) - (cond (star - (setf things (tn-ref-across things)) - (store-car (tn-ref-tn things) ptr cons-cdr-slot)) - (t - (storew null-tn ptr - cons-cdr-slot list-pointer-type))) - (assert (null (tn-ref-across things))) - (move result res)))))))) + (storew (maybe-load (tn-ref-tn things)) ptr + cons-car-slot list-pointer-type) + (storew (if star + (maybe-load (tn-ref-tn (tn-ref-across things))) + null-tn) + ptr cons-cdr-slot list-pointer-type)) + (move result res))))))) (define-vop (list list-or-list*) (:variant nil)) @@ -91,8 +89,11 @@ (inst srl unboxed unboxed-arg word-shift) (inst add unboxed lowtag-mask) (inst and unboxed (lognot lowtag-mask)) - (pseudo-atomic (ndescr) - (inst add result alloc-tn other-pointer-type) + (pseudo-atomic () + ;; Note: we don't have to subtract off the 4 that was added by + ;; pseudo-atomic, because oring in other-pointer-type just adds + ;; it right back. + (inst or result alloc-tn other-pointer-type) (inst add alloc-tn boxed) (inst add alloc-tn unboxed) (inst sll ndescr boxed (- type-bits word-shift)) @@ -102,23 +103,15 @@ (storew null-tn result code-entry-points-slot other-pointer-type) (storew null-tn result code-debug-info-slot other-pointer-type)))) -(define-vop (make-symbol) +(define-vop (make-fdefn) (:args (name :scs (descriptor-reg) :to :eval)) (:temporary (:scs (non-descriptor-reg)) temp) (:results (result :scs (descriptor-reg) :from :argument)) (:policy :fast-safe) - (:translate make-symbol) + (:translate make-fdefn) (:generator 37 - (with-fixed-allocation (result temp symbol-header-type symbol-size) - (inst li temp unbound-marker-type) - (storew temp result symbol-value-slot other-pointer-type) - (storew temp result symbol-function-slot other-pointer-type) - (storew temp result symbol-setf-function-slot other-pointer-type) + (with-fixed-allocation (result temp fdefn-type fdefn-size) (inst li temp (make-fixup "_undefined_tramp" :foreign)) - (storew temp result symbol-raw-function-addr-slot - other-pointer-type) - (storew null-tn result symbol-plist-slot other-pointer-type) - (storew name result symbol-name-slot other-pointer-type) - (storew null-tn result symbol-package-slot other-pointer-type)))) - - + (storew name result fdefn-name-slot other-pointer-type) + (storew null-tn result fdefn-function-slot other-pointer-type) + (storew temp result fdefn-raw-addr-slot other-pointer-type)))) diff --git a/compiler/sparc/array.lisp b/compiler/sparc/array.lisp index 0b36b93a2..31089a20e 100644 --- a/compiler/sparc/array.lisp +++ b/compiler/sparc/array.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/array.lisp,v 1.6 1991/11/09 02:38:12 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/array.lisp,v 1.7 1992/03/11 21:29:01 wlott Exp $ ;;; ;;; This file contains the SPARC definitions for array operations. ;;; @@ -28,13 +28,11 @@ (:temporary (:scs (non-descriptor-reg) :type random) ndescr) (:results (result :scs (descriptor-reg))) (:generator 0 - (pseudo-atomic (ndescr) - (inst add header alloc-tn vm:other-pointer-type) - (inst add alloc-tn - (+ (* vm:array-dimensions-offset vm:word-bytes) - vm:lowtag-mask)) - (inst add alloc-tn rank) - (inst and alloc-tn (lognot vm:lowtag-mask)) + (pseudo-atomic () + (inst or header other-pointer-type) + (inst add ndescr rank (* (1+ array-dimensions-offset) vm:word-bytes)) + (inst andn ndescr rank 4) + (inst add alloc-tn ndescr) (inst add ndescr rank (fixnum (1- vm:array-dimensions-offset))) (inst sll ndescr ndescr vm:type-bits) (inst or ndescr ndescr type) diff --git a/compiler/sparc/call.lisp b/compiler/sparc/call.lisp index bad068924..6842afa15 100644 --- a/compiler/sparc/call.lisp +++ b/compiler/sparc/call.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/call.lisp,v 1.8 1992/03/06 11:03:24 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/call.lisp,v 1.9 1992/03/11 21:29:04 wlott Exp $ ;;; ;;; This file contains the VM definition of function call for the SPARC. ;;; @@ -793,14 +793,12 @@ default-value-8 (control-stack (loadw name-pass cfp-tn (tn-offset name)) (do-next-filler)) - (immediate - (load-symbol name-pass (tn-value name))) (constant (loadw name-pass code-tn (tn-offset name) vm:other-pointer-type) (do-next-filler))) - (loadw function name-pass vm:symbol-raw-function-addr-slot - vm:other-pointer-type) + (loadw function name-pass fdefn-raw-addr-slot + other-pointer-type) (do-next-filler)) `((sc-case arg-fun (descriptor-reg (move lexenv arg-fun)) @@ -1112,7 +1110,7 @@ default-value-8 (:temporary (:scs (any-reg) :from (:argument 0)) context) (:temporary (:scs (any-reg) :from (:argument 1)) count) (:temporary (:scs (descriptor-reg) :from :eval) temp) - (:temporary (:scs (non-descriptor-reg) :from :eval) ndescr dst) + (:temporary (:scs (non-descriptor-reg) :from :eval) dst) (:results (result :scs (descriptor-reg))) (:translate %listify-rest-args) (:policy :safe) @@ -1128,13 +1126,14 @@ default-value-8 (move result null-tn) ;; We need to do this atomically. - (pseudo-atomic (ndescr) + (pseudo-atomic () ;; Allocate a cons (2 words) for each item. - (inst add result alloc-tn vm:list-pointer-type) + (inst andn result alloc-tn lowtag-mask) + (inst or result list-pointer-type) (move dst result) - (inst add alloc-tn alloc-tn count) + (inst sll temp count 1) (inst b enter) - (inst add alloc-tn alloc-tn count) + (inst add alloc-tn temp) ;; Store the current cons in the cdr of the previous cons. (emit-label loop) diff --git a/compiler/sparc/cell.lisp b/compiler/sparc/cell.lisp index 4e494cedd..1b690e986 100644 --- a/compiler/sparc/cell.lisp +++ b/compiler/sparc/cell.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/sparc/cell.lisp,v 1.9 1992/02/26 00:15:12 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/cell.lisp,v 1.10 1992/03/11 21:29:08 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -102,29 +102,6 @@ (inst b :eq err-lab) (inst nop)))) -;;; With Symbol-Function, we check that the result is a function, so NIL is -;;; always un-fbound. -;;; -(define-vop (symbol-function checked-cell-ref) - (:translate symbol-function) - (:temporary (:type random :scs (non-descriptor-reg)) temp) - (:generator 10 - (move obj-temp object) - (loadw value obj-temp vm:symbol-function-slot vm:other-pointer-type) - (let ((err-lab (generate-error-code vop undefined-symbol-error obj-temp))) - (test-type value temp err-lab t vm:function-pointer-type)))) - -#+nil -(define-vop (symbol-setf-function checked-cell-ref) - (:temporary (:type random :scs (non-descriptor-reg)) temp) - (:translate symbol-setf-function) - (:generator 10 - (move obj-temp object) - (loadw value obj-temp vm:symbol-setf-function-slot vm:other-pointer-type) - (let ((err-lab (generate-error-code vop undefined-symbol-error obj-temp))) - (test-type value temp err-lab t vm:function-pointer-type)))) - - ;;; Like CHECKED-CELL-REF, only we are a predicate to see if the cell is bound. (define-vop (boundp-frob) (:args (object :scs (descriptor-reg))) @@ -141,100 +118,70 @@ (inst b (if not-p :eq :ne) target) (inst nop))) - -;;; SYMBOL isn't a primitive type, so we can't use it for the arg restriction -;;; on the symbol case of fboundp. Instead, we transform to a funny function. - -(defknown fboundp/symbol (t) boolean (flushable)) -;;; -(deftransform fboundp ((x) (symbol)) - '(fboundp/symbol x)) -;;; -(define-vop (fboundp/symbol boundp-frob) - (:translate fboundp/symbol) - (:temporary (:type random :scs (non-descriptor-reg)) temp) - (:generator 10 - (loadw value object vm:symbol-function-slot vm:other-pointer-type) - (test-type value temp target not-p vm:function-pointer-type))) - -#+nil(progn -(defknown fboundp/setf (t) boolean (flushable)) -;;; -(deftransform fboundp ((x) (cons)) - '(fboundp/setf (cadr x))) -;;; -(define-vop (fboundp/setf boundp-frob) - (:translate fboundp/setf) - (:temporary (:type random :scs (non-descriptor-reg)) temp) - (:generator 10 - (loadw value object vm:symbol-setf-function-slot vm:other-pointer-type) - (test-type value temp target not-p vm:function-pointer-type))) -) - (define-vop (fast-symbol-value cell-ref) (:variant vm:symbol-value-slot vm:other-pointer-type) (:policy :fast) (:translate symbol-value)) -(define-vop (fast-symbol-function cell-ref) - (:variant vm:symbol-function-slot vm:other-pointer-type) - (:policy :fast) - (:translate symbol-function)) + +;;;; Fdefinition (fdefn) objects. +(define-vop (safe-fdefn-function) + (:args (object :scs (descriptor-reg) :target obj-temp)) + (:results (value :scs (descriptor-reg any-reg))) + (:vop-var vop) + (:save-p :compute-only) + (:temporary (:scs (descriptor-reg) :from (:argument 0)) obj-temp) + (:generator 10 + (move obj-temp object) + (loadw value obj-temp fdefn-function-slot other-pointer-type) + (inst cmp value null-tn) + (let ((err-lab (generate-error-code vop undefined-symbol-error obj-temp))) + (inst b :eq err-lab)) + (inst nop))) -(define-vop (set-symbol-function) - (:translate %set-symbol-function) +(define-vop (set-fdefn-function) (:policy :fast-safe) - (:args (symbol :scs (descriptor-reg)) - (function :scs (descriptor-reg) :target result)) - (:results (result :scs (descriptor-reg))) + (:translate (setf fdefn-function)) + (:args (function :scs (descriptor-reg) :target result) + (fdefn :scs (descriptor-reg))) + (:temporary (:scs (interior-reg)) lip) (:temporary (:scs (non-descriptor-reg)) type) - (:temporary (:scs (any-reg)) temp) - (:save-p :compute-only) - (:vop-var vop) - (:generator 30 + (:results (result :scs (descriptor-reg))) + (:generator 38 (let ((closure (gen-label)) (normal-fn (gen-label))) - (load-type type function (- vm:function-pointer-type)) + (load-type type function (- function-pointer-type)) (inst nop) - (inst cmp type vm:closure-header-type) + (inst cmp type closure-header-type) (inst b :eq closure) - (inst cmp type vm:funcallable-instance-header-type) + (inst cmp type funcallable-instance-header-type) (inst b :eq closure) - (inst cmp type vm:function-header-type) + (inst cmp type function-header-type) (inst b :eq normal-fn) - (inst move temp function) - (error-call vop kernel:object-not-function-error function) + (inst move lip function) (emit-label closure) - (inst li temp (make-fixup "_closure_tramp" :foreign)) + (inst li lip (make-fixup "_closure_tramp" :foreign)) (emit-label normal-fn) - (storew function symbol vm:symbol-function-slot vm:other-pointer-type) - (storew temp symbol vm:symbol-raw-function-addr-slot - vm:other-pointer-type) + (storew function fdefn fdefn-function-slot other-pointer-type) + (storew lip fdefn fdefn-raw-addr-slot other-pointer-type) (move result function)))) - -(defknown fmakunbound/symbol (symbol) symbol (unsafe)) -;;; -(deftransform fmakunbound ((symbol) (symbol)) - '(when symbol - (fmakunbound/symbol symbol))) -;;; -(define-vop (fmakunbound/symbol) - (:translate fmakunbound/symbol) +(define-vop (fdefn-makunbound) (:policy :fast-safe) - (:args (symbol :scs (descriptor-reg) :target result)) - (:results (result :scs (descriptor-reg))) + (:translate fdefn-makunbound) + (:args (fdefn :scs (descriptor-reg) :target result)) (:temporary (:scs (non-descriptor-reg)) temp) - (:generator 5 - (inst li temp vm:unbound-marker-type) - (storew temp symbol vm:symbol-function-slot vm:other-pointer-type) + (:results (result :scs (descriptor-reg))) + (:generator 38 + (storew null-tn fdefn fdefn-function-slot other-pointer-type) (inst li temp (make-fixup "_undefined_tramp" :foreign)) - (storew temp symbol vm:symbol-raw-function-addr-slot vm:other-pointer-type) - (move result symbol))) + (storew temp fdefn fdefn-raw-addr-slot other-pointer-type) + (move result fdefn))) -;;; Binding and Unbinding. + +;;;; Binding and Unbinding. ;;; BIND -- Establish VAL as a binding for SYMBOL. Save the old value and ;;; the symbol on the binding stack and stuff the new value into the diff --git a/compiler/sparc/macros.lisp b/compiler/sparc/macros.lisp index 0300fdf7e..cd114027c 100644 --- a/compiler/sparc/macros.lisp +++ b/compiler/sparc/macros.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/macros.lisp,v 1.4 1991/11/09 02:38:18 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/macros.lisp,v 1.5 1992/03/11 21:29:11 wlott Exp $ ;;; ;;; This file contains various useful macros for generating SPARC code. ;;; @@ -151,13 +151,13 @@ Result-TN, and Temp-TN is a non-descriptor temp (which may be randomly used by the body.) The body is placed inside the PSEUDO-ATOMIC, and presumably initializes the object." - `(pseudo-atomic (,temp-tn) - (inst add ,result-tn alloc-tn other-pointer-type) - (inst add alloc-tn alloc-tn (pad-data-block ,size)) - (inst li ,temp-tn (logior (ash (1- ,size) type-bits) ,type-code)) - (storew ,temp-tn ,result-tn 0 other-pointer-type) - ,@body)) - + (once-only ((result-tn result-tn) (temp-tn temp-tn) + (type-code type-code) (size size)) + `(pseudo-atomic (:extra (pad-data-block ,size)) + (inst or ,result-tn alloc-tn other-pointer-type) + (inst li ,temp-tn (logior (ash (1- ,size) type-bits) ,type-code)) + (storew ,temp-tn ,result-tn 0 other-pointer-type) + ,@body))) ;;;; Type testing noise. @@ -428,20 +428,9 @@ ;;; PSEUDO-ATOMIC -- Handy macro for making sequences look atomic. ;;; -(defmacro pseudo-atomic ((ndescr-temp) &rest forms) - (let ((label (gensym "LABEL-"))) - `(let ((,label (gen-label))) - (store-symbol-value zero-tn lisp::*pseudo-atomic-interrupted*) - ;; Note: we just use cfp as some not-zero value. - (store-symbol-value cfp-tn lisp::*pseudo-atomic-atomic*) +(defmacro pseudo-atomic ((&key (extra 0)) &rest forms) + (let ((n-extra (gensym))) + `(let ((,n-extra ,extra)) + (inst add alloc-tn 4) ,@forms - (store-symbol-value zero-tn lisp::*pseudo-atomic-atomic*) - (load-symbol-value ,ndescr-temp lisp::*pseudo-atomic-interrupted*) - (inst cmp ,ndescr-temp) - (inst b :eq ,label) - (inst nop) - (inst unimp pending-interrupt-trap) - (emit-label ,label)))) - - - + (inst taddcctv alloc-tn (- ,extra 4))))) diff --git a/compiler/sparc/move.lisp b/compiler/sparc/move.lisp index 6ceb8c2b2..77403fd7c 100644 --- a/compiler/sparc/move.lisp +++ b/compiler/sparc/move.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/move.lisp,v 1.3 1992/01/14 16:08:19 ram Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/move.lisp,v 1.4 1992/03/11 21:29:13 wlott Exp $ ;;; ;;; This file contains the SPARC VM definition of operand loading/saving and ;;; the Move VOP. @@ -254,16 +254,15 @@ (:generator 20 (move x arg) (let ((done (gen-label)) - (one-word (gen-label))) + (one-word (gen-label)) + (initial-alloc (pad-data-block (1+ bignum-digits-offset)))) (inst sra temp x 29) (inst cmp temp) (inst b :eq done) (inst sll y x 2) - (pseudo-atomic (temp) - (inst add y alloc-tn other-pointer-type) - (inst add alloc-tn - (pad-data-block (1+ bignum-digits-offset))) + (pseudo-atomic (:extra initial-alloc) + (inst or y alloc-tn other-pointer-type) (inst cmp x) (inst b :ge one-word) (inst li temp (logior (ash 1 type-bits) bignum-type)) diff --git a/compiler/sparc/parms.lisp b/compiler/sparc/parms.lisp index a7595a15a..531ccada1 100644 --- a/compiler/sparc/parms.lisp +++ b/compiler/sparc/parms.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/sparc/parms.lisp,v 1.13 1992/02/25 07:09:29 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/parms.lisp,v 1.14 1992/03/11 21:29:17 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -33,7 +33,7 @@ (setf (backend-fasl-file-type *target-backend*) "sparcf") (setf (backend-fasl-file-implementation *target-backend*) sparc-fasl-file-implementation) -(setf (backend-fasl-file-version *target-backend*) 2) +(setf (backend-fasl-file-version *target-backend*) 3) (setf (backend-register-save-penalty *target-backend*) 3) (setf (backend-byte-order *target-backend*) :big-endian) @@ -167,14 +167,15 @@ ;;;; Static symbols. -(export '(static-symbols exported-static-symbols)) +(export '(static-symbols static-functions)) ;;; These symbols are loaded into static space directly after NIL so ;;; that the system can compute their address by adding a constant ;;; amount to NIL. ;;; -;;; The exported static symbols are a subset of the static symbols that get -;;; exported to the C header file. +;;; The fdefn objects for the static functions are loaded into static +;;; space directly after the static symbols. That way, the raw-addr +;;; can be loaded directly out of them by indirecting relative to NIL. ;;; (defparameter static-symbols '(t @@ -182,12 +183,14 @@ ;; The C startup code must fill these in. lisp::lisp-environment-list lisp::lisp-command-line-list + lisp::*initial-fdefn-objects* ;; Functions that the C code needs to call lisp::%initial-function lisp::maybe-gc kernel::internal-error di::handle-breakpoint + lisp::fdefinition-object ;; Free Pointers. lisp::*read-only-space-free-pointer* @@ -201,22 +204,18 @@ ;; Interrupt Handling lisp::*free-interrupt-context-index* - lisp::*pseudo-atomic-atomic* - lisp::*pseudo-atomic-interrupted* unix::*interrupts-enabled* unix::*interrupt-pending* + )) - ;; Static functions. - length +(defparameter static-functions + '(length two-arg-+ two-arg-- two-arg-* two-arg-/ two-arg-< two-arg-> two-arg-= two-arg-<= two-arg->= two-arg-/= eql %negate two-arg-and two-arg-ior two-arg-xor two-arg-gcd two-arg-lcm )) -(defparameter exported-static-symbols - (subseq static-symbols 0 (position 'length static-symbols))) - ;;;; Assembler parameters: diff --git a/compiler/sparc/static-fn.lisp b/compiler/sparc/static-fn.lisp index cc4ba81de..18058d455 100644 --- a/compiler/sparc/static-fn.lisp +++ b/compiler/sparc/static-fn.lisp @@ -7,7 +7,7 @@ ;;; Lisp, please contact Scott Fahlman (Scott.Fahlman@CS.CMU.EDU) ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/static-fn.lisp,v 1.1 1990/11/30 17:05:03 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/static-fn.lisp,v 1.2 1992/03/11 21:29:20 wlott Exp $ ;;; ;;; This file contains the VOPs and macro magic necessary to call static ;;; functions. @@ -26,7 +26,6 @@ (:temporary (:scs (non-descriptor-reg)) temp) (:temporary (:scs (descriptor-reg)) move-temp) (:temporary (:sc descriptor-reg :offset lra-offset) lra) - (:temporary (:sc descriptor-reg :offset cname-offset) cname) (:temporary (:scs (descriptor-reg)) func) (:temporary (:sc any-reg :offset nargs-offset) nargs) (:temporary (:sc any-reg :offset ocfp-offset) old-fp) @@ -87,11 +86,8 @@ (let ((lra-label (gen-label)) (cur-nfp (current-nfp-tn vop))) ,@(moves (temp-names) (arg-names)) + (inst ld func null-tn (static-function-offset symbol)) (inst li nargs (fixnum ,num-args)) - (load-symbol cname symbol) - (inst ld func cname - (- (ash symbol-raw-function-addr-slot word-shift) - other-pointer-type)) (when cur-nfp (store-stack-tn nfp-save cur-nfp)) (inst move old-fp cfp-tn) diff --git a/compiler/sparc/type-vops.lisp b/compiler/sparc/type-vops.lisp index 09eb24849..81de7a674 100644 --- a/compiler/sparc/type-vops.lisp +++ b/compiler/sparc/type-vops.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/type-vops.lisp,v 1.9 1991/11/09 02:38:22 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/type-vops.lisp,v 1.10 1992/03/11 21:29:23 wlott Exp $ ;;; ;;; This file contains the VM definition of type testing and checking VOPs ;;; for the SPARC. @@ -172,6 +172,9 @@ (def-type-vops lra-p nil nil nil vm:return-pc-header-type) +(def-type-vops fdefn-p nil nil nil + vm:fdefn-type) + (def-type-vops funcallable-instance-p nil nil nil vm:funcallable-instance-header-type) @@ -411,61 +414,3 @@ (test-type value temp error t vm:list-pointer-type) (move result value)))) - -;;;; Function Coercion - -;;; If not a function, get the symbol value and test for that being a -;;; function. Since we test for a function rather than the unbound -;;; marker, this works on NIL. -;;; -(define-vop (coerce-to-function) - (:args (object :scs (descriptor-reg) - :target result)) - (:results (result :scs (descriptor-reg))) - (:temporary (:type random :scs (non-descriptor-reg)) nd-temp) - (:temporary (:scs (descriptor-reg)) saved-object) - (:vop-var vop) - (:save-p :compute-only) - (:generator 0 - (let ((not-function-label (gen-label)) - (not-coercable-label (gen-label)) - (done-label (gen-label))) - (test-type object nd-temp not-function-label t - vm:function-pointer-type) - (move result object) - (emit-label done-label) - - (assemble (*elsewhere*) - (emit-label not-function-label) - (test-type object nd-temp not-coercable-label t - vm:symbol-header-type) - (move saved-object object) - (loadw result object vm:symbol-function-slot vm:other-pointer-type) - (test-type result nd-temp done-label nil - vm:function-pointer-type) - (error-call vop undefined-symbol-error saved-object) - - (emit-label not-coercable-label) - (error-call vop object-not-coercable-to-function-error object))))) - -(define-vop (fast-safe-coerce-to-function) - (:args (object :scs (descriptor-reg) - :target result)) - (:results (result :scs (descriptor-reg))) - (:temporary (:type random :scs (non-descriptor-reg)) nd-temp) - (:temporary (:scs (descriptor-reg)) saved-object) - (:vop-var vop) - (:save-p :compute-only) - (:generator 10 - (let ((not-function-label (gen-label)) - (done-label (gen-label))) - (test-type object nd-temp not-function-label t vm:function-pointer-type) - (move result object) - (emit-label done-label) - - (assemble (*elsewhere*) - (emit-label not-function-label) - (move saved-object object) - (loadw result object vm:symbol-function-slot vm:other-pointer-type) - (test-type result nd-temp done-label nil vm:function-pointer-type) - (error-call vop undefined-symbol-error saved-object))))) -- GitLab