Skip to content
Snippets Groups Projects
Commit 96a6fd6a authored by wlott's avatar wlott
Browse files

Changed GENERATE-CALL-SEQUENCE to return the temporaries it wants as a

second value.
parent 1430eb35
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC). ;;; Scott Fahlman (FAHLMAN@CMUC).
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/assemfile.lisp,v 1.21 1990/10/31 23:44:09 wlott Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/assemfile.lisp,v 1.22 1990/11/01 01:16:13 wlott Exp $
;;; ;;;
;;; This file contains the extra code necessary to feed an entire file of ;;; This file contains the extra code necessary to feed an entire file of
;;; assembly code to the assembler. ;;; assembly code to the assembler.
...@@ -141,67 +141,56 @@ ...@@ -141,67 +141,56 @@
(results (remove :res vars :key #'reg-spec-kind :test-not #'eq)) (results (remove :res vars :key #'reg-spec-kind :test-not #'eq))
(return-style (or (cadr (assoc :return-style options)) :raw)) (return-style (or (cadr (assoc :return-style options)) :raw))
(cost (or (cadr (assoc :cost options)) 247)) (cost (or (cadr (assoc :cost options)) 247))
(lip (make-symbol "LIP")) (vop (make-symbol "VOP")))
(lra (make-symbol "LRA"))
(temp (make-symbol "TEMP"))
(vop (make-symbol "VOP"))
(nfp-save (make-symbol "NFP-SAVE")))
(unless (member return-style '(:raw :full-call :none)) (unless (member return-style '(:raw :full-call :none))
(error "Unknown return-style for ~S: ~S" name return-style)) (error "Unknown return-style for ~S: ~S" name return-style))
`(define-vop ,(if (atom name) (list name) name) (multiple-value-bind
(:args ,@(mapcar #'arg-or-res-spec args)) (call-sequence call-temps)
,@(let ((index -1)) (generate-call-sequence name return-style vop)
(mapcar #'(lambda (arg) `(define-vop ,(if (atom name) (list name) name)
`(:temporary (:sc ,(reg-spec-sc arg) (:args ,@(mapcar #'arg-or-res-spec args))
:offset ,(reg-spec-offset arg) ,@(let ((index -1))
:from (:argument ,(incf index)) (mapcar #'(lambda (arg)
:to (:eval 2)) `(:temporary (:sc ,(reg-spec-sc arg)
,(reg-spec-temp arg))) :offset ,(reg-spec-offset arg)
args)) :from (:argument ,(incf index))
,@(mapcar #'(lambda (temp) :to (:eval 2))
`(:temporary (:sc ,(reg-spec-sc temp) ,(reg-spec-temp arg)))
:offset ,(reg-spec-offset temp) args))
:from (:eval 1) ,@(mapcar #'(lambda (temp)
:to (:eval 3)) `(:temporary (:sc ,(reg-spec-sc temp)
,(reg-spec-name temp))) :offset ,(reg-spec-offset temp)
temps) :from (:eval 1)
(:temporary (:scs (interior-reg) :type interior :to (:eval 3))
:from (:eval 0) :to (:eval 1)) ,(reg-spec-name temp)))
,lip) temps)
,@(when (eq return-style :full-call) ,@call-temps
`((:temporary (:sc descriptor-reg :offset lra-offset (:vop-var ,vop)
:from (:eval 0) :to (:eval 1)) ,@(let ((index -1))
,lra) (mapcar #'(lambda (res)
(:temporary (:scs (non-descriptor-reg) `(:temporary (:sc ,(reg-spec-sc res)
:from (:eval 0) :to (:eval 1)) :offset ,(reg-spec-offset res)
,temp) :from (:eval 2)
(:temporary (:sc control-stack :offset nfp-save-offset) ,nfp-save) :to (:result ,(incf index))
(:vop-var ,vop))) :target ,(reg-spec-name res))
,@(let ((index -1)) ,(reg-spec-temp res)))
(mapcar #'(lambda (res) results))
`(:temporary (:sc ,(reg-spec-sc res) (:results ,@(mapcar #'arg-or-res-spec results))
:offset ,(reg-spec-offset res) (:ignore ,@(mapcar #'reg-spec-name temps))
:from (:eval 2) ,@(remove-if #'(lambda (x)
:to (:result ,(incf index)) (member x '(:return-style :cost)))
:target ,(reg-spec-name res)) options
,(reg-spec-temp res))) :key #'car)
results)) (:generator ,cost
(:results ,@(mapcar #'arg-or-res-spec results)) ,@(mapcar #'(lambda (arg)
(:ignore ,lip ,@(mapcar #'reg-spec-name temps)) `(move ,(reg-spec-temp arg)
,@(remove-if #'(lambda (x) ,(reg-spec-name arg)))
(member x '(:return-style :cost))) args)
options ,@call-sequence
:key #'car) ,@(mapcar #'(lambda (res)
(:generator ,cost `(move ,(reg-spec-name res)
,@(mapcar #'(lambda (arg) ,(reg-spec-temp res)))
`(move ,(reg-spec-temp arg) results))))))
,(reg-spec-name arg)))
args)
,@(generate-call-sequence name return-style vop temp nfp-save lra)
,@(mapcar #'(lambda (res)
`(move ,(reg-spec-name res)
,(reg-spec-temp res)))
results)))))
(defmacro define-assembly-routine (name&options vars &rest code) (defmacro define-assembly-routine (name&options vars &rest code)
(multiple-value-bind (name options) (multiple-value-bind (name options)
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC). ;;; Scott Fahlman (FAHLMAN@CMUC).
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/mips/support.lisp,v 1.1 1990/10/31 23:44:31 wlott Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/mips/support.lisp,v 1.2 1990/11/01 01:16:55 wlott Exp $
;;; ;;;
;;; This file contains the machine specific support routines needed by ;;; This file contains the machine specific support routines needed by
;;; the file assembler. ;;; the file assembler.
...@@ -17,27 +17,42 @@ ...@@ -17,27 +17,42 @@
(defun generate-call-sequence (name style vop temp nfp-save lra) (defun generate-call-sequence (name style vop temp nfp-save lra)
(ecase style (ecase style
(:raw (:raw
`((inst jal (make-fixup ',name :assembly-routine)) (values
(inst nop))) `((inst jal (make-fixup ',name :assembly-routine))
(inst nop))
nil))
(:full-call (:full-call
`((let ((lra-label (gen-label)) (let ((temp (make-symbol "TEMP"))
(cur-nfp (current-nfp-tn ,vop))) (nfp-save (make-symbol "NFP-SAVE"))
(when cur-nfp (lra (make-symbol "LRA")))
(store-stack-tn ,nfp-save cur-nfp)) (values
(inst compute-lra-from-code ,lra code-tn lra-label ,temp) `((let ((lra-label (gen-label))
(inst j (make-fixup ',name :assembly-routine)) (cur-nfp (current-nfp-tn ,vop)))
(inst nop) (when cur-nfp
(emit-return-pc lra-label) (store-stack-tn ,nfp-save cur-nfp))
(note-this-location ,vop :unknown-return) (inst compute-lra-from-code ,lra code-tn lra-label ,temp)
(move csp-tn old-fp-tn) (inst j (make-fixup ',name :assembly-routine))
(inst nop) (inst nop)
(inst compute-code-from-lra code-tn code-tn (emit-return-pc lra-label)
lra-label ,temp) (note-this-location ,vop :unknown-return)
(when cur-nfp (move csp-tn old-fp-tn)
(load-stack-tn cur-nfp ,nfp-save))))) (inst nop)
(inst compute-code-from-lra code-tn code-tn
lra-label ,temp)
(when cur-nfp
(load-stack-tn cur-nfp ,nfp-save))))
`((:temporary (:scs (non-descriptor-reg) :from (:eval 0) :to (:eval 1))
,temp)
(:temporary (:sc descriptor-reg :offset lra-offset
:from (:eval 0) :to (:eval 1))
,lra)
(:temporary (:scs (control-stack) :offset nfp-save-offset)
,nfp-save)))))
(:none (:none
`((inst j (make-fixup ',name :assembly-routine)) (values
(inst nop))))) `((inst j (make-fixup ',name :assembly-routine))
(inst nop))
nil))))
(defun generate-return-sequence (style) (defun generate-return-sequence (style)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment