0.6.12.22:
[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 (defconstant +backend-fasl-file-implementation+ :alpha)
22
23 (setf *backend-register-save-penalty* 3)
24
25 (setf *backend-byte-order* :little-endian)
26
27 ;;; XXX the C runtime gets page size using getpagesize() - can't we
28 ;;; look at that instead of hardcoding it here too?
29 (setf *backend-page-size* 8192)
30