X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fppc%2Fdebug.lisp;h=3c5815cecee3094566e5f272b6fa9a2c8b9c8129;hb=debae3c18d31b5222be4d5de8dcb2601336e24a4;hp=c35847472aae70e3b81a2ce7f67de52fdae81663;hpb=4ed3f0d08c3a57a6762018d9622f253ab9d0f2b6;p=sbcl.git diff --git a/src/compiler/ppc/debug.lisp b/src/compiler/ppc/debug.lisp index c358474..3c5815c 100644 --- a/src/compiler/ppc/debug.lisp +++ b/src/compiler/ppc/debug.lisp @@ -31,7 +31,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 *) @@ -42,8 +42,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 *) @@ -59,20 +59,20 @@ (:variant-vars lowtag) (:generator 5 (let ((bogus (gen-label)) - (done (gen-label))) + (done (gen-label))) (loadw temp thing 0 lowtag) (inst srwi temp temp n-widetag-bits) (inst cmpwi temp 0) (inst slwi temp temp (1- (integer-length n-word-bytes))) (inst beq bogus) (unless (= lowtag other-pointer-lowtag) - (inst addi temp temp (- lowtag other-pointer-lowtag))) + (inst addi temp temp (- lowtag other-pointer-lowtag))) (inst sub code thing temp) (emit-label done) (assemble (*elsewhere*) - (emit-label bogus) - (move code null-tn) - (inst b done))))) + (emit-label bogus) + (move code null-tn) + (inst b done))))) (define-vop (code-from-lra code-from-mumble) (:translate sb!di::lra-code-header) @@ -82,9 +82,9 @@ (:translate sb!di::fun-code-header) (:variant fun-pointer-lowtag)) -(define-vop (make-lisp-obj) +(define-vop (%make-lisp-obj) (:policy :fast-safe) - (:translate sb!di::make-lisp-obj) + (:translate %make-lisp-obj) (:args (value :scs (unsigned-reg) :target result)) (:arg-types unsigned-num) (:results (result :scs (descriptor-reg)))