8681ea826438e35c93e5231ebbd2116294a61656
[sbcl.git] / src / code / alpha-vm.lisp
1 ;;;; Alpha-specific implementation stuff
2
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
11
12 (in-package "SB!VM")
13 \f
14 (defvar *number-of-signals* 64)
15 (defvar *bits-per-word* 64)
16
17 ;;; See x86-vm.lisp for a description of this.
18 (define-alien-type os-context-t (struct os-context-t-struct))
19 \f
20 ;;;; MACHINE-TYPE and MACHINE-VERSION
21
22 (defun machine-type ()
23   "Return a string describing the type of the local machine."
24   "Alpha")
25 (defun machine-version ()
26   "Return a string describing the version of the local machine."
27   "Alpha")
28 \f
29 (defun fixup-code-object (code offset value kind)
30   (unless (zerop (rem offset n-word-bytes))
31     (error "Unaligned instruction?  offset=#x~X." offset))
32   (sb!sys:without-gcing
33    (let ((sap (truly-the system-area-pointer
34                          (%primitive code-instructions code))))
35      (ecase kind
36        (:jmp-hint
37         (assert (zerop (ldb (byte 2 0) value)))
38         #+nil
39         (setf (sap-ref-16 sap offset)
40               (logior (sap-ref-16 sap offset)
41                       (ldb (byte 14 0) (ash value -2)))))
42        (:bits-63-48
43         (let* ((value (if (logbitp 15 value) (+ value (ash 1 16)) value))
44                (value (if (logbitp 31 value) (+ value (ash 1 32)) value))
45                (value (if (logbitp 47 value) (+ value (ash 1 48)) value)))
46           (setf (sap-ref-8 sap offset) (ldb (byte 8 48) value))
47           (setf (sap-ref-8 sap (1+ offset)) (ldb (byte 8 56) value))))
48        (:bits-47-32
49         (let* ((value (if (logbitp 15 value) (+ value (ash 1 16)) value))
50                (value (if (logbitp 31 value) (+ value (ash 1 32)) value)))
51           (setf (sap-ref-8 sap offset) (ldb (byte 8 32) value))
52           (setf (sap-ref-8 sap (1+ offset)) (ldb (byte 8 40) value))))
53        (:ldah
54         (let ((value (if (logbitp 15 value) (+ value (ash 1 16)) value)))
55           (setf (sap-ref-8 sap offset) (ldb (byte 8 16) value))
56           (setf (sap-ref-8 sap (1+ offset)) (ldb (byte 8 24) value))))
57        (:lda
58         (setf (sap-ref-8 sap offset) (ldb (byte 8 0) value))
59         (setf (sap-ref-8 sap (1+ offset)) (ldb (byte 8 8) value)))))))
60 \f
61 ;;;; "sigcontext" access functions, cut & pasted from x86-vm.lisp then
62 ;;;; hacked for types.
63 ;;;;
64 ;;;; KLUDGE: The alpha has 64-bit registers, so these potentially
65 ;;;; return 64 bit numbers (which means bignums ... ew) We think that
66 ;;;; 99 times of 100 (i.e. unless something is badly wrong) we'll get
67 ;;;; answers that fit in 32 bits anyway. Which probably won't help us
68 ;;;; stop passing bignums around as the compiler can't prove they fit
69 ;;;; in 32 bits. But maybe the stuff it does on x86 to unbox 32-bit
70 ;;;; constants happens magically for 64-bit constants here. Just
71 ;;;; maybe. -- Dan Barlow, ca. 2001-05-05
72 ;;;;
73 ;;;; See also x86-vm for commentary on signed vs unsigned.
74
75 (define-alien-routine ("os_context_pc_addr" context-pc-addr) (* unsigned-long)
76   (context (* os-context-t)))
77
78 (defun context-pc (context)
79   (declare (type (alien (* os-context-t)) context))
80   (int-sap (deref (context-pc-addr context))))
81
82 (define-alien-routine ("os_context_register_addr" context-register-addr)
83   (* unsigned-long)
84   (context (* os-context-t))
85   (index int))
86
87 ;;; FIXME: Should this and CONTEXT-PC be INLINE to reduce consing?
88 ;;; (Are they used in anything time-critical, or just the debugger?)
89 (defun context-register (context index)
90   (declare (type (alien (* os-context-t)) context))
91   (deref (the (alien (* unsigned-long))
92            (context-register-addr context index))))
93
94 (defun %set-context-register (context index new)
95   (declare (type (alien (* os-context-t)) context))
96   (setf (deref (the (alien (* unsigned-long))
97                  (context-register-addr context index)))
98         new))
99
100 ;;; This is like CONTEXT-REGISTER, but returns the value of a float
101 ;;; register. FORMAT is the type of float to return.
102
103 ;;; FIXME: Whether COERCE actually knows how to make a float out of a
104 ;;; long is another question. This stuff still needs testing.
105 (define-alien-routine ("os_context_float_register_addr"
106                        context-float-register-addr)
107   (* long)
108   (context (* os-context-t))
109   (index int))
110 (defun context-float-register (context index format)
111   (declare (type (alien (* os-context-t)) context))
112   (coerce (deref (context-float-register-addr context index)) format))
113 (defun %set-context-float-register (context index format new)
114   (declare (type (alien (* os-context-t)) context))
115   (setf (deref (context-float-register-addr context index))
116         (coerce new format)))
117
118 ;;; This sets the software fp_control word, which is not the same
119 ;;; thing as the hardware fpcr.  We have to do this so that OS FPU
120 ;;; completion works properly
121
122 ;;; Note that this means we can't set rounding modes; we'd have to do
123 ;;; that separately.  That said, almost everybody seems to agree that
124 ;;; changing the rounding mode is rarely a good idea, because it upsets
125 ;;; libm functions.  So adding that is not a priority.  Sorry.
126 ;;; -dan 2001.02.06
127
128 (define-alien-routine
129     ("arch_get_fp_control" floating-point-modes) (sb!alien:unsigned 64))
130
131 (define-alien-routine
132     ("arch_set_fp_control" %floating-point-modes-setter) void (fp (sb!alien:unsigned 64)))
133
134 (defun (setf floating-point-modes) (val) (%floating-point-modes-setter val))
135
136 ;;; Given a signal context, return the floating point modes word in
137 ;;; the same format as returned by FLOATING-POINT-MODES.
138 (define-alien-routine ("os_context_fp_control" context-floating-point-modes)
139     (sb!alien:unsigned 64) (context (* os-context-t)))
140
141 \f
142 ;;;; INTERNAL-ERROR-ARGS
143
144 ;;; Given a (POSIX) signal context, extract the internal error
145 ;;; arguments from the instruction stream.  This is e.g.
146 ;;; 4       23      254     240     2       0       0       0 
147 ;;; |       ~~~~~~~~~~~~~~~~~~~~~~~~~
148 ;;; length         data              (everything is an octet)
149 ;;;  (pc)
150 ;;; (example from undefined_tramp: "(gdb) x/40ub 0x10148" for yourself
151 ;;; to replicate)
152 (defun internal-error-args (context)
153   (declare (type (alien (* os-context-t)) context))
154   (let ((pc (context-pc context)))
155     (declare (type system-area-pointer pc))
156     ;; pc is a SAP pointing at - or actually, shortly after -
157     ;; the instruction that got us into this mess in the first place
158     (let* ((length (sap-ref-8 pc 4))
159            (vector (make-array length :element-type '(unsigned-byte 8))))
160       (declare (type (unsigned-byte 8) length)
161                (type (simple-array (unsigned-byte 8) (*)) vector))
162       (copy-from-system-area pc (* n-byte-bits 5)
163                              vector (* n-word-bits vector-data-offset)
164                              (* length n-byte-bits))
165       (let* ((index 0)
166              (error-number (sb!c::read-var-integer vector index)))
167         (collect ((sc-offsets))
168                  (loop
169                   (when (>= index length)
170                     (return))
171                   (sc-offsets (sb!c::read-var-integer vector index)))
172                  (values error-number (sc-offsets)))))))
173 \f
174 ;;; The loader uses this to convert alien names to the form they
175 ;;; occure in the symbol table (for example, prepending an
176 ;;; underscore). 
177 (defun extern-alien-name (name)
178   (declare (type simple-base-string name))
179   ;; On the Alpha we don't do anything.
180   name)
181 \f
182 ;;;; Do whatever is necessary to make the given code component
183 ;;;; executable.
184 ;;;;
185 ;;;; XXX do we really not have to flush caches or something here? I
186 ;;;; need an architecture manual
187 (defun sanctify-for-execution (component)
188   (declare (ignore component))
189   nil)