Skip to content
Snippets Groups Projects
Commit 5a863bba authored by wlott's avatar wlott
Browse files

Changed more-arg-context to be a :translate instead of a def-source-

transform.
parent 4e93acbd
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/call.lisp,v 1.19 1992/07/27 16:55:57 hallgren Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/call.lisp,v 1.20 1992/10/20 23:37:53 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -1192,12 +1192,15 @@ default-value-8 ...@@ -1192,12 +1192,15 @@ default-value-8
;;; stack top. ;;; stack top.
;;; ;;;
(define-vop (more-arg-context) (define-vop (more-arg-context)
(:policy :fast-safe)
(:translate c::%more-arg-context)
(:args (supplied :scs (any-reg))) (:args (supplied :scs (any-reg)))
(:arg-types positive-fixnum) (:arg-types tagged-num (:constant fixnum))
(:info fixed) (:info fixed)
(:results (:results (context :scs (descriptor-reg))
(context :scs (descriptor-reg)) (count :scs (any-reg)))
(count :scs (any-reg))) (:result-types t tagged-num)
(:note "more-arg-context")
(:generator 5 (:generator 5
(inst sub count supplied (fixnum fixed)) (inst sub count supplied (fixnum fixed))
(inst sub context csp-tn count))) (inst sub context csp-tn count)))
......
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