Raymond Toy pushed to branch sparc64-dev at cmucl / cmucl
Commits:
-
fc265b2a
by Raymond Toy at 2017-01-02T14:55:58-08:00
1 changed file:
Changes:
... | ... | @@ -204,6 +204,14 @@ |
204 | 204 |
(defconstant number-stack-displacement
|
205 | 205 |
(* 16 vm:word-bytes))
|
206 | 206 |
|
207 |
+;;; STACK-BIAS
|
|
208 |
+;;;
|
|
209 |
+;;; The bias on the stack pointer (%sp) to get to the real top of
|
|
210 |
+;;; stack. 64-bit applications have a bias on the stack (apparently
|
|
211 |
+;;; to let the kernel easily tell if the application is a 32-bit or
|
|
212 |
+;;; 64-bit app).
|
|
213 |
+(defconstant stack-bias 2047)
|
|
214 |
+ |
|
207 | 215 |
|
208 | 216 |
;;;; Description of the target address space.
|
209 | 217 |
|