195dcc241c2b7315589a4dfebf8674865cc151e0
[sbcl.git] / src / compiler / alpha / backend-parms.lisp
1 ;;;; that part of the parms.lisp file from original CMU CL which is
2 ;;;; defined in terms of the BACKEND structure
3 ;;;;
4 ;;;; FIXME: Now that the BACKEND structure has been broken up, this
5 ;;;; might be mergeable back into the parms.lisp file.
6
7 ;;;; This software is part of the SBCL system. See the README file for
8 ;;;; more information.
9 ;;;;
10 ;;;; This software is derived from the CMU CL system, which was
11 ;;;; written at Carnegie Mellon University and released into the
12 ;;;; public domain. The software is in the public domain and is
13 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
14 ;;;; files for more information.
15
16 (in-package "SB!VM")
17 \f
18 ;;;; compiler constants
19
20 (setf *backend-fasl-file-type* "axpf")
21 (setf *backend-fasl-file-implementation* :alpha)
22 (setf *backend-fasl-file-version* 2)
23 ;;;(setf *backend-fasl-file-version* 8)
24 ;;; 8 = sbcl-0.6.10.4 revived Gray stream support, changing stream layouts
25
26 (setf *backend-register-save-penalty* 3)
27
28 (setf *backend-byte-order* :little-endian)
29
30 ;;; XXX the C runtime gets page size using getpagesize() - can't we
31 ;;; look at that instead of hardcoding it here too?
32 (setf *backend-page-size* 8192)
33