From 4ad46c68f4780c6028242377b4187a046bad5826 Mon Sep 17 00:00:00 2001 From: Alastair Bridgewater Date: Tue, 9 Nov 2010 19:44:41 +0000 Subject: [PATCH] 1.0.44.12: sparc: Implement ANCESTOR-FRAME VOPs. * This is the SPARC version of the "implicit" VALUE-CELL access for DYNAMIC-EXTENT closures. * This commit is untested, but should work, as it is based on the PPC changes, which were tested. --- src/compiler/sparc/call.lisp | 17 +++++++++++++++++ src/compiler/sparc/cell.lisp | 6 ++++++ version.lisp-expr | 2 +- 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/src/compiler/sparc/call.lisp b/src/compiler/sparc/call.lisp index 8bd2e54..73b64c7 100644 --- a/src/compiler/sparc/call.lisp +++ b/src/compiler/sparc/call.lisp @@ -124,6 +124,23 @@ (when nfp (inst add val nfp (bytes-needed-for-non-descriptor-stack-frame)))))) +;;; Accessing a slot from an earlier stack frame is definite hackery. +(define-vop (ancestor-frame-ref) + (:args (frame-pointer :scs (descriptor-reg)) + (variable-home-tn :load-if nil)) + (:results (value :scs (descriptor-reg any-reg))) + (:policy :fast-safe) + (:generator 4 + (aver (sc-is variable-home-tn control-stack)) + (loadw value frame-pointer (tn-offset variable-home-tn)))) +(define-vop (ancestor-frame-set) + (:args (frame-pointer :scs (descriptor-reg)) + (value :scs (descriptor-reg any-reg))) + (:results (variable-home-tn :load-if nil)) + (:policy :fast-safe) + (:generator 4 + (aver (sc-is variable-home-tn control-stack)) + (storew value frame-pointer (tn-offset variable-home-tn)))) (define-vop (xep-allocate-frame) (:info start-lab copy-more-arg-follows) diff --git a/src/compiler/sparc/cell.lisp b/src/compiler/sparc/cell.lisp index 4cea77a..e773231 100644 --- a/src/compiler/sparc/cell.lisp +++ b/src/compiler/sparc/cell.lisp @@ -227,6 +227,12 @@ (define-vop (closure-init slot-set) (:variant closure-info-offset fun-pointer-lowtag)) + +(define-vop (closure-init-from-fp) + (:args (object :scs (descriptor-reg))) + (:info offset) + (:generator 4 + (storew cfp-tn object (+ closure-info-offset offset) fun-pointer-lowtag))) ;;;; value cell hackery. diff --git a/version.lisp-expr b/version.lisp-expr index 7fc82ae..f111f4a 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.44.11" +"1.0.44.12" -- 1.7.10.4