X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fsparc%2Fdebug.lisp;h=33e174693c53df2376ebdb6b95156b83cf70ec0a;hb=2fb5b174f6acb88a85c86aa4cd753ddefaccc987;hp=728fe57b2af2c35198a610ee90bc99792e179da7;hpb=68fd2d2dd6f265669a8957accd8a33e62786a97e;p=sbcl.git diff --git a/src/compiler/sparc/debug.lisp b/src/compiler/sparc/debug.lisp index 728fe57..33e1746 100644 --- a/src/compiler/sparc/debug.lisp +++ b/src/compiler/sparc/debug.lisp @@ -41,7 +41,7 @@ (:translate sb!kernel:stack-ref) (:policy :fast-safe) (:args (sap :scs (sap-reg)) - (offset :scs (any-reg))) + (offset :scs (any-reg))) (:arg-types system-area-pointer positive-fixnum) (:results (result :scs (descriptor-reg))) (:result-types *) @@ -52,8 +52,8 @@ (:translate sb!kernel:%set-stack-ref) (:policy :fast-safe) (:args (sap :scs (sap-reg)) - (offset :scs (any-reg)) - (value :scs (descriptor-reg) :target result)) + (offset :scs (any-reg)) + (value :scs (descriptor-reg) :target result)) (:arg-types system-area-pointer positive-fixnum *) (:results (result :scs (descriptor-reg))) (:result-types *) @@ -69,20 +69,20 @@ (:variant-vars lowtag) (:generator 5 (let ((bogus (gen-label)) - (done (gen-label))) + (done (gen-label))) (loadw temp thing 0 lowtag) (inst srl temp n-widetag-bits) (inst cmp temp) (inst b :eq bogus) (inst sll temp (1- (integer-length n-word-bytes))) (unless (= lowtag other-pointer-lowtag) - (inst add temp (- lowtag other-pointer-lowtag))) + (inst add temp (- lowtag other-pointer-lowtag))) (inst sub code thing temp) (emit-label done) (assemble (*elsewhere*) - (emit-label bogus) - (inst b done) - (move code null-tn))))) + (emit-label bogus) + (inst b done) + (move code null-tn))))) (define-vop (code-from-lra code-from-mumble) (:translate lra-code-header)