From aa8c8cd473f1d487fa2c1a7490c78a59b9955bbe Mon Sep 17 00:00:00 2001 From: Cyrus Harmon Date: Sat, 13 May 2006 16:23:53 +0000 Subject: [PATCH] 0.9.12.10: Add package specifiers. NOTE: reapplying changes lost in the sf.net CVS outage --- src/compiler/mips/debug.lisp | 31 +++++++++++++++++++++---------- version.lisp-expr | 2 +- 2 files changed, 22 insertions(+), 11 deletions(-) diff --git a/src/compiler/mips/debug.lisp b/src/compiler/mips/debug.lisp index 58421c9..e2cbf7b 100644 --- a/src/compiler/mips/debug.lisp +++ b/src/compiler/mips/debug.lisp @@ -1,8 +1,19 @@ +;;;; MIPS compiler support for the debugger + +;;;; This software is part of the SBCL system. See the README file for +;;;; more information. +;;;; +;;;; This software is derived from the CMU CL system, which was +;;;; written at Carnegie Mellon University and released into the +;;;; public domain. The software is in the public domain and is +;;;; provided with absolutely no warranty. See the COPYING and CREDITS +;;;; files for more information. + (in-package "SB!VM") (define-vop (debug-cur-sp) - (:translate current-sp) + (:translate sb!di::current-sp) (:policy :fast-safe) (:results (res :scs (sap-reg))) (:result-types system-area-pointer) @@ -10,7 +21,7 @@ (move res csp-tn))) (define-vop (debug-cur-fp) - (:translate current-fp) + (:translate sb!di::current-fp) (:policy :fast-safe) (:results (res :scs (sap-reg))) (:result-types system-area-pointer) @@ -18,7 +29,7 @@ (move res cfp-tn))) (define-vop (read-control-stack) - (:translate stack-ref) + (:translate sb!kernel:stack-ref) (:policy :fast-safe) (:args (object :scs (sap-reg) :target sap) (offset :scs (any-reg))) @@ -32,7 +43,7 @@ (inst nop))) (define-vop (read-control-stack-c) - (:translate stack-ref) + (:translate sb!kernel:stack-ref) (:policy :fast-safe) (:args (object :scs (sap-reg))) (:info offset) @@ -44,7 +55,7 @@ (inst nop))) (define-vop (write-control-stack) - (:translate %set-stack-ref) + (:translate sb!kernel:%set-stack-ref) (:policy :fast-safe) (:args (object :scs (sap-reg) :target sap) (offset :scs (any-reg)) @@ -95,16 +106,16 @@ (move code null-tn t))))) (define-vop (code-from-lra code-from-mumble) - (:translate lra-code-header) + (:translate sb!di::lra-code-header) (:variant other-pointer-lowtag)) (define-vop (code-from-fun code-from-mumble) - (:translate fun-code-header) + (:translate sb!di::fun-code-header) (:variant fun-pointer-lowtag)) (define-vop (make-lisp-obj) (:policy :fast-safe) - (:translate make-lisp-obj) + (:translate sb!di::make-lisp-obj) (:args (value :scs (unsigned-reg) :target result)) (:arg-types unsigned-num) (:results (result :scs (descriptor-reg))) @@ -113,7 +124,7 @@ (define-vop (get-lisp-obj-address) (:policy :fast-safe) - (:translate get-lisp-obj-address) + (:translate sb!di::get-lisp-obj-address) (:args (thing :scs (descriptor-reg) :target result)) (:results (result :scs (unsigned-reg))) (:result-types unsigned-num) @@ -122,7 +133,7 @@ (define-vop (fun-word-offset) (:policy :fast-safe) - (:translate fun-word-offset) + (:translate sb!di::fun-word-offset) (:args (fun :scs (descriptor-reg))) (:results (res :scs (unsigned-reg))) (:result-types positive-fixnum) diff --git a/version.lisp-expr b/version.lisp-expr index 84598e1..3fa7821 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".) -"0.9.12.9" +"0.9.12.10" -- 1.7.10.4