X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fgeneric%2Fvm-ir2tran.lisp;h=09d6a82a8350321d0c36972f39979d11ac4fccb4;hb=6a9bbe6f36179cee92001a1f9ed5ff38be512644;hp=db6030081f3e4827e97452ff3e0be9dc061e944a;hpb=c53ec09694206092fd3aa933adade5e5d5b343d2;p=sbcl.git diff --git a/src/compiler/generic/vm-ir2tran.lisp b/src/compiler/generic/vm-ir2tran.lisp index db60300..09d6a82 100644 --- a/src/compiler/generic/vm-ir2tran.lisp +++ b/src/compiler/generic/vm-ir2tran.lisp @@ -10,27 +10,27 @@ (in-package "SB!C") (defoptimizer ir2-convert-reffer ((object) node block name offset lowtag) - (let* ((cont (node-cont node)) - (locs (continuation-result-tns cont + (let* ((lvar (node-lvar node)) + (locs (lvar-result-tns lvar (list *backend-t-primitive-type*))) (res (first locs))) - (vop slot node block (continuation-tn node block object) + (vop slot node block (lvar-tn node block object) name offset lowtag res) - (move-continuation-result node block locs cont))) + (move-lvar-result node block locs lvar))) (defoptimizer ir2-convert-setter ((object value) node block name offset lowtag) - (let ((value-tn (continuation-tn node block value))) - (vop set-slot node block (continuation-tn node block object) value-tn + (let ((value-tn (lvar-tn node block value))) + (vop set-slot node block (lvar-tn node block object) value-tn name offset lowtag) - (move-continuation-result node block (list value-tn) (node-cont node)))) + (move-lvar-result node block (list value-tn) (node-lvar node)))) ;;; FIXME: Isn't there a name for this which looks less like a typo? ;;; (The name IR2-CONVERT-SETTER is used for something else, just above.) (defoptimizer ir2-convert-setfer ((value object) node block name offset lowtag) - (let ((value-tn (continuation-tn node block value))) - (vop set-slot node block (continuation-tn node block object) value-tn + (let ((value-tn (lvar-tn node block value))) + (vop set-slot node block (lvar-tn node block object) value-tn name offset lowtag) - (move-continuation-result node block (list value-tn) (node-cont node)))) + (move-lvar-result node block (list value-tn) (node-lvar node)))) (defun do-inits (node block name result lowtag inits args) (let ((unbound-marker-tn nil)) @@ -41,7 +41,7 @@ (ecase kind (:arg (aver args) - (continuation-tn node block (pop args))) + (lvar-tn node block (pop args))) (:unbound (or unbound-marker-tn (setf unbound-marker-tn @@ -60,24 +60,40 @@ (defoptimizer ir2-convert-fixed-allocation ((&rest args) node block name words type lowtag inits) - (let* ((cont (node-cont node)) - (locs (continuation-result-tns cont + (let* ((lvar (node-lvar node)) + (locs (lvar-result-tns lvar (list *backend-t-primitive-type*))) (result (first locs))) (do-fixed-alloc node block name words type lowtag result) (do-inits node block name result lowtag inits args) - (move-continuation-result node block locs cont))) + (move-lvar-result node block locs lvar))) (defoptimizer ir2-convert-variable-allocation ((extra &rest args) node block name words type lowtag inits) - (let* ((cont (node-cont node)) - (locs (continuation-result-tns cont + (let* ((lvar (node-lvar node)) + (locs (lvar-result-tns lvar (list *backend-t-primitive-type*))) (result (first locs))) - (if (constant-continuation-p extra) - (let ((words (+ (continuation-value extra) words))) + (if (constant-lvar-p extra) + (let ((words (+ (lvar-value extra) words))) (do-fixed-alloc node block name words type lowtag result)) - (vop var-alloc node block (continuation-tn node block extra) name words + (vop var-alloc node block (lvar-tn node block extra) name words type lowtag result)) (do-inits node block name result lowtag inits args) - (move-continuation-result node block locs cont))) + (move-lvar-result node block locs lvar))) + +;;; :SET-TRANS (in objdef.lisp DEFINE-PRIMITIVE-OBJECT) doesn't quite +;;; cut it for symbols, where under certain compilation options +;;; (e.g. #!+SB-THREAD) we have to do something complicated, rather +;;; than simply set the slot. So we build the IR2 converting function +;;; by hand. -- CSR, 2003-05-08 +(let ((fun-info (fun-info-or-lose '%set-symbol-value))) + (setf (fun-info-ir2-convert fun-info) + (lambda (node block) + (let ((args (basic-combination-args node))) + (destructuring-bind (symbol value) args + (let ((value-tn (lvar-tn node block value))) + (vop set node block + (lvar-tn node block symbol) value-tn) + (move-lvar-result + node block (list value-tn) (node-lvar node))))))))