Skip to content
Snippets Groups Projects
Commit f1fcd7ae authored by dtc's avatar dtc
Browse files

Add any-reg to the result SCS of cell-set-conditional,

slot-set-conditional, instance-set-conditional.
parent bb5e96ee
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/x86/cell.lisp,v 1.7 1999/03/04 11:49:23 dtc Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/cell.lisp,v 1.8 1999/03/08 00:53:34 dtc Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -332,7 +332,7 @@ ...@@ -332,7 +332,7 @@
(:temporary (:sc descriptor-reg :offset eax-offset (:temporary (:sc descriptor-reg :offset eax-offset
:from (:argument 2) :to :result :target result) eax) :from (:argument 2) :to :result :target result) eax)
(:temporary (:sc descriptor-reg :from (:argument 3) :to :result) temp) (:temporary (:sc descriptor-reg :from (:argument 3) :to :result) temp)
(:results (result :scs (descriptor-reg))) (:results (result :scs (descriptor-reg any-reg)))
(:policy :fast-safe) (:policy :fast-safe)
(:generator 5 (:generator 5
(move eax old-value) (move eax old-value)
......
...@@ -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/x86/memory.lisp,v 1.5 1999/03/04 11:49:22 dtc Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/memory.lisp,v 1.6 1999/03/08 00:53:34 dtc Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -92,7 +92,7 @@ ...@@ -92,7 +92,7 @@
:from (:argument 1) :to :result :target result) eax) :from (:argument 1) :to :result :target result) eax)
(:temporary (:sc descriptor-reg :from (:argument 2) :to :result) temp) (:temporary (:sc descriptor-reg :from (:argument 2) :to :result) temp)
(:variant-vars offset lowtag) (:variant-vars offset lowtag)
(:results (result :scs (descriptor-reg))) (:results (result :scs (descriptor-reg any-reg)))
(:generator 4 (:generator 4
(move eax old-value) (move eax old-value)
(move temp new-value) (move temp new-value)
...@@ -162,7 +162,7 @@ ...@@ -162,7 +162,7 @@
:from (:argument 1) :to :result :target result) eax) :from (:argument 1) :to :result :target result) eax)
(:temporary (:sc descriptor-reg :from (:argument 2) :to :result) temp) (:temporary (:sc descriptor-reg :from (:argument 2) :to :result) temp)
(:variant-vars base lowtag) (:variant-vars base lowtag)
(:results (result :scs (descriptor-reg))) (:results (result :scs (descriptor-reg any-reg)))
(:info offset) (:info offset)
(:generator 4 (:generator 4
(move eax old-value) (move eax old-value)
......
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